diff options
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rwxr-xr-x | gcc/configure | 7 | ||||
-rw-r--r-- | gcc/configure.ac | 3 |
3 files changed, 13 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index ffcd947..75b4d94 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2015-08-06 Yaakov Selkowitz <yselkowi@redhat.com> + + * configure.ac: Define LIBICONV_DEP with in-tree libiconv. + * configure: Regenerate. + 2015-08-06 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com> Jiong Wang <jiong.wang@arm.com> diff --git a/gcc/configure b/gcc/configure index 271316a..8e89dd9 100755 --- a/gcc/configure +++ b/gcc/configure @@ -10764,6 +10764,9 @@ _ACEOF # Until we have in-tree GNU iconv: LIBICONV_DEP= +if test -f "$LTLIBICONV"; then + LIBICONV_DEP=$LTLIBICONV +fi @@ -18338,7 +18341,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 18341 "configure" +#line 18344 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -18444,7 +18447,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 18447 "configure" +#line 18450 "configure" #include "confdefs.h" #if HAVE_DLFCN_H diff --git a/gcc/configure.ac b/gcc/configure.ac index 767e288..c7d5d32 100644 --- a/gcc/configure.ac +++ b/gcc/configure.ac @@ -1220,6 +1220,9 @@ AM_ICONV # Until we have in-tree GNU iconv: LIBICONV_DEP= +if test -f "$LTLIBICONV"; then + LIBICONV_DEP=$LTLIBICONV +fi AC_SUBST(LIBICONV_DEP) AM_LC_MESSAGES |