summaryrefslogtreecommitdiff
path: root/src/conf.c
diff options
context:
space:
mode:
authorMichael Jennings <mej@kainx.org>2003-11-26 22:19:44 +0000
committerMichael Jennings <mej@kainx.org>2003-11-26 22:19:44 +0000
commitf2c26ccca7f118c9fc516253067989b86d1d4946 (patch)
treef7ca7ecfe8b0526a364eb6c9bb8d4d2ba078c876 /src/conf.c
parent2e8dffea77411c654207b3f1823c63e68a7abb95 (diff)
downloadlibast-f2c26ccca7f118c9fc516253067989b86d1d4946.tar.gz
Wed Nov 26 17:18:20 2003 Michael Jennings (mej)
Added sysdefs.h so that client programs who don't employ some/all of the AST_* m4 macros can still get all the #define's they need for the auto* stuff. SVN revision: 7951
Diffstat (limited to 'src/conf.c')
-rw-r--r--src/conf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/conf.c b/src/conf.c
index d5b959a..3b600ec 100644
--- a/src/conf.c
+++ b/src/conf.c
@@ -33,7 +33,7 @@
static const char cvs_ident[] = "$Id$";
-#ifdef HAVE_CONFIG_H
+#if defined(HAVE_CONFIG_H) && (HAVE_CONFIG_H != 0)
# include <config.h>
#endif
@@ -595,7 +595,7 @@ shell_expand(char *s)
}
break;
case '`':
-#ifdef ALLOW_BACKQUOTE_EXEC
+#if ALLOW_BACKQUOTE_EXEC
D_CONF(("Backquotes detected. Evaluating expression.\n"));
if (!in_single) {
Command = (char *) MALLOC(CONFIG_BUFF);