diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2021-02-11 16:30:11 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2021-02-11 16:30:11 (GMT) |
commit | c1a56eb2d1e2e43e4b1e17aef5fd7f1a627db4e4 (patch) | |
tree | 9fe6e0af8ce7994448b335d0c375e04fda35c505 /unix/configure.ac | |
parent | dfd4a2e5c1a1e54b69e7317a2d71c09aa7cb42b9 (diff) | |
download | tcl-c1a56eb2d1e2e43e4b1e17aef5fd7f1a627db4e4.zip tcl-c1a56eb2d1e2e43e4b1e17aef5fd7f1a627db4e4.tar.gz tcl-c1a56eb2d1e2e43e4b1e17aef5fd7f1a627db4e4.tar.bz2 |
Experiment: Integrate culler's "macher" tool. Only for thin binaries
Diffstat (limited to 'unix/configure.ac')
-rw-r--r-- | unix/configure.ac | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/unix/configure.ac b/unix/configure.ac index edf5f6d..7c30667 100644 --- a/unix/configure.ac +++ b/unix/configure.ac @@ -878,7 +878,7 @@ AC_ARG_ENABLE(zipfs, AS_HELP_STRING([--enable-zipfs], [build with Zipfs support (default: on)]), [tcl_ok=$enableval], [tcl_ok=yes]) -if test "$tcl_ok" = "yes" -a "x$enable_framework" != "xyes"; then +if test "$tcl_ok" = "yes"; then # # Find a native compiler # @@ -887,11 +887,11 @@ if test "$tcl_ok" = "yes" -a "x$enable_framework" != "xyes"; then # Find a native zip implementation # SC_ZIPFS_SUPPORT - ZIPFS_BUILD=1 - TCL_ZIP_FILE=libtcl${TCL_MAJOR_VERSION}.${TCL_MINOR_VERSION}${TCL_PATCH_LEVEL}.zip + ZIPFS_BUILD=1 + TCL_ZIP_FILE=libtcl${TCL_MAJOR_VERSION}.${TCL_MINOR_VERSION}${TCL_PATCH_LEVEL}.zip else - ZIPFS_BUILD=0 - TCL_ZIP_FILE= + ZIPFS_BUILD=0 + TCL_ZIP_FILE= fi # Do checking message here to not mess up interleaved configure output AC_MSG_CHECKING([for building with zipfs]) |