From c83a2c8ec58ce0bf2a41f6fdf9e1a17a186abbf1 Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Fri, 28 Jan 2005 20:15:06 +0000 Subject: [PATCH] Added a check for "struct stat64". --- configure.in | 25 +++++++++++++++++++++++-- 1 file changed, 23 insertions(+), 2 deletions(-) diff --git a/configure.in b/configure.in index 3ecfa7e3..f05280b7 100644 --- a/configure.in +++ b/configure.in @@ -57,7 +57,7 @@ fi AC_ARG_ENABLE(profile, - AC_HELP_STRING([--enable-profile], + AC_HELP_STRING([--enable-profile], [turn on CPU profiling (default no)], [], [])) if test x"$enable_profile" = xyes @@ -68,7 +68,7 @@ fi # Specifically, this turns on panic_action handling. AC_ARG_ENABLE(maintainer-mode, - AC_HELP_STRING([--enable-maintainer-mode], + AC_HELP_STRING([--enable-maintainer-mode], [turn on extra debug features], [], [])) if test x"$enable_maintainer_mode" = xyes @@ -439,6 +439,27 @@ AC_CHECK_MEMBER([struct sockaddr_in6.sin6_scope_id], #include ]) +AC_MSG_CHECKING(struct stat64) +AC_TRY_COMPILE([#include +#if HAVE_SYS_TYPES_H +# include +#endif +#if HAVE_SYS_STAT_H +# include +#endif +#if STDC_HEADERS +# include +# include +#else +# if HAVE_STDLIB_H +# include +# endif +#endif +],[struct stat64 st;], + AC_MSG_RESULT(yes) + AC_DEFINE(HAVE_STRUCT_STAT64,1,[Define to 1 if you have struct stat64.]), + AC_MSG_RESULT(no)) + # if we can't find strcasecmp, look in -lresolv (for Unixware at least) # AC_CHECK_FUNCS(strcasecmp) -- 2.34.1