diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | Makefile.am | 10 |
2 files changed, 9 insertions, 5 deletions
@@ -1,3 +1,7 @@ +2008-01-23 Neal H. Walfield <neal@gnu.org> + + * Makefile.am (AM_CPPFLAGS): Add -I$(LIBC)/include. + 2008-01-17 Neal H. Walfield <neal@gnu.org> * sysdeps/l4/hurd/pt-block.c: New file. diff --git a/Makefile.am b/Makefile.am index 0b7a375..d9cc423 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,5 +1,5 @@ # Makefile.am - Makefile template for libpthread. -# Copyright (C) 2003 Free Software Foundation, Inc. +# Copyright (C) 2003, 2008 Free Software Foundation, Inc. # # This file is part of the GNU Hurd. # @@ -38,10 +38,10 @@ SYSDEP_PATH = $(srcdir)/sysdeps/l4/hurd/${arch} \ $(srcdir)/include vpath %.c $(SYSDEP_PATH) -AM_CPPFLAGS = -std=gnu99 -Wall -g -O3 \ - -I$(top_builddir)/include -D_GNU_SOURCE=1 -I$(srcdir)/pthread \ - -I$(top_srcdir)/libc-parts $(addprefix -I, $(SYSDEP_PATH)) \ - -imacros $(srcdir)/include/libc-symbols.h +AM_CPPFLAGS = -std=gnu99 -Wall -g -O3 -I$(LIBC)/include \ +-I$(top_builddir)/include -D_GNU_SOURCE=1 -I$(srcdir)/pthread \ +-I$(top_srcdir)/libc-parts $(addprefix -I, $(SYSDEP_PATH)) -imacros \ +$(srcdir)/include/libc-symbols.h # Sources. SYSDEPS := lockfile.c |