diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2003-11-18T10·55+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2003-11-18T10·55+0000 |
commit | 9f0f020929c9e093405cc6193d2f227cab763912 (patch) | |
tree | 833aad12f6db91e77ff2fb47a2bcb54a0ea9d89f /src/libstore/globals.hh | |
parent | 8798fae30450a88c339c8f23d7e0c75f5df2ef1c (diff) |
* libnix -> libstore.
Diffstat (limited to 'src/libstore/globals.hh')
-rw-r--r-- | src/libstore/globals.hh | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/src/libstore/globals.hh b/src/libstore/globals.hh new file mode 100644 index 000000000000..1b4d0bde3ffe --- /dev/null +++ b/src/libstore/globals.hh @@ -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 */ |