2003-06-16 13:33:38 +00:00
|
|
|
#ifndef __GLOBALS_H
|
|
|
|
#define __GLOBALS_H
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
|
|
|
|
/* Path names. */
|
|
|
|
|
2003-06-27 13:55:12 +00:00
|
|
|
/* nixStore is the directory where we generally store atomic and
|
|
|
|
derived files. */
|
|
|
|
extern string nixStore;
|
2003-06-16 13:33:38 +00:00
|
|
|
|
2003-07-10 13:41:28 +00:00
|
|
|
extern string nixDataDir; /* !!! fix */
|
|
|
|
|
2003-06-27 13:55:12 +00:00
|
|
|
/* nixLogDir is the directory where we log various operations. */
|
2003-06-16 13:33:38 +00:00
|
|
|
extern string nixLogDir;
|
|
|
|
|
2003-11-19 17:27:16 +00:00
|
|
|
/* nixStateDir is the directory where state is stored. */
|
|
|
|
extern string nixStateDir;
|
|
|
|
|
2003-07-31 13:47:13 +00:00
|
|
|
/* nixDBPath is the path name of our Berkeley DB environment. */
|
|
|
|
extern string nixDBPath;
|
|
|
|
|
2003-06-16 13:33:38 +00:00
|
|
|
|
2003-08-19 09:04:47 +00:00
|
|
|
/* Misc. global flags. */
|
|
|
|
|
|
|
|
/* Whether to keep temporary directories of failed builds. */
|
|
|
|
extern bool keepFailed;
|
|
|
|
|
|
|
|
|
2003-06-16 13:33:38 +00:00
|
|
|
#endif /* !__GLOBALS_H */
|