We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent acf64da commit b376876Copy full SHA for b376876
1 file changed
src/loader/manifest_file.cpp
@@ -49,6 +49,18 @@
49
#include <utility>
50
#include <vector>
51
52
+#ifndef FALLBACK_CONFIG_DIRS
53
+#define FALLBACK_CONFIG_DIRS "/etc/xdg"
54
+#endif // !FALLBACK_CONFIG_DIRS
55
+
56
+#ifndef FALLBACK_DATA_DIRS
57
+#define FALLBACK_DATA_DIRS "/usr/local/share:/usr/share"
58
+#endif // !FALLBACK_DATA_DIRS
59
60
+#ifndef SYSCONFDIR
61
+#define SYSCONFDIR "/etc"
62
+#endif // !SYSCONFDIR
63
64
#ifdef XRLOADER_DISABLE_EXCEPTION_HANDLING
65
#if JSON_USE_EXCEPTIONS
66
#error \
0 commit comments