diff options
author | nijtmans <nijtmans> | 2010-03-12 15:18:41 (GMT) |
---|---|---|
committer | nijtmans <nijtmans> | 2010-03-12 15:18:41 (GMT) |
commit | d1cd3efa0aa04ba0c8a2c7491bb2c6c4a5dda250 (patch) | |
tree | 177831bd0bb818f27d1ecbf191846888909af0b6 /win/makefile.vc | |
parent | 9d18c761c4715d164e990bd70d90a73517f5d79f (diff) | |
download | tcl-d1cd3efa0aa04ba0c8a2c7491bb2c6c4a5dda250.zip tcl-d1cd3efa0aa04ba0c8a2c7491bb2c6c4a5dda250.tar.gz tcl-d1cd3efa0aa04ba0c8a2c7491bb2c6c4a5dda250.tar.bz2 |
Fix [Bug 2967340]: Static build failure
Diffstat (limited to 'win/makefile.vc')
-rw-r--r-- | win/makefile.vc | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/win/makefile.vc b/win/makefile.vc index 73fa236..511abaf 100644 --- a/win/makefile.vc +++ b/win/makefile.vc @@ -13,7 +13,7 @@ # Copyright (c) 2003-2008 Pat Thoyts. # #------------------------------------------------------------------------------ -# RCS: @(#) $Id: makefile.vc,v 1.208 2010/03/04 22:29:05 nijtmans Exp $ +# RCS: @(#) $Id: makefile.vc,v 1.209 2010/03/12 15:18:42 nijtmans Exp $ #------------------------------------------------------------------------------ # Check to see we are configured to build with MSVC (MSDEVDIR or MSVCDIR) @@ -620,12 +620,8 @@ $(TCLPIPEDLL): $(WINDIR)\stub16.c $(_VC_MANIFEST_EMBED_DLL) !if $(STATIC_BUILD) -!if $(TCL_USE_STATIC_PACKAGES) -$(TCLDDELIB): -!else $(TCLDDELIB): $(TMP_DIR)\tclWinDde.obj $(lib32) -nologo $(LINKERFLAGS) -out:$@ $** -!endif !else $(TCLDDELIB): $(TMP_DIR)\tclWinDde.obj $(TCLSTUBLIB) $(link32) $(dlllflags) -base:@$(WINDIR)\coffbase.txt,tcldde -out:$@ \ @@ -634,12 +630,8 @@ $(TCLDDELIB): $(TMP_DIR)\tclWinDde.obj $(TCLSTUBLIB) !endif !if $(STATIC_BUILD) -!if $(TCL_USE_STATIC_PACKAGES) -$(TCLREGLIB): -!else $(TCLREGLIB): $(TMP_DIR)\tclWinReg.obj $(lib32) -nologo $(LINKERFLAGS) -out:$@ $** -!endif !else $(TCLREGLIB): $(TMP_DIR)\tclWinReg.obj $(TCLSTUBLIB) $(link32) $(dlllflags) -base:@$(WINDIR)\coffbase.txt,tclreg -out:$@ \ |