diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2021-02-08 18:23:40 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2021-02-08 18:23:40 (GMT) |
commit | ebf4c78ed811b2c54015d5c0a0fb446da5ae5140 (patch) | |
tree | fd8e42a1c9c82a39621d4bbea322b37f30ddf99a /win/makefile.vc | |
parent | 8395974e1b9e2ab626f5fe69e2ae5e77481d0753 (diff) | |
download | tcl-ebf4c78ed811b2c54015d5c0a0fb446da5ae5140.zip tcl-ebf4c78ed811b2c54015d5c0a0fb446da5ae5140.tar.gz tcl-ebf4c78ed811b2c54015d5c0a0fb446da5ae5140.tar.bz2 |
Attempt to fix the last TIP #430 bits, needed to make it work for Tk (and other external packages)
Diffstat (limited to 'win/makefile.vc')
-rw-r--r-- | win/makefile.vc | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/win/makefile.vc b/win/makefile.vc index 66879ab..cde68dc 100644 --- a/win/makefile.vc +++ b/win/makefile.vc @@ -824,7 +824,7 @@ $(TMP_DIR)\tclZlib.obj: $(GENERICDIR)\tclZlib.c $(cc32) $(pkgcflags) -I$(COMPATDIR)\zlib -Fo$@ $?
# Following the lead of the autoconf based make, we define the
-# CFG_RUNTIME_DLLFILE and CFG_RUNTIME_ZIPFILE flags specifically for tclPkgConfig
+# CFG_RUNTIME_*DIR flags specifically for tclPkgConfig
# and not as part of the global defines. These are all defined
# as empty strings because they are intended to represent paths
# at *runtime*, not build time. This may make sense on Unix systems
@@ -848,8 +848,7 @@ $(TMP_DIR)\tclPkgConfig.obj: $(GENERICDIR)\tclPkgConfig.c /DCFG_RUNTIME_SCRDIR="\"$(SCRIPT_INSTALL_DIR:\=\\)\"" \
/DCFG_RUNTIME_INCDIR="\"$(INCLUDE_INSTALL_DIR:\=\\)\"" \
/DCFG_RUNTIME_DOCDIR="\"$(DOC_INSTALL_DIR:\=\\)\"" \
- /DCFG_RUNTIME_DLLFILE="\"\"" \
- /DCFG_RUNTIME_ZIPFILE="\"\"" \
+ /DCFG_RUNTIME_DLLFILE="\"$(TCL_LIB_FILE)\"" \
-Fo$@ $?
$(TMP_DIR)\tclAppInit.obj: $(WIN_DIR)\tclAppInit.c
|