summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authormdejong <mdejong>2003-07-16 19:34:14 (GMT)
committermdejong <mdejong>2003-07-16 19:34:14 (GMT)
commit807f03b48dcdb08f9acb0493b804a5b41d5bf7a0 (patch)
tree3b1898f02612bda19ba1bfd4a82f766277b976d5 /ChangeLog
parentedcb9d3655e60d05d4774eef38d89620d0a0e6a1 (diff)
downloadtcl-807f03b48dcdb08f9acb0493b804a5b41d5bf7a0.zip
tcl-807f03b48dcdb08f9acb0493b804a5b41d5bf7a0.tar.gz
tcl-807f03b48dcdb08f9acb0493b804a5b41d5bf7a0.tar.bz2
* win/Makefile.in: Don't define TCL_DBGX
symbol for every compile. Instead, define TCL_PIPE_DLL only when compiling tclWinPipe.c. This will break other build systems, so they will need to remove the TCL_DBGX define and replace it with a define for TCL_PIPE_DLL. * win/makefile.vc: Ditto. * win/tclWinPipe.c (TclpCreateProcess): Remove PREFIX_IDENT and DEBUG_IDENT from top of file. Use TCL_PIPE_DLL passed in from build env instead of trying to construct the dll name from already defined symbols. This approach is more flexible and better in the long run.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog17
1 files changed, 17 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index bbd888a..800da69 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,20 @@
+2003-07-16 Mo DeJong <mdejong@users.sourceforge.net>
+
+ * win/Makefile.in: Don't define TCL_DBGX
+ symbol for every compile. Instead, define
+ TCL_PIPE_DLL only when compiling tclWinPipe.c.
+ This will break other build systems, so
+ they will need to remove the TCL_DBGX define
+ and replace it with a define for TCL_PIPE_DLL.
+ * win/makefile.vc: Ditto.
+ * win/tclWinPipe.c (TclpCreateProcess):
+ Remove PREFIX_IDENT and DEBUG_IDENT from
+ top of file. Use TCL_PIPE_DLL passed in
+ from build env instead of trying to construct
+ the dll name from already defined symbols.
+ This approach is more flexible and better
+ in the long run.
+
2003-07-16 Don Porter <dgp@users.sourceforge.net>
* generic/tclFileName.c (Tcl_GlobObjCmd): [Bug 771840]