Added a check for "struct stat64".
authorWayne Davison <wayned@samba.org>
Fri, 28 Jan 2005 20:15:06 +0000 (20:15 +0000)
committerWayne Davison <wayned@samba.org>
Fri, 28 Jan 2005 20:15:06 +0000 (20:15 +0000)
configure.in

index 3ecfa7e..f05280b 100644 (file)
@@ -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 <netinet/in.h>
 ])
 
+AC_MSG_CHECKING(struct stat64)
+AC_TRY_COMPILE([#include <stdio.h>
+#if HAVE_SYS_TYPES_H
+# include <sys/types.h>
+#endif
+#if HAVE_SYS_STAT_H
+# include <sys/stat.h>
+#endif
+#if STDC_HEADERS
+# include <stdlib.h>
+# include <stddef.h>
+#else
+# if HAVE_STDLIB_H
+#  include <stdlib.h>
+# 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)