X-Git-Url: http://git.pk910.de/?a=blobdiff_plain;f=configure.in;h=9a154d7fc371d6bd6e249a7f14021e120ec349b6;hb=f8f8d040b49781f7f703f50f869fd6924117a3e6;hp=31c82aa7ac180f06cf040c7dc06b77482454db0a;hpb=11ba875075db4905ec73226e3c09e8ad1b7965d4;p=srvx.git diff --git a/configure.in b/configure.in index 31c82aa..9a154d7 100644 --- a/configure.in +++ b/configure.in @@ -141,32 +141,6 @@ fi dnl Check for post-C89 keywords AC_C_INLINE -dnl Now figure out how to printf() a time_t -AC_MSG_CHECKING(for time_t format) -AC_CACHE_VAL(ac_cv_fmt_time_t, [ -ac_cv_fmt_time_t=no -AC_COMPILE_IFELSE([#include -#include -void myfunc(void) { - time_t test=0; - printf("%li", test); -}], ac_cv_fmt_time_t="\"%li\"") -if test $ac_cv_fmt_time_t = no; then -AC_COMPILE_IFELSE([#include -#include -void myfunc(void) { - time_t test=0; - printf("%i", test); -}], ac_cv_fmt_time_t="\"%i\"") -fi -if test $ac_cv_fmt_time_t = no; then -AC_MSG_ERROR([Cannot detect format string for time_t -Please check sys/types.h for the typedef of time_t and submit to a developer]) -fi -]) -AC_DEFINE_UNQUOTED(FMT_TIME_T, $ac_cv_fmt_time_t, [Define to printf format for a time_t variable]) -AC_MSG_RESULT($ac_cv_fmt_time_t) - dnl How to copy one va_list to another? AC_CACHE_CHECK([for va_copy], ac_cv_c_va_copy, [AC_LINK_IFELSE( [AC_LANG_PROGRAM([#include ], [va_list ap1, ap2; va_copy(ap1, ap2);])],