Better handling of iconv support and etc because gnu libiconv on FreeBSD
authorRichard Sharpe <sharpe@samba.org>
Wed, 5 Nov 2003 23:36:00 +0000 (23:36 +0000)
committerRichard Sharpe <sharpe@samba.org>
Wed, 5 Nov 2003 23:36:00 +0000 (23:36 +0000)
changed where it puts things :-)
(This used to be commit 123a516a6095e3fb6c2ad372b2800a825bbd2a13)

source3/configure.in

index 0a6005b28f477abf8830de3b3a12ce9e78b92e88..8ac4541024e5239a9d0e771372b9bec2e4958603 100644 (file)
@@ -1605,9 +1605,10 @@ for i in $LOOK_DIRS ; do
     save_CPPFLAGS=$CPPFLAGS
     CPPFLAGS="$CPPFLAGS -I$i/include"
 dnl This is here to handle -withval stuff for --with-libiconv
     save_CPPFLAGS=$CPPFLAGS
     CPPFLAGS="$CPPFLAGS -I$i/include"
 dnl This is here to handle -withval stuff for --with-libiconv
-    if test x"$ICONV_PATH_SPEC" = "xyes" ; then
+dnl Perhaps we should always add a -L
+dnl    if test x"$ICONV_PATH_SPEC" = "xyes" ; then
        LDFLAGS="-L$i/lib"
        LDFLAGS="-L$i/lib"
-    fi
+dnl    fi
     LIBS=
     export LDFLAGS LIBS CPPFLAGS
 dnl Try to find iconv(3)
     LIBS=
     export LDFLAGS LIBS CPPFLAGS
 dnl Try to find iconv(3)
@@ -1616,7 +1617,7 @@ dnl Try to find iconv(3)
     if test "$ICONV_FOUND" = yes; then
         LIB_ADD_DIR(LDFLAGS, "$i/lib")
         CFLAGS_ADD_DIR(CPPFLAGS, "$i/include")
     if test "$ICONV_FOUND" = yes; then
         LIB_ADD_DIR(LDFLAGS, "$i/lib")
         CFLAGS_ADD_DIR(CPPFLAGS, "$i/include")
-        LIBS="$save_LIBS"
+dnl        LIBS="$save_LIBS"
         ICONV_LOCATION=$i
         export LDFLAGS LIBS CPPFLAGS
 dnl Now, check for a working iconv ... we want to do it here because
         ICONV_LOCATION=$i
         export LDFLAGS LIBS CPPFLAGS
 dnl Now, check for a working iconv ... we want to do it here because