Author: jra Date: 2005-08-23 19:04:08 +0000 (Tue, 23 Aug 2005) New Revision: 9534
WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=9534 Log: Fix typo spotted by William Jojo <[EMAIL PROTECTED]> - define HAVE_STRUCT_DIR64 not HAVE_STRUCT_DIRENT64. Jeremy Modified: branches/SAMBA_3_0/source/configure.in Changeset: Modified: branches/SAMBA_3_0/source/configure.in =================================================================== --- branches/SAMBA_3_0/source/configure.in 2005-08-23 17:53:13 UTC (rev 9533) +++ branches/SAMBA_3_0/source/configure.in 2005-08-23 19:04:08 UTC (rev 9534) @@ -1635,8 +1635,8 @@ #include <dirent.h>], [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,[
