diff options
author | Neal H. Walfield <neal@gnu.org> | 2008-01-23 14:06:03 +0000 |
---|---|---|
committer | Thomas Schwinge <tschwinge@gnu.org> | 2009-04-07 23:12:07 +0200 |
commit | b8eff95e439ec9f12dc748882e3769a080722475 (patch) | |
tree | 489a7ed5e2a676c3f2da01887b830d40859a60ec | |
parent | 57e1f67e3757c66023abf912c302bb2a328eaebb (diff) |
libpthread/
2008-01-23 Neal H. Walfield <neal@gnu.org>
* Makefile.am (AM_CPPFLAGS): Add -I$(LIBC)/include.
libhurd-slab/
2008-01-23 Neal H. Walfield <neal@gnu.org>
* Makefile.am (AM_CPPFLAGS): Add -I$(LIBC)/include.
libhurd-mm/
2008-01-23 Neal H. Walfield <neal@gnu.org>
* Makefile.am (COMMON_CPPFLAGS): Add -I$(LIBC)/include.
libhurd-ihash/
2008-01-23 Neal H. Walfield <neal@gnu.org>
* Makefile.am (AM_CPPFLAGS): Add -I$(LIBC)/include.
ruth/
2008-01-23 Neal H. Walfield <neal@gnu.org>
* Makefile.am (COMMON_CPPFLAGS): Add -I$(LIBC)/include.
(ruth_SOURCES): Remove malloc-wrap.c, output.h and output.c.
(ruth_LDADD): Set to $(top_builddir)/libc.a.
* panic.c: Don't include "output.h". Include <stdio.h>.
* ruth.h: Likewise.
* ruth.c (getpagesize): Return a size_t, not an int.
-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 |