1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-27 07:37:33 +00:00

* 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.
This commit is contained in:
Paul Eggert 2012-06-25 17:39:36 -07:00
parent 8c4f2952d4
commit 414e642ca9
2 changed files with 8 additions and 1 deletions

View 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)

View 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} $<