Author: pfg
Date: Fri May 18 18:19:44 2012
New Revision: 1340201
URL: http://svn.apache.org/viewvc?rev=1340201&view=rev
Log:
Disable binfilter by default: add new option --enable-binfilter for those
interested.
Modified:
incubator/ooo/trunk/main/configure.in
Modified: incubator/ooo/trunk/main/configure.in
URL:
http://svn.apache.org/viewvc/incubator/ooo/trunk/main/configure.in?rev=1340201&r1=1340200&r2=1340201&view=diff
==============================================================================
--- incubator/ooo/trunk/main/configure.in (original)
+++ incubator/ooo/trunk/main/configure.in Fri May 18 18:19:44 2012
@@ -307,8 +307,8 @@ AC_ARG_ENABLE(kde4,
if you want to support both KDE3 and KDE4.
],,)
AC_ARG_ENABLE(binfilter,
-[ --disable-binfilter Disable legacy binary file formats filters
-],,if ! test -d ./binfilter; then enable_binfilter=no; fi)
+[ --enable-binfilter Enable legacy binary file formats filters
+],,)
AC_ARG_ENABLE(rpath,
[ --disable-rpath Disable the use of relative paths in shared
libraries
],,)
@@ -1433,13 +1433,13 @@ dnl ====================================
dnl Disable legacy binary file formats filters
dnl ===================================================================
AC_MSG_CHECKING([whether to enable filters for legacy binary file formats
(StarOffice 5.2)])
-if test "$enable_binfilter" = "no"; then
- WITH_BINFILTER="NO"
- AC_MSG_RESULT([no])
-else
+if test "$enable_binfilter" = "yes"; then
WITH_BINFILTER="YES"
BUILD_TYPE="$BUILD_TYPE BINFILTER"
AC_MSG_RESULT([yes])
+else
+ WITH_BINFILTER="NO"
+ AC_MSG_RESULT([no])
fi
AC_SUBST(WITH_BINFILTER)