* configure.in: Permit --enable-shared to specify a list of
authorIan Lance Taylor <ian@airs.com>
Mon, 8 Apr 1996 18:01:49 +0000 (18:01 +0000)
committerIan Lance Taylor <ian@airs.com>
Mon, 8 Apr 1996 18:01:49 +0000 (18:01 +0000)
directories.
* configure: Rebuild.

bfd/ChangeLog
opcodes/ChangeLog
opcodes/configure
opcodes/configure.in

index 33e55a4abfa5fe655721df32c556728d49db028f..9ed226ea8b048456bc64b9f0d0090db4a8897e2e 100644 (file)
@@ -1,5 +1,9 @@
 Mon Apr  8 12:09:36 1996  Ian Lance Taylor  <ian@cygnus.com>
 
+       * configure.in: Permit --enable-shared to specify a list of
+       directories.
+       * configure: Rebuild.
+
        * configure.host: Set HLDFLAGS and SHLIB_CFLAGS for *-dec-osf*
        host when configuring with --enable-shard.
 
index 995fe4788946fc87a229ad0d990ee37a4e980f72..bcba88530fae833d16d04882f261ef73d6bfd82d 100644 (file)
@@ -1,3 +1,9 @@
+Mon Apr  8 14:00:44 1996  Ian Lance Taylor  <ian@cygnus.com>
+
+       * configure.in: Permit --enable-shared to specify a list of
+       directories.
+       * configure: Rebuild.
+
 Fri Apr  5 17:12:27 1996  Jeffrey A Law  (law@cygnus.com)
 
        * h8300-dis.c (bfd_h8_disassemble): Use "bit" for L_3 immediates,
index 194c0b58e10520df1f5f7fd812d16418b93c8f01..a75f8889a8870b23c5c8ff9e6c4346a6b9baea39 100755 (executable)
@@ -552,7 +552,8 @@ if test "${enable_shared+set}" = set; then
   case "${enableval}" in
   yes) shared=true ;;
   no)  shared=false ;;
-  *)   { echo "configure: error: bad value ${enableval} for opcodes shared option" 1>&2; exit 1; } ;;
+  *opcodes*) shared=true ;;
+  *) shared=false ;;
 esac
 fi
 # Check whether --enable-commonbfdlib or --disable-commonbfdlib was given.
@@ -799,7 +800,7 @@ else
   yes;
 #endif
 EOF
-if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:803: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then
+if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:804: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then
   ac_cv_prog_gcc=yes
 else
   ac_cv_prog_gcc=no
@@ -1041,13 +1042,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 1045 "configure"
+#line 1046 "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:1051: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
+{ (eval echo configure:1052: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
 ac_err=`grep -v '^ *+' conftest.out`
 if test -z "$ac_err"; then
   :
@@ -1056,13 +1057,13 @@ else
   rm -rf conftest*
   CPP="${CC-cc} -E -traditional-cpp"
   cat > conftest.$ac_ext <<EOF
-#line 1060 "configure"
+#line 1061 "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:1066: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
+{ (eval echo configure:1067: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
 ac_err=`grep -v '^ *+' conftest.out`
 if test -z "$ac_err"; then
   :
@@ -1090,12 +1091,12 @@ 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 1094 "configure"
+#line 1095 "configure"
 #include "confdefs.h"
 #include <$ac_hdr>
 EOF
 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
-{ (eval echo configure:1099: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
+{ (eval echo configure:1100: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
 ac_err=`grep -v '^ *+' conftest.out`
 if test -z "$ac_err"; then
   rm -rf conftest*
index d4ff51c063907d35f897b15f1e57a74c2c9d77d9..9aed7feb6fec85ba2707179f80da27c021807128 100644 (file)
@@ -31,7 +31,8 @@ AC_ARG_ENABLE(shared,
 [case "${enableval}" in
   yes) shared=true ;;
   no)  shared=false ;;
-  *)   AC_MSG_ERROR([bad value ${enableval} for opcodes shared option]) ;;
+  *opcodes*) shared=true ;;
+  *) shared=false ;;
 esac])dnl
 AC_ARG_ENABLE(commonbfdlib,
 [  --enable-commonbfdlib   build shared BFD/opcodes/libiberty library],
This page took 0.039717 seconds and 4 git commands to generate.