summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorhobbs <hobbs>2001-09-17 21:32:30 (GMT)
committerhobbs <hobbs>2001-09-17 21:32:30 (GMT)
commit275c642769888f4581329c775bf97a57d93db979 (patch)
tree457d275f656bfb35b827a18d346025d41104c81c
parent856bbed23b5e86158505683ed42197b071ca506d (diff)
downloadtcl-275c642769888f4581329c775bf97a57d93db979.zip
tcl-275c642769888f4581329c775bf97a57d93db979.tar.gz
tcl-275c642769888f4581329c775bf97a57d93db979.tar.bz2
* generic/tcl.h: removed forced #define USE_TCLALLOC 1 for
Windows. This means the native system allocator will be used by default. This should be binary and source compatible with extensions, as Tcl_Alloc is a properly stubbed function.
-rw-r--r--ChangeLog7
-rw-r--r--generic/tcl.h10
2 files changed, 8 insertions, 9 deletions
diff --git a/ChangeLog b/ChangeLog
index c6da4ea..dfd9a7b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2001-09-17 Jeff Hobbs <jeffh@ActiveState.com>
+
+ * generic/tcl.h: removed forced #define USE_TCLALLOC 1 for
+ Windows. This means the native system allocator will be used by
+ default. This should be binary and source compatible with
+ extensions, as Tcl_Alloc is a properly stubbed function.
+
2001-09-17 Miguel Sofer <msofer@users.sourceforge.net>
* generic/tclExecute.c: corrected small bug in [Patch 456668] -
diff --git a/generic/tcl.h b/generic/tcl.h
index 6ce21fd..32b47c8 100644
--- a/generic/tcl.h
+++ b/generic/tcl.h
@@ -12,7 +12,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tcl.h,v 1.101 2001/09/09 22:45:13 davygrvy Exp $
+ * RCS: @(#) $Id: tcl.h,v 1.102 2001/09/17 21:32:30 hobbs Exp $
*/
#ifndef _TCL
@@ -91,14 +91,6 @@ extern "C" {
# define USE_PROTOTYPE 1
# endif
-/*
- * Under Windows we need to call Tcl_Alloc in all cases to avoid competing
- * C run-time library issues.
- */
-
-# ifndef USE_TCLALLOC
-# define USE_TCLALLOC 1
-# endif
#endif /* __WIN32__ */
/*