summaryrefslogtreecommitdiff
path: root/libhurd-ihash
diff options
context:
space:
mode:
authortschwinge <tschwinge>2008-05-29 23:01:55 +0000
committertschwinge <tschwinge>2008-05-29 23:01:55 +0000
commitab55c9dda40e73b1042d1a4f5a3ef0b0f1a9facb (patch)
treebaeb98c74b5b694e79127c5eb68812bad864ae98 /libhurd-ihash
parent31cc070ebdc9e8dcadeb1d3ef15e1cfb5770868a (diff)
hurd/
2008-05-29 Thomas Schwinge <tschwinge@gnu.org> * Makefile.am (t_addr_CPPFLAGS, t_addr_trans_CPPFLAGS, t_rpc_CPPFLAGS): Remove special `printf' handling. * stddef.h (S_PUTCHAR): Define analogously to `S_PRINTF'. libc-parts/ 2008-05-29 Thomas Schwinge <tschwinge@gnu.org> * Makefile.am (t_setjmp_CPPFLAGS): Remove special `printf' handling. libhurd-btree/ 2008-05-29 Thomas Schwinge <tschwinge@gnu.org> * Makefile.am (btree_test_CPPFLAGS): Remove special `printf' handling. libhurd-ihash/ 2008-05-29 Thomas Schwinge <tschwinge@gnu.org> * Makefile.am (t_ihash_CPPFLAGS, t_ihash64_CPPFLAGS): Remove special `printf' handling. viengoos/ 2008-05-29 Thomas Schwinge <tschwinge@gnu.org> * cap-lookup.c: Unconditionally use `S_PUTCHAR' and `S_PRINTF' instead of `s_putchar' and `s_printf' and remove the latters' prototypes.
Diffstat (limited to 'libhurd-ihash')
-rw-r--r--libhurd-ihash/ChangeLog5
-rw-r--r--libhurd-ihash/Makefile.am6
2 files changed, 9 insertions, 2 deletions
diff --git a/libhurd-ihash/ChangeLog b/libhurd-ihash/ChangeLog
index cdb656b..bb7e30b 100644
--- a/libhurd-ihash/ChangeLog
+++ b/libhurd-ihash/ChangeLog
@@ -1,3 +1,8 @@
+2008-05-29 Thomas Schwinge <tschwinge@gnu.org>
+
+ * Makefile.am (t_ihash_CPPFLAGS, t_ihash64_CPPFLAGS): Remove special
+ `printf' handling.
+
2008-02-21 Neal H. Walfield <neal@gnu.org>
* Makefile.am (AM_CPPFLAGS): Remove variable.
diff --git a/libhurd-ihash/Makefile.am b/libhurd-ihash/Makefile.am
index 1a2f8ac..07bd8aa 100644
--- a/libhurd-ihash/Makefile.am
+++ b/libhurd-ihash/Makefile.am
@@ -39,9 +39,11 @@ TESTS = t-ihash t-ihash64
check_PROGRAMS = t-ihash t-ihash64
t_ihash_SOURCES = t-ihash.c ihash.h ihash.c
-t_ihash_CPPFLAGS = -DTEST_LARGE=false -DS_PRINTF=printf
+t_ihash_CPPFLAGS = $(CHECK_CPPFLAGS) \
+ -DTEST_LARGE=false
t_ihash_CFLAGS=-std=gnu99
t_ihash64_SOURCES = t-ihash.c ihash.h ihash.c
-t_ihash64_CPPFLAGS = -DTEST_LARGE=true -DS_PRINTF=printf
+t_ihash64_CPPFLAGS = $(CHECK_CPPFLAGS) \
+ -DTEST_LARGE=true
t_ihash64_CFLAGS=-std=gnu99