summaryrefslogtreecommitdiff
path: root/laden
diff options
context:
space:
mode:
authorneal <neal>2008-01-23 23:12:39 +0000
committerneal <neal>2008-01-23 23:12:39 +0000
commit53119ad6d5042194c4653bc718799a8bc653a7da (patch)
tree352fb1b5551144f58619140a674a9bffcc8e39a8 /laden
parentb962fefe8733a2fd7911090b3e8565eff3469048 (diff)
hurd/
2008-01-23 Neal H. Walfield <neal@gnu.org> * stddef.h (S_PRINTF): New macro. (debug): Use S_PRINTF rather than printf. * Makefile.am (t_addr_CPPFLAGS): Add -DS_PRINTF=printf. (t_addr_trans_CPPFLAGS): Likewise. (t_rpc_CPPFLAGS): Likewise. libc-parts/ 2008-01-24 Neal H. Walfield <neal@gnu.org> * assert.h: Include <hurd/stddef.h>. (assertx): Use S_PRINTF rather than printf. libhurd-btree/ 2008-01-24 Neal H. Walfield <neal@gnu.org> * Makefile.am (btree_test_CPPFLAGS): New variable. (btree_test_LDADD): Remove. (btree_test_SOURCES): Add btree.c. * btree.c (node_t): Include <stdio.h>. libhurd-ihash/ 2008-01-24 Neal H. Walfield <neal@gnu.org> * Makefile.am (t_ihash_SOURCES): Add ihash.c. (t_ihash_CPPFLAGS): New variable. * t-ihash.c: Include <stdio.h>. libhurd-mm/ 2008-01-24 Neal H. Walfield <neal@gnu.org> * as.c (as_alloced_dump): Use s_printf rather than printf. (as_walk): Likewise. laden/ 2008-01-23 Neal H. Walfield <neal@gnu.org> * Makefile.am (laden_CPPFLAGS): Add -DS_PRINTF=printf. ruth/ 2008-01-24 Neal H. Walfield <neal@gnu.org> * output.h (putchar): Rename from this... (s_putchar): ... to this. (puts): Rename from this... (s_puts): ... to this. (vprintf): Rename from this... (s_vprintf): ... to this. (printf): Rename from this... (s_printf): ... to this. * output.c (putchar): Rename from this... (s_putchar): ... to this. Update users. (puts): Rename from this... (s_puts): ... to this. Update users. (vprintf): Rename from this... (s_vprintf): ... to this. Update users. (printf): Rename from this... (s_printf): ... to this. * Makefile.am (ruth_SOURCES): Add object.h and object.c. * ia32-cmain.c: Include <stddef.h>. (cmain): Use s_printf rather than printf. * panic.c (panic_): Use s_printf and s_vprintf rather than printf and vprintf.
Diffstat (limited to 'laden')
-rw-r--r--laden/ChangeLog4
-rw-r--r--laden/Makefile.am3
2 files changed, 6 insertions, 1 deletions
diff --git a/laden/ChangeLog b/laden/ChangeLog
index c66f626..7e9d013 100644
--- a/laden/ChangeLog
+++ b/laden/ChangeLog
@@ -1,3 +1,7 @@
+2008-01-23 Neal H. Walfield <neal@gnu.org>
+
+ * Makefile.am (laden_CPPFLAGS): Add -DS_PRINTF=printf.
+
2007-12-24 Neal H. Walfield <neal@gnu.org>
* ia32-cmain.c (cmain): Cast PROGRAM_NAME to elide gcc warning.
diff --git a/laden/Makefile.am b/laden/Makefile.am
index 13dd0b9..b00f0df 100644
--- a/laden/Makefile.am
+++ b/laden/Makefile.am
@@ -27,7 +27,8 @@ bootdir = $(prefix)/boot
boot_PROGRAMS = laden
laden_CPPFLAGS = -I$(srcdir) -I$(top_builddir)/include \
- -I$(top_srcdir)/libc-parts $(AM_CPPFLAGS)
+ -I$(top_srcdir)/libc-parts $(AM_CPPFLAGS) \
+ -DS_PRINTF=printf
laden_SOURCES = $(ARCH_SOURCES) \
output.h output.c output-none.c \