aboutsummaryrefslogtreecommitdiff
path: root/gcc/aclocal.m4
diff options
context:
space:
mode:
authorCraig Rodrigues <rodrigc@gcc.gnu.org>2002-01-22 22:48:45 +0000
committerCraig Rodrigues <rodrigc@gcc.gnu.org>2002-01-22 22:48:45 +0000
commitb7f2fb9680a61234ccced546f5b8a4cf86f781ee (patch)
tree1681fda7bdab55f18b48c6b1a7b3bfb3597754b5 /gcc/aclocal.m4
parent92aaa24628e7d30e5c14529415d79e9bbb0591dd (diff)
downloadgcc-b7f2fb9680a61234ccced546f5b8a4cf86f781ee.zip
gcc-b7f2fb9680a61234ccced546f5b8a4cf86f781ee.tar.gz
gcc-b7f2fb9680a61234ccced546f5b8a4cf86f781ee.tar.bz2
re PR java/4972 (undefined reference to `libiconv')
2002-01-22 Craig Rodrigues <rodrigc@gcc.gnu.org> PR java/4972 * aclocal.m4 (AM_ICONV): Put linking flags for libiconv in LIBICONV variable. * configure: Regenerated. From-SVN: r49105
Diffstat (limited to 'gcc/aclocal.m4')
-rw-r--r--gcc/aclocal.m47
1 files changed, 4 insertions, 3 deletions
diff --git a/gcc/aclocal.m4 b/gcc/aclocal.m4
index 2fd6095..0c4b5c6 100644
--- a/gcc/aclocal.m4
+++ b/gcc/aclocal.m4
@@ -1101,11 +1101,12 @@ AC_DEFUN([AM_ICONV],
dnl Some systems have iconv in libc, some have it in libiconv (OSF/1 and
dnl those with the standalone portable GNU libiconv installed).
+ am_cv_lib_iconv_ldpath=
AC_ARG_WITH([libiconv-prefix],
[ --with-libiconv-prefix=DIR search for libiconv in DIR/include and DIR/lib], [
for dir in `echo "$withval" | tr : ' '`; do
if test -d $dir/include; then CPPFLAGS="$CPPFLAGS -I$dir/include"; fi
- if test -d $dir/lib; then LDFLAGS="$LDFLAGS -L$dir/lib"; fi
+ if test -d $dir/lib; then am_cv_lib_iconv_ldpath="-L$dir/lib"; fi
done
])
@@ -1120,7 +1121,7 @@ AC_DEFUN([AM_ICONV],
am_cv_func_iconv=yes)
if test "$am_cv_func_iconv" != yes; then
am_save_LIBS="$LIBS"
- LIBS="$LIBS -liconv"
+ LIBS="$LIBS $am_cv_libiconv_ldpath -liconv"
AC_TRY_LINK([#include <stdlib.h>
#include <iconv.h>],
[iconv_t cd = iconv_open("","");
@@ -1157,7 +1158,7 @@ size_t iconv();
fi
LIBICONV=
if test "$am_cv_lib_iconv" = yes; then
- LIBICONV="-liconv"
+ LIBICONV="$am_cv_lib_iconv_ldpath -liconv"
fi
AC_SUBST(LIBICONV)
])