aboutsummaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorSteve Bennett <steveb@workware.net.au>2010-11-15 11:24:31 +1000
committerSteve Bennett <steveb@workware.net.au>2010-11-24 09:40:45 +1000
commit96466972c70a61becc8c332d0b991038ab7028f1 (patch)
tree9dcead1ec018bb47361ac9a1781af499ab9c804f /configure
parent373b721510fd2d0754a41cc70a3b7cfd02e929bd (diff)
downloadjimtcl-96466972c70a61becc8c332d0b991038ab7028f1.zip
jimtcl-96466972c70a61becc8c332d0b991038ab7028f1.tar.gz
jimtcl-96466972c70a61becc8c332d0b991038ab7028f1.tar.bz2
Remove the bio extension and add 'copyto' to aio.
The bio extension is a hangover from TinyTcl. Since Jim supports binary strings, there isn't much need for it except for 'bio copy'. So move this to aio as 'copyto' and implement 'file copy' in terms of it. Signed-off-by: Steve Bennett <steveb@workware.net.au>
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure5
1 files changed, 2 insertions, 3 deletions
diff --git a/configure b/configure
index 9e58208..dc26874 100755
--- a/configure
+++ b/configure
@@ -1353,7 +1353,6 @@ Optional Packages:
These are disabled by default:
- bio - Binary I/O, mostly for bio copy/file copy
nvp - Name-value pairs C-only API
tree - Similar to tcllib ::struct::tree using references
readline - Interface to libreadline
@@ -3675,12 +3674,12 @@ in_list()
# Tcl extensions
ext_tcl="stdlib glob tclcompat tree rlprompt"
# C extensions
-ext_c="load package readdir array clock exec file posix regexp signal aio bio eventloop syslog nvp readline sqlite sqlite3 win32"
+ext_c="load package readdir array clock exec file posix regexp signal aio eventloop syslog nvp readline sqlite sqlite3 win32"
# Tcl extensions which can be modules
ext_tcl_mod="glob tree rlprompt"
# C extensions which can be modules
-ext_c_mod="readdir array clock file posix regexp bio syslog readline sqlite sqlite3 win32"
+ext_c_mod="readdir array clock file posix regexp syslog readline sqlite sqlite3 win32"
# All extensions
ext_all="$ext_c $ext_tcl"