search for: iconv_found

Displaying 2 results from an estimated 2 matches for "iconv_found".

2004 Jul 11
1
[BUG] iconv detection in 3.0.5rc1
I've found that the inner loop for iconv detection in a lib32 subdirectory of the LOOK_DIR path doesn't work right. Here are the problems I've noticed, 1) configure only tested lib32 on the first directory, /usr, this is because ICONV_FOUND was set to "yes" on the try of /usr/local/lib and never reset (if it should be) to "no" because all the conversion tests were failures. I've found that by moving, ICONV_FOUND="no" inside the for loop, for i in $LOOK_DIRS ; do permits configure to actually fin...
2004 Feb 09
1
iconv detection on Irix 6.5
...19939,7 @@ save_LDFLAGS=$LDFLAGS save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$i/include" - LDFLAGS="$LDFLAGS -L$i/lib" + LDFLAGS="$LDFLAGS -L$i/lib32" LIBS= export LDFLAGS LIBS CPPFLAGS @@ -20219,8 +20219,8 @@ if test "$ICONV_FOUND" = yes; then LDFLAGS=$save_LDFLAGS -if test ""$i/lib"" != "/usr/lib" ; then - LDFLAGS="$LDFLAGS -L"$i/lib"" +if test ""$i/lib32"" != "/usr/lib" ; then + LDFLAGS="$LDFLAGS -L"$i/lib32"...