diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2013-07-08 06:51:16 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2013-07-08 06:51:16 (GMT) |
commit | 60d0329208c534212988f39381ed9d26975da493 (patch) | |
tree | 18ad1f57b89652905915308e154761c84c0834c2 | |
parent | 2dd82db7ae9e5978aeb64744956d20f14f0d99aa (diff) | |
parent | 2a8fc2f6742ccb70838789cfb3c3713cc6fe681d (diff) | |
download | tcl-60d0329208c534212988f39381ed9d26975da493.zip tcl-60d0329208c534212988f39381ed9d26975da493.tar.gz tcl-60d0329208c534212988f39381ed9d26975da493.tar.bz2 |
Build stub objects with -DSTATIC_BUILD on all platforms. Only important on win32 (already done) and cygwin, on other platforms it should not have any effect.
-rw-r--r-- | unix/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unix/Makefile.in b/unix/Makefile.in index f0a729f..b5ca879 100644 --- a/unix/Makefile.in +++ b/unix/Makefile.in @@ -1683,7 +1683,7 @@ Zzutil.o: $(ZLIB_DIR)/zutil.c #-------------------------------------------------------------------------- tclStubLib.o: $(GENERIC_DIR)/tclStubLib.c - $(CC) -c $(STUB_CC_SWITCHES) $(GENERIC_DIR)/tclStubLib.c + $(CC) -c $(STUB_CC_SWITCHES) -DSTATIC_BUILD $(GENERIC_DIR)/tclStubLib.c tclTomMathStubLib.o: $(GENERIC_DIR)/tclTomMathStubLib.c $(CC) -c $(STUB_CC_SWITCHES) $(GENERIC_DIR)/tclTomMathStubLib.c |