From: Kevin McCarthy Date: Tue, 28 May 2019 02:45:58 +0000 (-0700) Subject: Rename --with-regex to --with-bundled-regex. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b4b47e1c26bf4ee34516a6b40ad665f089061989;p=mutt Rename --with-regex to --with-bundled-regex. This makes the configuration option purpose clearer. Previously, some distros enabled the option thinking it turned on a "regex" option that should be enabled. Closes #89. --- diff --git a/configure.ac b/configure.ac index fc1aca6c..397cec9c 100644 --- a/configure.ac +++ b/configure.ac @@ -459,7 +459,8 @@ AC_CHECK_FUNCS(clock_gettime) dnl AIX may not have fchdir() AC_CHECK_FUNCS(fchdir, , [mutt_cv_fchdir=no]) -AC_ARG_WITH(regex, AS_HELP_STRING([--with-regex],[Use the GNU regex library]), +AC_ARG_WITH(bundled-regex, + AS_HELP_STRING([--with-bundled-regex],[Use the bundled GNU regex library]), [mutt_cv_regex=yes], [AC_CHECK_FUNCS(regcomp, mutt_cv_regex=no, mutt_cv_regex=yes)])