Added more include directories to fix building in another directory.
authormarkus schnalke <meillo@marmaro.de>
Fri, 28 Nov 2014 10:05:17 +0000 (11:05 +0100)
committermarkus schnalke <meillo@marmaro.de>
Fri, 28 Nov 2014 10:05:17 +0000 (11:05 +0100)
I discovered these problems when I tried to build from a git clone
(which has no config.h in the source directory).

config/Makefile.in
sbr/Makefile.in
uip/Makefile.in

index 80eb409..4bdad8e 100644 (file)
@@ -23,7 +23,8 @@ mailspool      = @mailspool@
 CC         = @CC@
 CFLAGS     = @CFLAGS@
 DEFS       = @DEFS@
-INCLUDES   = -I$(top_srcdir) @CPPFLAGS@
+# add include dir .. for config.h when building in different directory
+INCLUDES   = -I$(top_srcdir) -I.. @CPPFLAGS@
 CONFIGDEFS = -DNMHETCDIR='"$(etcdir)"' \
                -DSENDMAILPATH='"$(sendmailpath)"' \
                -DMAILSPOOL='"$(mailspool)"'
index 9539c0f..64ecb9e 100644 (file)
@@ -17,8 +17,9 @@ etcdir      = @sysconfdir@
 CC       = @CC@
 CFLAGS   = @CFLAGS@
 DEFS     = @DEFS@
-# add include dir . for sigmsg.h when building in different directory
-INCLUDES = -I$(top_srcdir) -I. @CPPFLAGS@
+# add include dir . for sigmsg.h and .. for config.h when building
+# in different directory
+INCLUDES = -I$(top_srcdir) -I. -I.. @CPPFLAGS@
 
 LEX    = @LEX@
 AWK    = @AWK@
index bf23531..8fe7197 100644 (file)
@@ -17,7 +17,8 @@ etcdir      = @sysconfdir@
 CC       = @CC@
 CFLAGS   = @CFLAGS@
 DEFS     = @DEFS@
-INCLUDES = -I$(srcdir) -I$(top_srcdir) @CPPFLAGS@
+# add include dir .. for config.h when building in different directory
+INCLUDES = -I$(srcdir) -I$(top_srcdir) -I.. @CPPFLAGS@
 LDFLAGS  = @LDFLAGS@
 
 LIBS     = @LIBS@