aboutsummaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorSteve Bennett <steveb@workware.net.au>2010-01-24 11:03:37 +1000
committerSteve Bennett <steveb@workware.net.au>2010-10-15 11:02:40 +1000
commit70a893dae1daa29a05cb00e17632312a663143c7 (patch)
tree5ca692c1b10c55258134efd4560a32a91b490134 /configure
parente448f2f3a3cd6b95b22de3cc87a2d22144da0ed1 (diff)
downloadjimtcl-70a893dae1daa29a05cb00e17632312a663143c7.zip
jimtcl-70a893dae1daa29a05cb00e17632312a663143c7.tar.gz
jimtcl-70a893dae1daa29a05cb00e17632312a663143c7.tar.bz2
Build improvements
Add bio to list of default jim packages *: And include all extensions by default Don't bother to require readdir in glob ------------------------------------------------------------------------
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure8
1 files changed, 3 insertions, 5 deletions
diff --git a/configure b/configure
index ff19821..53d0cb5 100755
--- a/configure
+++ b/configure
@@ -1293,7 +1293,7 @@ Optional Features:
Optional Packages:
--with-PACKAGE[=ARG] use PACKAGE [ARG=yes]
--without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no)
- --with-jim-ext Specify jim extensions to build (or all)
+ --with-jim-ext Specify jim extensions to build (or all, which is the default)
Some influential environment variables:
CC C compiler command
@@ -2732,15 +2732,13 @@ fi
JIM_NOFORK=$JIM_NOFORK
-jim_extensions=
+jim_extensions="package readdir glob array clock exec file posix regexp signal tcl6 aio bio eventloop syslog"
# Check whether --with-jim-ext was given.
if test "${with_jim_ext+set}" = set; then
withval=$with_jim_ext;
if test "x$withval" != "xno" ; then
- if test "x$withval" = "xall" ; then
- jim_extensions="package readdir glob array clock exec file posix regexp signal tcl6 eventloop aio syslog"
- else
+ if test "x$withval" != "xall" ; then
jim_extensions="$withval"
fi
fi