aboutsummaryrefslogtreecommitdiffstats
path: root/oldXMenu
diff options
context:
space:
mode:
authorPaul Eggert2012-06-25 17:39:36 -0700
committerPaul Eggert2012-06-25 17:39:36 -0700
commit414e642ca92b569cd74d26a2879e0e8fe9f8d6be (patch)
tree79411740047009c189a536e3834216463fa103c5 /oldXMenu
parent8c4f2952d44e050df328eb68833889b3ddb9bbbc (diff)
downloademacs-414e642ca92b569cd74d26a2879e0e8fe9f8d6be.tar.gz
emacs-414e642ca92b569cd74d26a2879e0e8fe9f8d6be.zip
* 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.
Diffstat (limited to 'oldXMenu')
-rw-r--r--oldXMenu/ChangeLog7
-rw-r--r--oldXMenu/Makefile.in2
2 files changed, 8 insertions, 1 deletions
diff --git a/oldXMenu/ChangeLog b/oldXMenu/ChangeLog
index b1eb200416b..2047573ecab 100644
--- a/oldXMenu/ChangeLog
+++ b/oldXMenu/ChangeLog
@@ -1,3 +1,10 @@
12012-06-26 Paul Eggert <eggert@cs.ucla.edu>
2
3 * Makefile.in (ALL_CFLAGS): Add -I../lib -I${srcdir}/../lib.
4 This is needed for hosts that lack <alloca.h>, when Emacs is
5 configured --with-x-toolkit=no. Problem reported by Herbert
6 J. Skuhra for FreeBSD.
7
12012-04-18 Paul Eggert <eggert@cs.ucla.edu> 82012-04-18 Paul Eggert <eggert@cs.ucla.edu>
2 9
3 configure: new option --enable-gcc-warnings (Bug#11207) 10 configure: new option --enable-gcc-warnings (Bug#11207)
diff --git a/oldXMenu/Makefile.in b/oldXMenu/Makefile.in
index 01855f6585b..00b3d8e3c69 100644
--- a/oldXMenu/Makefile.in
+++ b/oldXMenu/Makefile.in
@@ -91,7 +91,7 @@ ALL_CFLAGS=$(C_SWITCH_SYSTEM) $(C_SWITCH_MACHINE) \
91 $(C_SWITCH_X_SITE) \ 91 $(C_SWITCH_X_SITE) \
92 $(WARN_CFLAGS) $(WERROR_CFLAGS) ${PROFILING_CFLAGS} \ 92 $(WARN_CFLAGS) $(WERROR_CFLAGS) ${PROFILING_CFLAGS} \
93 $(CPPFLAGS) $(CFLAGS) -DEMACS_BITMAP_FILES \ 93 $(CPPFLAGS) $(CFLAGS) -DEMACS_BITMAP_FILES \
94 -I../src -I${srcdir} -I${srcdir}/../src 94 -I../src -I../lib -I${srcdir} -I${srcdir}/../src -I${srcdir}/../lib
95 95
96.c.o: 96.c.o:
97 $(CC) -c ${ALL_CFLAGS} $< 97 $(CC) -c ${ALL_CFLAGS} $<