ossp-pkg/js/configure.ac 1.12 -> 1.13
--- configure.ac 2006/07/23 10:52:12 1.12
+++ configure.ac 2006/07/23 18:34:15 1.13
@@ -119,12 +119,12 @@
CLI_LIBS="$CLI_LIBS `$PERL -MExtUtils::Embed -e ldopts`"
fi
-dnl # configure option --with-file
+dnl # configure option --without-file
AC_ARG_WITH([file],
- AS_HELP_STRING([--with-file], [build with File object (grants access to the filesystem)]),
- [ac_cv_with_file=$withval], [ac_cv_with_file=no])
-AC_CACHE_CHECK([whether to build with the File object], [ac_cv_with_file], [ac_cv_with_file=no])
-if test ".$ac_cv_with_file" != ".no"; then
+ AS_HELP_STRING([--without-file], [build without File object (grants access to the filesystem)]),
+ [ac_cv_with_file=$withval], [ac_cv_with_file=yes])
+AC_CACHE_CHECK([whether to build with the File object], [ac_cv_with_file], [ac_cv_with_file=yes])
+if test ".$ac_cv_with_file" = ".yes"; then
CPPFLAGS="$CPPFLAGS -DJS_HAS_FILE_OBJECT"
fi
|
|