Mon Jul 21 22:24:07 1997 Martin M. Hunt <hunt@cygnus.com>
* aclocal.m4: Search for the correct tix library.
This commit is contained in:
parent
f5152f7315
commit
e81e79124e
2 changed files with 20 additions and 3 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
start-sanitize-gdbtk
|
||||||
|
Mon Jul 21 22:24:07 1997 Martin M. Hunt <hunt@cygnus.com>
|
||||||
|
|
||||||
|
* aclocal.m4: Search for the correct tix library.
|
||||||
|
end-sanitize-gdbtk
|
||||||
|
|
||||||
Thu Jul 17 11:38:46 1997 Michael Snyder (msnyder@cleaver.cygnus.com)
|
Thu Jul 17 11:38:46 1997 Michael Snyder (msnyder@cleaver.cygnus.com)
|
||||||
|
|
||||||
* partial-stab.h (case N_BINCL): detect missing partial symtab.
|
* partial-stab.h (case N_BINCL): detect missing partial symtab.
|
||||||
|
|
17
gdb/aclocal.m4
vendored
17
gdb/aclocal.m4
vendored
|
@ -524,12 +524,23 @@ fi
|
||||||
if test x"${ac_cv_c_tixh}" != x ; then
|
if test x"${ac_cv_c_tixh}" != x ; then
|
||||||
TIXHDIR="-I${ac_cv_c_tixh}"
|
TIXHDIR="-I${ac_cv_c_tixh}"
|
||||||
fi
|
fi
|
||||||
# need to do better than this...
|
|
||||||
case "${host}" in
|
case "${host}" in
|
||||||
*-*-cygwin32*)
|
*-*-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
|
esac
|
||||||
AC_SUBST(TIXHDIR)
|
AC_SUBST(TIXHDIR)
|
||||||
AC_SUBST(TIXLIB)
|
AC_SUBST(TIXLIB)
|
||||||
|
|
Loading…
Add table
Reference in a new issue