summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordas <das>2006-04-06 09:25:49 (GMT)
committerdas <das>2006-04-06 09:25:49 (GMT)
commitc54f629fe910f3fffe7ea4d9e0b39d3fb630f7f4 (patch)
tree3ac8babae44d4c4344f5ffb6d3bbe8d9b9cd88e6
parentfb3a8d4fb48ee70e19e91c2509c31621f89dec1f (diff)
downloadtcl-c54f629fe910f3fffe7ea4d9e0b39d3fb630f7f4.zip
tcl-c54f629fe910f3fffe7ea4d9e0b39d3fb630f7f4.tar.gz
tcl-c54f629fe910f3fffe7ea4d9e0b39d3fb630f7f4.tar.bz2
* unix/tcl.m4: removed TCL_IO_TRACK_OS_FOR_DRIVER_WITH_BAD_BLOCKING
define on Darwin. [Bug 1457515] * unix/configure: autoconf-2.59 * unix/tclConfig.h.in: autoheader-2.59
-rw-r--r--ChangeLog9
-rwxr-xr-xunix/configure5
-rw-r--r--unix/tcl.m42
-rw-r--r--unix/tclConfig.h.in4
4 files changed, 8 insertions, 12 deletions
diff --git a/ChangeLog b/ChangeLog
index 2d2a69b..99bcef9 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2006-04-06 Daniel Steffen <das@users.sourceforge.net>
+
+ * unix/tcl.m4: removed TCL_IO_TRACK_OS_FOR_DRIVER_WITH_BAD_BLOCKING
+ define on Darwin. [Bug 1457515]
+ * unix/configure: autoconf-2.59
+ * unix/tclConfig.h.in: autoheader-2.59
+
2006-04-05 Don Porter <dgp@users.sourceforge.net>
* win/tclWinInit.c: More careful calls to Tcl_DStringSetLength()
@@ -20,7 +27,7 @@
2006-04-03 Andreas Kupries <andreask@activestate.com>
- * generic/tclIO.c (ReadChars): Added check, panic and commentary to
+ * generic/tclIO.c (ReadChars): Added check, panic and commentary to a
piece of code which relies on BUFFER_PADDING to create enough space at
the beginning of each buffer for the insertion of partial multibyte
data at the beginning of a buffer. Commentary explains why this code
diff --git a/unix/configure b/unix/configure
index 81a323c..4febb3e 100755
--- a/unix/configure
+++ b/unix/configure
@@ -7948,11 +7948,6 @@ cat >>confdefs.h <<\_ACEOF
#define TCL_LOAD_FROM_MEMORY 1
_ACEOF
-
-cat >>confdefs.h <<\_ACEOF
-#define TCL_IO_TRACK_OS_FOR_DRIVER_WITH_BAD_BLOCKING 1
-_ACEOF
-
# prior to Darwin 7, realpath is not threadsafe, so don't
# use it when threads are enabled, c.f. bug # 711232:
echo "$as_me:$LINENO: checking for realpath" >&5
diff --git a/unix/tcl.m4 b/unix/tcl.m4
index 884dc4e..f55be99 100644
--- a/unix/tcl.m4
+++ b/unix/tcl.m4
@@ -1629,8 +1629,6 @@ dnl AC_CHECK_TOOL(AR, ar)
[Are we to override what our default encoding is?])
AC_DEFINE(MODULE_SCOPE, __private_extern__, [Linker support for module scope symbols])
AC_DEFINE(TCL_LOAD_FROM_MEMORY, 1, [Can this platform load code from memory?])
- AC_DEFINE(TCL_IO_TRACK_OS_FOR_DRIVER_WITH_BAD_BLOCKING, 1,
- [Use better emulation of non-blocking channels for channels without BlockModeProc?])
# prior to Darwin 7, realpath is not threadsafe, so don't
# use it when threads are enabled, c.f. bug # 711232:
AC_CHECK_FUNC(realpath)
diff --git a/unix/tclConfig.h.in b/unix/tclConfig.h.in
index 91a5bb4..348dedb 100644
--- a/unix/tclConfig.h.in
+++ b/unix/tclConfig.h.in
@@ -289,10 +289,6 @@
/* Is Tcl built as a framework? */
#undef TCL_FRAMEWORK
-/* Use better emulation of non-blocking channels for channels without
- BlockModeProc? */
-#undef TCL_IO_TRACK_OS_FOR_DRIVER_WITH_BAD_BLOCKING
-
/* Can this platform load code from memory? */
#undef TCL_LOAD_FROM_MEMORY