* configure.in: Set $configdir to the right OS specific value.
Use value when setting $tcldir and $tkdir. * configure: Regenerate.
This commit is contained in:
parent
caeb605f5f
commit
d91670b90d
3 changed files with 584 additions and 603 deletions
|
@ -1,3 +1,9 @@
|
|||
2004-06-08 Corinna Vinschen <vinschen@redhat.com>
|
||||
|
||||
* configure.in: Set $configdir to the right OS specific value.
|
||||
Use value when setting $tcldir and $tkdir.
|
||||
* configure: Regenerate.
|
||||
|
||||
2004-06-06 Paul Brook <paul@codesourcery.com>
|
||||
|
||||
* gdb/dwarf2-frame.c (decode_frame_entry_1): Decode version 3 CIE
|
||||
|
|
1154
gdb/configure
vendored
1154
gdb/configure
vendored
File diff suppressed because it is too large
Load diff
|
@ -1134,7 +1134,14 @@ WIN32LDAPP=
|
|||
AC_SUBST(WIN32LIBS)
|
||||
AC_SUBST(WIN32LDAPP)
|
||||
|
||||
configdir="unix"
|
||||
case "${host}" in
|
||||
*-*-cygwin*)
|
||||
configdir="win"
|
||||
;;
|
||||
*)
|
||||
configdir="unix"
|
||||
;;
|
||||
esac
|
||||
|
||||
GDBTKLIBS=
|
||||
if test "${enable_gdbtk}" = "yes"; then
|
||||
|
@ -1153,14 +1160,7 @@ if test "${enable_gdbtk}" = "yes"; then
|
|||
|
||||
# now look for Tcl library stuff
|
||||
|
||||
case "${host}" in
|
||||
*-*-cygwin*)
|
||||
tcldir=../tcl/win/
|
||||
;;
|
||||
*)
|
||||
tcldir=../tcl/unix/
|
||||
;;
|
||||
esac
|
||||
tcldir="../tcl/${configdir}/"
|
||||
|
||||
TCL_DEPS="${tcldir}${TCL_LIB_FILE}"
|
||||
|
||||
|
@ -1176,14 +1176,7 @@ if test "${enable_gdbtk}" = "yes"; then
|
|||
|
||||
# now look for Tk library stuff
|
||||
|
||||
case "${host}" in
|
||||
*-*-cygwin*)
|
||||
tkdir=../tk/win/
|
||||
;;
|
||||
*)
|
||||
tkdir=../tk/unix/
|
||||
;;
|
||||
esac
|
||||
tkdir="../tk/${configdir}/"
|
||||
|
||||
TK_DEPS="${tkdir}${TK_LIB_FILE}"
|
||||
|
||||
|
|
Loading…
Reference in a new issue