* configure.in: Substitute SHLIB_LIBS.
* configure: Rebuild. * Makefile.in (SHLIB_LIBS): New variable. ($(SHLIB)): Use $(SHLIB_LIBS).
This commit is contained in:
parent
418d5b058a
commit
b4aa23f244
@ -1,3 +1,10 @@
|
||||
Mon Apr 7 16:48:22 1997 Ian Lance Taylor <ian@cygnus.com>
|
||||
|
||||
* 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 <dje@canuck.cygnus.com>
|
||||
|
||||
* cgen-dis.c (build_dis_hash_table): Fix xmalloc size computation.
|
||||
|
18
opcodes/configure
vendored
18
opcodes/configure
vendored
@ -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 <<EOF
|
||||
#line 1111 "configure"
|
||||
#line 1112 "configure"
|
||||
#include "confdefs.h"
|
||||
#include <assert.h>
|
||||
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 <<EOF
|
||||
#line 1128 "configure"
|
||||
#line 1129 "configure"
|
||||
#include "confdefs.h"
|
||||
#include <assert.h>
|
||||
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
|
||||
#line 1165 "configure"
|
||||
#line 1166 "configure"
|
||||
#include "confdefs.h"
|
||||
#include <$ac_hdr>
|
||||
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
|
||||
|
@ -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.
|
||||
|
Loading…
Reference in New Issue
Block a user