From 06dbc35879e50fbf49de571b739ed729b114be8c Mon Sep 17 00:00:00 2001 From: "matthias.ringwald" Date: Sun, 5 Jun 2011 09:52:03 +0000 Subject: [PATCH] pre-def HAVE_TIME and HAVE_BZERO for non-embedded compilation, often missing --- configure.in | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/configure.in b/configure.in index 13f1d940d..7c5a4eedf 100644 --- a/configure.in +++ b/configure.in @@ -254,7 +254,11 @@ fi if test "x$HAVE_SO_NOSIGPIPE" == xyes ; then echo "#define HAVE_SO_NOSIGPIPE" >> config.h fi - + +# often not present for embedded +echo "#define HAVE_TIME" >> config.h +echo "#define HAVE_BZERO" >> config.h + AC_SUBST(IPHONE_IP) AC_SUBST(HAVE_LIBUSB) AC_SUBST(USE_LDID)