diff options
author | Ian Lance Taylor <ian@airs.com> | 1996-04-08 18:45:08 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1996-04-08 18:45:08 +0000 |
commit | b4cb4ea2ac9ffb33a98fa497db2f39da4b76c3b8 (patch) | |
tree | dadacdc8fe475788e1d14e3b526f83c9d448cc6f /gprof/configure | |
parent | 571177859d498a5679376ff88635ccfb772aa0cb (diff) | |
download | gdb-b4cb4ea2ac9ffb33a98fa497db2f39da4b76c3b8.zip gdb-b4cb4ea2ac9ffb33a98fa497db2f39da4b76c3b8.tar.gz gdb-b4cb4ea2ac9ffb33a98fa497db2f39da4b76c3b8.tar.bz2 |
* configure.in: Permit --enable-shared to specify a list of
directories.
* configure: Rebuild.
Diffstat (limited to 'gprof/configure')
-rwxr-xr-x | gprof/configure | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gprof/configure b/gprof/configure index 6465fa1..282bbe2 100755 --- a/gprof/configure +++ b/gprof/configure @@ -521,7 +521,8 @@ if test "${enable_shared+set}" = set; then case "${enableval}" in yes) shared=true ;; no) shared=false ;; - *) { echo "configure: error: bad value ${enableval} for BFD shared option" 1>&2; exit 1; } ;; + *bfd*) shared=true ;; + *) shared=false ;; esac fi @@ -611,7 +612,7 @@ else yes; #endif EOF -if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:615: \"$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:616: \"$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 |