diff options
author | mdejong <mdejong> | 2001-11-09 07:14:23 (GMT) |
---|---|---|
committer | mdejong <mdejong> | 2001-11-09 07:14:23 (GMT) |
commit | 263fc29415c791d179a385258a16a1201fff5033 (patch) | |
tree | f7d7fc0a6d41dd0d95c73f7a282a4bf536bec726 /unix/Makefile.in | |
parent | 98b33f507291a1711c437297ee46e62bdc844bd0 (diff) | |
download | tk-263fc29415c791d179a385258a16a1201fff5033.zip tk-263fc29415c791d179a385258a16a1201fff5033.tar.gz tk-263fc29415c791d179a385258a16a1201fff5033.tar.bz2 |
* unix/Makefile.in:
Avoid adding libc to the LIBS and WISH_LIBS
variables since it is not needed when linking with CC.
If required when linking with LD it should be done
on a case by case basis in tcl.m4.
Diffstat (limited to 'unix/Makefile.in')
-rw-r--r-- | unix/Makefile.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/unix/Makefile.in b/unix/Makefile.in index c37526b..4b1f53e 100644 --- a/unix/Makefile.in +++ b/unix/Makefile.in @@ -5,7 +5,7 @@ # "autoconf" program (constructs like "@foo@" will get replaced in the # actual Makefile. # -# RCS: @(#) $Id: Makefile.in,v 1.54 2001/08/07 20:17:13 hobbs Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.55 2001/11/09 07:14:23 mdejong Exp $ # Current Tk version; used in various names. @@ -202,8 +202,8 @@ TCL_STUB_FLAGS = @TCL_STUB_FLAGS@ # Libraries to use when linking. This definition is determined by the # configure script. -LIBS = @LIBS@ $(X11_LIB_SWITCHES) @DL_LIBS@ @MATH_LIBS@ -lc -WISH_LIBS = $(TCL_LIB_SPEC) @LIBS@ $(X11_LIB_SWITCHES) @DL_LIBS@ @MATH_LIBS@ -lc +LIBS = @LIBS@ $(X11_LIB_SWITCHES) @DL_LIBS@ @MATH_LIBS@ +WISH_LIBS = $(TCL_LIB_SPEC) @LIBS@ $(X11_LIB_SWITCHES) @DL_LIBS@ @MATH_LIBS@ # The symbol below provides support for dynamic loading and shared # libraries. See configure.in for a description of what it means. |