]> git.eshelyaron.com Git - emacs.git/commitdiff
* Makefile.in (ALL_CFLAGS): Add -I../lib -I${srcdir}/../lib.
authorPaul Eggert <eggert@cs.ucla.edu>
Tue, 26 Jun 2012 00:39:36 +0000 (17:39 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Tue, 26 Jun 2012 00:39:36 +0000 (17:39 -0700)
This is needed for hosts that lack <alloca.h>, when Emacs is
configured --with-x-toolkit=no.  Problem reported by Herbert
J. Skuhra for FreeBSD.

oldXMenu/ChangeLog
oldXMenu/Makefile.in

index b1eb200416b1bfa0d5b22175f4605c59763c89ee..2047573ecab9eb50669487c0ffd82411e4416438 100644 (file)
@@ -1,3 +1,10 @@
+2012-06-26  Paul Eggert  <eggert@cs.ucla.edu>
+
+       * Makefile.in (ALL_CFLAGS): Add -I../lib -I${srcdir}/../lib.
+       This is needed for hosts that lack <alloca.h>, when Emacs is
+       configured --with-x-toolkit=no.  Problem reported by Herbert
+       J. Skuhra for FreeBSD.
+
 2012-04-18  Paul Eggert  <eggert@cs.ucla.edu>
 
        configure: new option --enable-gcc-warnings (Bug#11207)
index 01855f6585b6716c2fe4baf98e9786a333d305a9..00b3d8e3c690baa0b14c0932f8709b92e66030e5 100644 (file)
@@ -91,7 +91,7 @@ ALL_CFLAGS=$(C_SWITCH_SYSTEM) $(C_SWITCH_MACHINE) \
   $(C_SWITCH_X_SITE) \
   $(WARN_CFLAGS) $(WERROR_CFLAGS) ${PROFILING_CFLAGS} \
   $(CPPFLAGS) $(CFLAGS) -DEMACS_BITMAP_FILES \
-  -I../src -I${srcdir} -I${srcdir}/../src
+  -I../src -I../lib -I${srcdir} -I${srcdir}/../src -I${srcdir}/../lib
 
 .c.o:
        $(CC) -c ${ALL_CFLAGS} $<