diff options
Diffstat (limited to 'ext')
-rw-r--r-- | ext/standard/config.m4 | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/standard/config.m4 b/ext/standard/config.m4 index cde845c2e8..ce9a4682ef 100644 --- a/ext/standard/config.m4 +++ b/ext/standard/config.m4 @@ -127,12 +127,12 @@ AC_ARG_WITH(system-regex, [ --with-system-regex Do not use the bundled regex library], [ if test "$withval" = "no"; then - HSREGEX=yes + WANT_HSREGEX=yes else - HSREGEX=no - fi + WANT_HSREGEX=no + fi ],[ - HSREGEX=yes + WANT_HSREGEX=yes ]) AC_CRYPT_CAP |