diff options
author | Tom Tromey <tromey@redhat.com> | 1997-03-14 17:16:43 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 1997-03-14 17:16:43 +0000 |
commit | 469640865ddced25eedd80f6d553e0d355cd6564 (patch) | |
tree | f14d9ff433af4c1e1f20c7e88b603be7e056e397 /gdb/configure.in | |
parent | f3120217c8f675fbf0498a20f4b76ef60071a2da (diff) | |
download | gdb-469640865ddced25eedd80f6d553e0d355cd6564.zip gdb-469640865ddced25eedd80f6d553e0d355cd6564.tar.gz gdb-469640865ddced25eedd80f6d553e0d355cd6564.tar.bz2 |
* configure: Regenerated.
* configure.in (LIBS): Re-reverse order of TCL_LIBS and TK_LIBS.
Diffstat (limited to 'gdb/configure.in')
-rw-r--r-- | gdb/configure.in | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gdb/configure.in b/gdb/configure.in index c03b189..2498c1e 100644 --- a/gdb/configure.in +++ b/gdb/configure.in @@ -294,7 +294,10 @@ if test "${enable_gdbtk}" = "yes"; then # Include some libraries that Tcl and Tk want. TCL_LIBS='$(TK) $(TCL) $(X11_LDFLAGS) $(X11_LIBS)' - LIBS="${LIBS} ${TK_LIBS} ${TCL_LIBS}" + # 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" fi fi |