diff options
author | mdejong <mdejong@noemail.net> | 2001-11-09 07:11:26 (GMT) |
---|---|---|
committer | mdejong <mdejong@noemail.net> | 2001-11-09 07:11:26 (GMT) |
commit | 55bd8e2721733d0ab8a973d2df5a5969c5ad9f29 (patch) | |
tree | 8da7401f2b0237d2e18378cc7ab8ef8dbf75ba4f /unix/Makefile.in | |
parent | 3f141453c8199c77ddd8db6ef7ce43f04776bc72 (diff) | |
download | tcl-55bd8e2721733d0ab8a973d2df5a5969c5ad9f29.zip tcl-55bd8e2721733d0ab8a973d2df5a5969c5ad9f29.tar.gz tcl-55bd8e2721733d0ab8a973d2df5a5969c5ad9f29.tar.bz2 |
* unix/Makefile.in:
* unix/dltest/Makefile.in:
Avoid adding libc to the LIBS variable 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.
FossilOrigin-Name: 2c712286d71ac3ab5c35cd8660d3e90a3f71617f
Diffstat (limited to 'unix/Makefile.in')
-rw-r--r-- | unix/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/unix/Makefile.in b/unix/Makefile.in index fef0ae9..c921d91 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.84 2001/11/08 03:43:47 mdejong Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.85 2001/11/09 07:11:26 mdejong Exp $ VERSION = @TCL_VERSION@ @@ -252,7 +252,7 @@ STUB_CC_SWITCHES = ${CFLAGS} ${CFLAGS_WARNING} ${SHLIB_CFLAGS} \ ${AC_FLAGS} ${MATH_FLAGS} ${GENERIC_FLAGS} ${PROTO_FLAGS} ${MEM_DEBUG_FLAGS} \ ${COMPILE_DEBUG_FLAGS} ${ENV_FLAGS} -DTCL_SHLIB_EXT=\"${SHLIB_SUFFIX}\" -LIBS = @DL_LIBS@ @LIBS@ $(MATH_LIBS) -lc +LIBS = @DL_LIBS@ @LIBS@ $(MATH_LIBS) DEPEND_SWITCHES = ${CFLAGS} -I${GENERIC_DIR} -I${SRC_DIR} \ ${AC_FLAGS} ${MATH_FLAGS} \ |