aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Hunt <hunt@redhat.com>1997-07-22 05:26:21 +0000
committerMartin Hunt <hunt@redhat.com>1997-07-22 05:26:21 +0000
commit111bc9a75173462f172dfdcc6b4be4d31bef406d (patch)
tree5a52e6dd096d07e9e0b2a595b6595462f635b9c6
parente81e79124e4954a0681e064496c44be4cad2cbc0 (diff)
downloadgdb-111bc9a75173462f172dfdcc6b4be4d31bef406d.zip
gdb-111bc9a75173462f172dfdcc6b4be4d31bef406d.tar.gz
gdb-111bc9a75173462f172dfdcc6b4be4d31bef406d.tar.bz2
Mon Jul 21 22:24:07 1997 Martin M. Hunt <hunt@cygnus.com>
* configure: Rebuilt.
-rwxr-xr-xgdb/configure19
1 files changed, 15 insertions, 4 deletions
diff --git a/gdb/configure b/gdb/configure
index 9064364..b522c65 100755
--- a/gdb/configure
+++ b/gdb/configure
@@ -3006,12 +3006,23 @@ fi
if test x"${ac_cv_c_tixh}" != x ; then
TIXHDIR="-I${ac_cv_c_tixh}"
fi
-# need to do better than this...
case "${host}" in
*-*-cygwin32*)
- TIXLIB="../tix/win/tk4.2/libtix4.1.7.6.a" ;;
+ for i in ../tix/win/tk4.2/libtix4.1.7.6.a ../tix/win/tk4.2/libtix4176.a ; do
+ if test -f $i ; then
+ TIXLIB=${i}
+ break
+ fi
+ done
+ ;;
*)
- TIXLIB="../tix/unix/tk4.2/libtix4.1.7.6.a" ;;
+ for i in ../tix/unix/tk4.2/libtix4.1.7.6.a ../tix/unix/tk4.2/libtix4176.a ; do
+ if test -f ${i} ; then
+ TIXLIB=${i}
+ break
+ fi
+ done
+ ;;
esac
@@ -3181,7 +3192,7 @@ links="${links} nm.h"
fi
# start-sanitize-gdbtk
echo $ac_n "checking whether ln -s works""... $ac_c" 1>&6
-echo "configure:3185: checking whether ln -s works" >&5
+echo "configure:3196: checking whether ln -s works" >&5
if eval "test \"`echo '$''{'ac_cv_prog_LN_S'+set}'`\" = set"; then
echo $ac_n "(cached) $ac_c" 1>&6
else