mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-08-06 06:45:56 +08:00
Tue Jul 22 19:45:37 1997 Martin M. Hunt <hunt@cygnus.com>
* configure.in, aclocal.m4: Another fix to find the correct Tix library name. * configure: Rebuilt.
This commit is contained in:
@ -305,6 +305,23 @@ if test "${enable_gdbtk}" = "yes"; then
|
||||
CY_AC_PATH_ITCLH
|
||||
CY_AC_PATH_TIX
|
||||
|
||||
# now look for tix library stuff
|
||||
TIXVERSION=4.1.7.6
|
||||
. ${ac_cv_c_tclconfig}/tclConfig.sh
|
||||
case "${host}" in
|
||||
*-*-cygwin32*)
|
||||
tixdir=../tix/win/tcl7.6
|
||||
;;
|
||||
*)
|
||||
tixdir=../tix/unix/tk4.2
|
||||
;;
|
||||
esac
|
||||
if test "${TCL_LIB_VERSIONS_OK}" = "ok"; then
|
||||
TIXLIB="-L${tixdir} -ltix${TIXVERSION}"
|
||||
else
|
||||
TIXLIB="-L${tixdir} -ltix`echo ${TIXVERSION} | tr -d .`"
|
||||
fi
|
||||
|
||||
ENABLE_GDBTK=1
|
||||
|
||||
# Include some libraries that Tcl and Tk want.
|
||||
@ -326,6 +343,7 @@ AC_SUBST(ENABLE_GDBTK)
|
||||
AC_SUBST(X_CFLAGS)
|
||||
AC_SUBST(X_LDFLAGS)
|
||||
AC_SUBST(X_LIBS)
|
||||
AC_SUBST(TIXLIB)
|
||||
# end-sanitize-gdbtk
|
||||
|
||||
AC_SUBST(ENABLE_CFLAGS)
|
||||
|
Reference in New Issue
Block a user