aboutsummaryrefslogtreecommitdiff
path: root/gdb/configure.in
diff options
context:
space:
mode:
authorKeith Seitz <keiths@cygnus>1997-12-01 20:53:02 +0000
committerKeith Seitz <keiths@cygnus>1997-12-01 20:53:02 +0000
commitdd3dd9184149b3bb4c56a6589140853b84df45df (patch)
tree91b303a9f7f3866a13a6d2959ddb24ccfb00b2ef /gdb/configure.in
parent27e5c6bfb7cd70773be8882c032690ee00125c27 (diff)
downloadgdb-dd3dd9184149b3bb4c56a6589140853b84df45df.zip
gdb-dd3dd9184149b3bb4c56a6589140853b84df45df.tar.gz
gdb-dd3dd9184149b3bb4c56a6589140853b84df45df.tar.bz2
* gdbtk.c: move include of "guitcl.h" back out of IDE ifdef
(gdbtk_init): move ide_initialize_paths out of IDE ifdef * configure.in (TCL_LIBS, CONFIG_DEPS): add IDE libraries for all builds (CONFIG_OBS): remove tracepoint.o, which should always be included * configure: regenerate * Makefile.in (install-only): ALWAYS install the new gdbtk (REMOTE_OBS): add tracepoint.o
Diffstat (limited to 'gdb/configure.in')
-rw-r--r--gdb/configure.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/configure.in b/gdb/configure.in
index 6fb63ea..8512fc9 100644
--- a/gdb/configure.in
+++ b/gdb/configure.in
@@ -354,14 +354,14 @@ if test "${enable_gdbtk}" = "yes"; then
TCL_LIBS='$(LIBIDE) $(IDE) $(ITCL) $(TIX) $(TK) $(TCL) $(X11_LDFLAGS) $(X11_LIBS)'
CONFIG_DEPS='$(LIBIDE) $(IDE_DEPS) $(ITCL_DEPS) $(TIX_DEPS) $(TK_DEPS) $(TCL_DEPS)'
else
- TCL_LIBS='$(ITCL) $(TIX) $(TK) $(TCL) $(X11_LDFLAGS) $(X11_LIBS)'
- CONFIG_DEPS='$(ITCL_DEPS) $(TIX_DEPS) $(TK_DEPS) $(TCL_DEPS)'
+ TCL_LIBS='$(LIBIDE) $(ITCL) $(TIX) $(TK) $(TCL) $(X11_LDFLAGS) $(X11_LIBS)'
+ CONFIG_DEPS='$(LIBIDE) $(ITCL_DEPS) $(TIX_DEPS) $(TK_DEPS) $(TCL_DEPS)'
fi
# Yes, the ordering seems wrong here. But it isn't.
# TK_LIBS is the list of libraries that need to be linked
# after Tcl/Tk.
LIBS="${LIBS} ${TCL_LIBS} ${TK_LIBS}"
- CONFIG_OBS="${CONFIG_OBS} gdbtk.o tracepoint.o"
+ CONFIG_OBS="${CONFIG_OBS} gdbtk.o"
if test x$gdb_cv_os_cygwin32 = xyes; then
WIN32LIBS="${WIN32LIBS} -lshell32 -lgdi32 -lcomdlg32 -ladvapi32 -luser32"