From b9f6bb9c0e45febc156d14ae84eed0b4c7822d8f Mon Sep 17 00:00:00 2001 From: Andy Wingo Date: Sun, 23 Dec 2001 16:51:07 +0000 Subject: [PATCH] no plugins builds by default Original commit message from CVS: no plugins builds by default --- configure.ac | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/configure.ac b/configure.ac index 159cb4f..27c78b8 100644 --- a/configure.ac +++ b/configure.ac @@ -681,13 +681,13 @@ dnl ###################################################################### dnl # Check command line parameters, and set shell variables accordingly # dnl ###################################################################### -AC_ARG_ENABLE(plugins, AC_HELP_STRING([--enable-plugins],[enable plugin building]), +AC_ARG_ENABLE(plugins, AC_HELP_STRING([--disable-plugins],[enable plugin building]), [case "${enableval}" in - yes) BUILD_PLUGINS=yes ;; - no) BUILD_PLUGINS=no ;; + yes) BUILD_PLUGINS=no ;; + no) BUILD_PLUGINS=yes ;; *) AC_MSG_ERROR(bad value ${enableval} for --disable-plugins) ;; esac], -[BUILD_PLUGINS=yes]) +[BUILD_PLUGINS=no]) AM_CONDITIONAL(BUILD_PLUGINS, test $BUILD_PLUGINS = "yes") AC_ARG_ENABLE(libmmx, -- 2.7.4