From: Ian Lance Taylor Date: Mon, 7 Apr 1997 21:01:00 +0000 (+0000) Subject: * configure.in: Substitute SHLIB_LIBS. X-Git-Tag: gdb-4_18~5832 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b4aa23f24488d584963b30451fc68b02cdbdbb0d;p=platform%2Fupstream%2Fbinutils.git * configure.in: Substitute SHLIB_LIBS. * configure: Rebuild. * Makefile.in (SHLIB_LIBS): New variable. ($(SHLIB)): Use $(SHLIB_LIBS). --- diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index cd108fc..7e0e5f4 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,3 +1,10 @@ +Mon Apr 7 16:48:22 1997 Ian Lance Taylor + + * configure.in: Substitute SHLIB_LIBS. + * configure: Rebuild. + * Makefile.in (SHLIB_LIBS): New variable. + ($(SHLIB)): Use $(SHLIB_LIBS). + Mon Apr 7 11:45:44 1997 Doug Evans * cgen-dis.c (build_dis_hash_table): Fix xmalloc size computation. diff --git a/opcodes/configure b/opcodes/configure index 8910a32..56d6da5 100755 --- a/opcodes/configure +++ b/opcodes/configure @@ -1075,6 +1075,7 @@ fi + if test "${commonbfdlib}" = "true"; then COMMON_SHLIB=yes # Rebuild the shared library if libiberty or libbfd changes. @@ -1092,7 +1093,7 @@ fi echo $ac_n "checking how to run the C preprocessor""... $ac_c" 1>&6 -echo "configure:1096: checking how to run the C preprocessor" >&5 +echo "configure:1097: checking how to run the C preprocessor" >&5 # On Suns, sometimes $CPP names a directory. if test -n "$CPP" && test -d "$CPP"; then CPP= @@ -1107,13 +1108,13 @@ else # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. cat > conftest.$ac_ext < Syntax Error EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:1117: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:1118: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out` if test -z "$ac_err"; then : @@ -1124,13 +1125,13 @@ else rm -rf conftest* CPP="${CC-cc} -E -traditional-cpp" cat > conftest.$ac_ext < Syntax Error EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:1134: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:1135: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out` if test -z "$ac_err"; then : @@ -1156,17 +1157,17 @@ for ac_hdr in string.h strings.h stdlib.h do ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 -echo "configure:1160: checking for $ac_hdr" >&5 +echo "configure:1161: checking for $ac_hdr" >&5 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:1170: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:1171: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out` if test -z "$ac_err"; then rm -rf conftest* @@ -1472,6 +1473,7 @@ s%@PICFLAG@%$PICFLAG%g s%@SHLIB@%$SHLIB%g s%@SHLIB_CC@%$SHLIB_CC%g s%@SHLIB_CFLAGS@%$SHLIB_CFLAGS%g +s%@SHLIB_LIBS@%$SHLIB_LIBS%g s%@COMMON_SHLIB@%$COMMON_SHLIB%g s%@SHLIB_DEP@%$SHLIB_DEP%g s%@BFD_PICLIST@%$BFD_PICLIST%g diff --git a/opcodes/configure.in b/opcodes/configure.in index d0949ba..4baa5de 100644 --- a/opcodes/configure.in +++ b/opcodes/configure.in @@ -97,6 +97,7 @@ AC_SUBST(PICFLAG) AC_SUBST(SHLIB) AC_SUBST(SHLIB_CC) AC_SUBST(SHLIB_CFLAGS) +AC_SUBST(SHLIB_LIBS) if test "${commonbfdlib}" = "true"; then COMMON_SHLIB=yes # Rebuild the shared library if libiberty or libbfd changes.