1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-24 21:34:56 +03:00

Do not cache iconv checks because we are looking for it now in different places and negative result does not mean we don't have iconv unless we checked everything

(This used to be commit d46f8325f2)
This commit is contained in:
Alexander Bokovoy 2003-08-15 20:30:52 +00:00
parent 5047cf7357
commit b7a8561ea1

View File

@ -1569,7 +1569,7 @@ dnl there might be a working iconv further down the list of LOOK_DIRS
if test x"$ICONV_PATH_SPEC" = "xyes" ; then
LIBS="$LIBS -L$ICONV_LOCATION/lib"
fi
AC_CACHE_CHECK([for working iconv],samba_cv_HAVE_NATIVE_ICONV,[
dnl AC_CACHE_CHECK([for working iconv],samba_cv_HAVE_NATIVE_ICONV,[
default_dos_charset=no
default_display_charset=no
default_unix_charset=no
@ -1617,7 +1617,7 @@ dnl there might be a working iconv further down the list of LOOK_DIRS
samba_cv_HAVE_NATIVE_ICONV=no
fi
fi
])
dnl ])
LIBS="$ic_save_LIBS"
if test x"$samba_cv_HAVE_NATIVE_ICONV" = x"yes"; then