From 85a2d32e3173c5820e82410273ae645826f2fb3e Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Tue, 23 Aug 2005 19:04:08 +0000 Subject: r9534: Fix typo spotted by William Jojo - define HAVE_STRUCT_DIR64 not HAVE_STRUCT_DIRENT64. Jeremy (This used to be commit 9131acc3f0ab342dc4afd89221b440ca3a87d2c2) --- source3/configure.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source3') diff --git a/source3/configure.in b/source3/configure.in index 51fe556c43..e9454ab5e0 100644 --- a/source3/configure.in +++ b/source3/configure.in @@ -1635,8 +1635,8 @@ AC_TRY_COMPILE([ #include ], [DIR64 de;], samba_cv_HAVE_STRUCT_DIR64=yes,samba_cv_HAVE_STRUCT_DIR64=no)]) -if test x"$samba_cv_HAVE_STRUCT_DIRENT64" = x"yes" && test x"$ac_cv_func_readdir64" = x"yes"; then - AC_DEFINE(HAVE_STRUCT_DIRENT64,1,[Whether the 'DIR64' abstract data type is available]) +if test x"$samba_cv_HAVE_STRUCT_DIR64" = x"yes" && test x"$ac_cv_func_readdir64" = x"yes"; then + AC_DEFINE(HAVE_STRUCT_DIR64,1,[Whether the 'DIR64' abstract data type is available]) fi AC_CACHE_CHECK([for struct dirent64],samba_cv_HAVE_STRUCT_DIRENT64,[ -- cgit