]> granicus.if.org Git - mutt/commitdiff
Rename --with-regex to --with-bundled-regex.
authorKevin McCarthy <kevin@8t8.us>
Tue, 28 May 2019 02:45:58 +0000 (19:45 -0700)
committerKevin McCarthy <kevin@8t8.us>
Tue, 28 May 2019 02:45:58 +0000 (19:45 -0700)
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.

configure.ac

index fc1aca6c8461ba66507497d2e27ed4d27d80086f..397cec9c5be1b52e0ba00e3c1248b03c22f353e6 100644 (file)
@@ -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)])