From 23e207a1c3bc108d6fe21562adc46c8ebd530425 Mon Sep 17 00:00:00 2001 From: Ward Fisher Date: Fri, 10 Jun 2022 15:03:36 -0600 Subject: [PATCH] Make plugin dir off by default for this release. --- CMakeLists.txt | 4 ++-- configure.ac | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1e46d33e99..b8c62a73b1 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1119,8 +1119,8 @@ ELSE() ENDIF() # If user wants, then install selected plugins (default on) -SET(PLUGIN_INSTALL_DIR "YES" CACHE STRING "Whether and where we should install plugins; defaults to yes") -SET(ENABLE_PLUGIN_INSTALL YES) +SET(PLUGIN_INSTALL_DIR "NO" CACHE STRING "Whether and where we should install plugins; defaults to yes") +SET(ENABLE_PLUGIN_INSTALL NO) IF(DEFINED PLUGIN_INSTALL_DIR) #OR DEFINED CACHE{PLUGIN_INSTALL_DIR} STRING(TOLOWER "${PLUGIN_INSTALL_DIR}" LCPID) IF(LCPID STREQUAL "no") diff --git a/configure.ac b/configure.ac index a8eb7314fe..1ed1325458 100644 --- a/configure.ac +++ b/configure.ac @@ -1894,7 +1894,7 @@ AC_SUBST(STD_FILTERS,[$std_filters]) AC_MSG_CHECKING([whether and where we should install plugins]) AC_ARG_WITH([plugin-dir], [AS_HELP_STRING([--with-plugin-dir=|no|--without-plugin-dir], [Install selected standard filters in specified or default directory])], - [],[with_plugin_dir=yes]) + [],[with_plugin_dir=no]) AC_MSG_RESULT([$with_plugin_dir]) if test "x$with_plugin_dir" = xno ; then # option missing|disabled with_plugin_dir=no