summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorhobbs <hobbs>2001-09-19 16:56:35 (GMT)
committerhobbs <hobbs>2001-09-19 16:56:35 (GMT)
commit7a08e6a048ef1aa7bd0d6b92ce2e9fe43995b580 (patch)
treeba88228243842720af35736194f538657202284a
parentf26e49122769de0558300ba54acf53660ad4d04c (diff)
downloadtcl-7a08e6a048ef1aa7bd0d6b92ce2e9fe43995b580.zip
tcl-7a08e6a048ef1aa7bd0d6b92ce2e9fe43995b580.tar.gz
tcl-7a08e6a048ef1aa7bd0d6b92ce2e9fe43995b580.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 2d4dd6a..501aaf5 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2001-09-19 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-18 Don Porter <dgp@users.sourceforge.net>
* unix/configure: Regen.
diff --git a/generic/tcl.h b/generic/tcl.h
index 9cc49d9..2c97c5c 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.70.2.5 2001/08/30 15:43:31 dgp Exp $
+ * RCS: @(#) $Id: tcl.h,v 1.70.2.6 2001/09/19 16:56:35 hobbs Exp $
*/
#ifndef _TCL
@@ -89,14 +89,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__ */
/*