[build] adjust help strings for pcre2 default

master
Glenn Strauss 1 year ago
parent 9fcb03b68f
commit e563ae0173

@ -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]
)

@ -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',

Loading…
Cancel
Save