summaryrefslogtreecommitdiffstats
path: root/sysdep/config.h
diff options
context:
space:
mode:
authorMartin Mares <mj@ucw.cz>2000-05-08 16:19:47 +0200
committerMartin Mares <mj@ucw.cz>2000-05-08 16:19:47 +0200
commitf9254d2349c7e2e3c110f7850e402d1c11624940 (patch)
treeaf9ae9a6b2ca0107f4a02929fc9e332558b9e0ad /sysdep/config.h
parent0bf7386b33fecac40be43f8db5b0ba0356123fd2 (diff)
downloadbird-f9254d2349c7e2e3c110f7850e402d1c11624940.tar
bird-f9254d2349c7e2e3c110f7850e402d1c11624940.zip
Autoconf is *evil*. The sysconfdir and similar variables are unusable in
C includes as they contain substitutions specific to make. Worked around by creating sysconf/paths.h which is created from the Makefile instead of by the configure script.
Diffstat (limited to 'sysdep/config.h')
-rw-r--r--sysdep/config.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/sysdep/config.h b/sysdep/config.h
index 2b4a49d..276929e 100644
--- a/sysdep/config.h
+++ b/sysdep/config.h
@@ -17,6 +17,8 @@
#ifndef MACROS_ONLY
+#include "sysdep/paths.h"
+
/* Types */
typedef signed INTEGER_8 s8;
typedef unsigned INTEGER_8 u8;
@@ -30,7 +32,12 @@ typedef u16 word;
#endif
/* Path to configuration file */
+#ifdef DEBUGGING
+#define PATH_CONFIG "bird.conf"
+#define PATH_CONTROL_SOCKET "bird.ctl"
+#else
#define PATH_CONFIG PATH_CONFIG_DIR "/bird.conf"
#define PATH_CONTROL_SOCKET PATH_CONTROL_SOCKET_DIR "/bird.ctl"
+#endif
#endif