summaryrefslogtreecommitdiffstats
path: root/win
diff options
context:
space:
mode:
authornijtmans <nijtmans>2009-02-16 21:41:55 (GMT)
committernijtmans <nijtmans>2009-02-16 21:41:55 (GMT)
commiteccf49ac252fc88532e302433a4cc5caef4ddd9f (patch)
tree29e364707521f04b3a3541972614867f6e3486bd /win
parentda4f0d06bf46a3ce2f768e602066d711bb8b5ba7 (diff)
downloadtcl-eccf49ac252fc88532e302433a4cc5caef4ddd9f.zip
tcl-eccf49ac252fc88532e302433a4cc5caef4ddd9f.tar.gz
tcl-eccf49ac252fc88532e302433a4cc5caef4ddd9f.tar.bz2
fix [Bug 2605232] tdbc doesn't build when
Tcl is compiled with --disable-shared.
Diffstat (limited to 'win')
-rw-r--r--win/Makefile.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/win/Makefile.in b/win/Makefile.in
index 29097c2..ac0b052 100644
--- a/win/Makefile.in
+++ b/win/Makefile.in
@@ -4,7 +4,7 @@
# "./configure", which is a configuration script generated by the "autoconf"
# program (constructs like "@foo@" will get replaced in the actual Makefile.
#
-# RCS: @(#) $Id: Makefile.in,v 1.148 2008/12/23 16:46:19 nijtmans Exp $
+# RCS: @(#) $Id: Makefile.in,v 1.149 2009/02/16 21:41:56 nijtmans Exp $
VERSION = @TCL_VERSION@
@@ -143,7 +143,7 @@ PIPE_DLL_FILE = tclpip$(VER)${DLLSUFFIX}
SHARED_LIBRARIES = $(TCL_DLL_FILE) $(TCL_STUB_LIB_FILE) \
$(DDE_DLL_FILE) $(REG_DLL_FILE) $(PIPE_DLL_FILE)
-STATIC_LIBRARIES = $(TCL_LIB_FILE) $(REG_LIB_FILE) $(DDE_LIB_FILE)
+STATIC_LIBRARIES = $(TCL_LIB_FILE) $(TCL_STUB_LIB_FILE) $(REG_LIB_FILE) $(DDE_LIB_FILE)
# TCL_EXE is the name of a tclsh executable that is available *BEFORE* running
# make for the first time. Certain build targets (make genstubs) need it to be