summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--configure.ac4
-rw-r--r--meson_options.txt4
2 files changed, 4 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac
index dc4bfc02..a05b8115 100644
--- a/configure.ac
+++ b/configure.ac
@@ -911,7 +911,7 @@ dnl pcre support
AC_MSG_NOTICE([----------------------------------------])
AC_MSG_CHECKING([for perl regular expressions support])
AC_ARG_WITH([pcre],
- [AS_HELP_STRING([--with-pcre], [Enable pcre support (default yes)])],
+ [AS_HELP_STRING([--with-pcre], [Enable pcre support (default no)])],
[WITH_PCRE=$withval],
[WITH_PCRE=no]
)
@@ -921,7 +921,7 @@ dnl pcre2 support
AC_MSG_NOTICE([----------------------------------------])
AC_MSG_CHECKING([for perl regular expressions support])
AC_ARG_WITH([pcre2],
- [AS_HELP_STRING([--with-pcre2], [Enable pcre2 support (default no)])],
+ [AS_HELP_STRING([--with-pcre2], [Enable pcre2 support (default yes)])],
[WITH_PCRE2=$withval],
[WITH_PCRE2=yes]
)
diff --git a/meson_options.txt b/meson_options.txt
index fbc12246..2ad97c0a 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -86,12 +86,12 @@ option('with_pam',
option('with_pcre2',
type: 'boolean',
value: true,
- description: 'with regex support [default: off]',
+ description: 'with regex support [default: on]',
)
option('with_pcre',
type: 'boolean',
value: false,
- description: 'with regex support [default: on]',
+ description: 'with regex support [default: off]',
)
option('with_pgsql',
type: 'boolean',