diff options
author | mdejong <mdejong> | 2003-04-03 10:03:02 (GMT) |
---|---|---|
committer | mdejong <mdejong> | 2003-04-03 10:03:02 (GMT) |
commit | 242deb427441a2cfc788543d213ae3f3e032fbd8 (patch) | |
tree | 6189e40c52d7d5ca601b43f3f3c77d4e7f626dbf /win/configure.in | |
parent | 68febb66350aa26c585f191960ccb474d5c75b36 (diff) | |
download | tcl-242deb427441a2cfc788543d213ae3f3e032fbd8.zip tcl-242deb427441a2cfc788543d213ae3f3e032fbd8.tar.gz tcl-242deb427441a2cfc788543d213ae3f3e032fbd8.tar.bz2 |
* win/configure: Regen.
* win/configure.in: Set stub lib flag based
on new LIBFLAGSUFFIX variable.
* win/tcl.m4 (SC_CONFIG_CFLAGS): Set new
LIBFLAGSUFFIX that works like LIBSUFFIX,
it is used when creating library names.
The previous implementation would generate
-ltclstub85 instead of -ltclstub85s when
configured with --disable-shared.
Diffstat (limited to 'win/configure.in')
-rw-r--r-- | win/configure.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/win/configure.in b/win/configure.in index 00f0e7b..64f1068 100644 --- a/win/configure.in +++ b/win/configure.in @@ -3,7 +3,7 @@ # generate the file "configure", which is run during Tcl installation # to configure the system for the local environment. # -# RCS: @(#) $Id: configure.in,v 1.68 2003/03/01 01:22:46 hobbs Exp $ +# RCS: @(#) $Id: configure.in,v 1.68.2.1 2003/04/03 10:03:25 mdejong Exp $ AC_INIT(../generic/tcl.h) AC_PREREQ(2.13) @@ -315,7 +315,7 @@ eval "TCL_LIB_FILE=${LIBPREFIX}tcl$VER${LIBSUFFIX}" #TCL_LIB_SPEC eval "TCL_STUB_LIB_FILE=\"${LIBPREFIX}tclstub${VER}${LIBSUFFIX}\"" -eval "TCL_STUB_LIB_FLAG=\"-ltclstub${VER}${TCL_DBGX}\"" +eval "TCL_STUB_LIB_FLAG=\"-ltclstub${VER}${LIBFLAGSUFFIX}\"" eval "TCL_BUILD_STUB_LIB_SPEC=\"-L`pwd` ${TCL_STUB_LIB_FLAG}\"" eval "TCL_STUB_LIB_SPEC=\"-L${libdir} ${TCL_STUB_LIB_FLAG}\"" eval "TCL_BUILD_STUB_LIB_PATH=\"`pwd`/${TCL_STUB_LIB_FILE}\"" |