aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xconfigure8
-rw-r--r--configure.ac8
-rw-r--r--glob.tcl1
3 files changed, 6 insertions, 11 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
diff --git a/configure.ac b/configure.ac
index b6bb4ff..f4eeb53 100644
--- a/configure.ac
+++ b/configure.ac
@@ -21,14 +21,12 @@ AC_ARG_ENABLE(fork,
)
AC_SUBST(JIM_NOFORK,$JIM_NOFORK)
-jim_extensions=
+jim_extensions="package readdir glob array clock exec file posix regexp signal tcl6 aio bio eventloop syslog"
AC_ARG_WITH(jim-ext,
- [ --with-jim-ext Specify jim extensions to build (or all)],
+ [ --with-jim-ext Specify jim extensions to build (or all, which is the default)],
[
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
diff --git a/glob.tcl b/glob.tcl
index 02da2c3..9eb37d0 100644
--- a/glob.tcl
+++ b/glob.tcl
@@ -33,7 +33,6 @@
# official policies, either expressed or implied, of the Jim Tcl Project.
package provide glob
-package require readdir
# If $dir is a directory, return a list of all entries
# it contains which match $pattern