aboutsummaryrefslogtreecommitdiff
path: root/gdb/Makefile.in
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>1996-08-02 02:43:27 +0000
committerTom Tromey <tromey@redhat.com>1996-08-02 02:43:27 +0000
commit047465fd1b79902bf20b24f220cc0cdde08746c4 (patch)
tree40349f944c99dee41a4571f0d8e0d205c0b6e1e8 /gdb/Makefile.in
parent2934d1c9258c32d0eae590e686f13304429a759e (diff)
downloadgdb-047465fd1b79902bf20b24f220cc0cdde08746c4.zip
gdb-047465fd1b79902bf20b24f220cc0cdde08746c4.tar.gz
gdb-047465fd1b79902bf20b24f220cc0cdde08746c4.tar.bz2
changes for new tcl/tk:
* gdbtk.c (mainWindow): Deleted. (cleanup_init): Don't destroy main window. (gdbtk_init): Main window now created by Tk_Init. * configure.in: Most X checks now handled automatically by Tk. Use new macros to find Tcl/Tk. * aclocal.m4: New version for new Tcl/Tk; from Don Libes. * config.in, configure: Regenerated. * Makefile.in (TCL, TCL_CFLAGS, TK, TK_CFLAGS, X11_CFLAGS, X11_LDFLAGS, X11_LIBS): Changed for new Tcl and Tk.
Diffstat (limited to 'gdb/Makefile.in')
-rw-r--r--gdb/Makefile.in10
1 files changed, 5 insertions, 5 deletions
diff --git a/gdb/Makefile.in b/gdb/Makefile.in
index 02f7b16..4fd66a6d 100644
--- a/gdb/Makefile.in
+++ b/gdb/Makefile.in
@@ -129,16 +129,16 @@ SIM =
#start-sanitize-gdbtk
# Where is the TCL library? Typically in ../tcl.
-TCL = @TCLLIB@
+TCL = @TCL_BUILD_LIB_SPEC@
TCL_CFLAGS = @TCLHDIR@
# Where is the TK library? Typically in ../tk.
-TK = @TKLIB@
+TK = @TK_BUILD_LIB_SPEC@
TK_CFLAGS = @TKHDIR@
-X11_CFLAGS = @X_CFLAGS@ $(X11_EXTRA_CFLAGS)
-X11_LDFLAGS = @X_LDFLAGS@
-X11_LIBS = @X_LIBS@ $(X11_EXTRA_LIBS)
+X11_CFLAGS = @TK_XINCLUDES@
+X11_LDFLAGS =
+X11_LIBS =
ENABLE_GDBTK= @ENABLE_GDBTK@
#end-sanitize-gdbtk