summaryrefslogtreecommitdiffstats
path: root/win
diff options
context:
space:
mode:
authorredman <redman@noemail.net>1999-07-09 18:23:59 (GMT)
committerredman <redman@noemail.net>1999-07-09 18:23:59 (GMT)
commitadd8bd4e18516fab5fdcb4d8ff1c0fad95a64d06 (patch)
tree2251c877be114252e8d991115ce553f5d6e619bf /win
parent8120effbee12ed90ff80fad58a4a35451b889491 (diff)
downloadtcl-add8bd4e18516fab5fdcb4d8ff1c0fad95a64d06.zip
tcl-add8bd4e18516fab5fdcb4d8ff1c0fad95a64d06.tar.gz
tcl-add8bd4e18516fab5fdcb4d8ff1c0fad95a64d06.tar.bz2
* win/configure.in: Eval DLLSUFFIX, LIBSUFFIX, and EXESUFFIX in
the configure script so that substitutions get expanded before being placed in the Makefile. The "d" portion for debug libraries and DLLs was not being set properly. FossilOrigin-Name: fd326b93fae324d879efbd731c8c9cb8c4511dad
Diffstat (limited to 'win')
-rw-r--r--win/configure.in5
1 files changed, 4 insertions, 1 deletions
diff --git a/win/configure.in b/win/configure.in
index ee1c38a..d6047af 100644
--- a/win/configure.in
+++ b/win/configure.in
@@ -2,7 +2,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.9 1999/06/25 23:47:28 welch Exp $
+# RCS: @(#) $Id: configure.in,v 1.10 1999/07/09 18:24:01 redman Exp $
AC_INIT(../generic/tcl.h)
@@ -80,6 +80,9 @@ eval "TCL_SRC_DIR=`cd $srcdir; pwd`"
eval "TCL_STUB_LIB_FILE=tclstub$VER${LIBSUFFIX}"
eval "TCL_DLL_FILE=tcl$VER${DLLSUFFIX}"
eval "TCL_LIB_FILE=tcl$VER${LIBSUFFIX}"
+eval "DLLSUFFIX=${DLLSUFFIX}"
+eval "LIBSUFFIX=${LIBSUFFIX}"
+eval "EXESUFFIX=${EXESUFFIX}"
AC_SUBST(TCL_VERSION)
AC_SUBST(TCL_MAJOR_VERSION)