1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-07-07 01:51:47 +02:00

* libnix -> libstore.

This commit is contained in:
Eelco Dolstra 2003-11-18 10:55:27 +00:00
parent 8798fae304
commit 9f0f020929
26 changed files with 12 additions and 12 deletions

29
src/libstore/globals.hh Normal file
View file

@ -0,0 +1,29 @@
#ifndef __GLOBALS_H
#define __GLOBALS_H
#include <string>
using namespace std;
/* Path names. */
/* nixStore is the directory where we generally store atomic and
derived files. */
extern string nixStore;
extern string nixDataDir; /* !!! fix */
/* nixLogDir is the directory where we log various operations. */
extern string nixLogDir;
/* nixDBPath is the path name of our Berkeley DB environment. */
extern string nixDBPath;
/* Misc. global flags. */
/* Whether to keep temporary directories of failed builds. */
extern bool keepFailed;
#endif /* !__GLOBALS_H */