diff options
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/configure.in b/configure.in index de6727a7af58..3655b2fe40b6 100644 --- a/configure.in +++ b/configure.in @@ -272,8 +272,8 @@ AC_ARG_ENABLE(kde4, if you want to support both KDE3 and KDE4. ],,) AC_ARG_ENABLE(binfilter, -[ --enable-binfilter Enable legacy binary file formats filters -],,) +[ --disable-binfilter Disable legacy binary file formats filters +],,if ! test -d ./binfilter; then enable_binfilter=no; fi) AC_ARG_ENABLE(rpath, [ --disable-rpath Disable the use of relative paths in shared libraries ],,) @@ -1299,13 +1299,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" = "yes"; then +if test "$enable_binfilter" = "no"; then + WITH_BINFILTER="NO" + AC_MSG_RESULT([no]) +else 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) |