summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorredman <redman>1999-07-09 18:24:00 (GMT)
committerredman <redman>1999-07-09 18:24:00 (GMT)
commitc7086983c96b8f24b086ade07965f4a82c0a16a1 (patch)
tree2251c877be114252e8d991115ce553f5d6e619bf
parentb8a5640f14e76b0eecbf18a509d1f2b1d7940e60 (diff)
downloadtcl-c7086983c96b8f24b086ade07965f4a82c0a16a1.zip
tcl-c7086983c96b8f24b086ade07965f4a82c0a16a1.tar.gz
tcl-c7086983c96b8f24b086ade07965f4a82c0a16a1.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.
-rw-r--r--ChangeLog7
-rw-r--r--win/configure.in5
2 files changed, 11 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 8f7604d..c01bb33 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+1999-07-09 <redman@scriptics.com>
+
+ * 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.
+
1999-07-08 <stanton@scriptics.com>
* tests/string.test:
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)