diff options
author | Steve Slaven <bpk@hoopajoo.net> | 2019-11-06 06:20:45 (GMT) |
---|---|---|
committer | Steve Slaven <bpk@hoopajoo.net> | 2019-11-06 06:20:45 (GMT) |
commit | 41433b803c5f9c8f6cd0f74890296314d354f840 (patch) | |
tree | 5b7debaf9431db031cc6fab6320a08508001a381 | |
parent | c65ce8cc98ea707f6a0f44299f6b3e84e04d9b30 (diff) | |
download | powwow-41433b803c5f9c8f6cd0f74890296314d354f840.zip powwow-41433b803c5f9c8f6cd0f74890296314d354f840.tar.gz powwow-41433b803c5f9c8f6cd0f74890296314d354f840.tar.bz2 |
Add a list of options for --enable-regex
-rw-r--r-- | configure.ac | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index a27f2df..9e019dd 100644 --- a/configure.ac +++ b/configure.ac @@ -14,8 +14,13 @@ AS_IF([ test "${enable_vt100}" = yes ], [ AC_DEFINE(USE_VT100) ]) AC_ARG_ENABLE(regex, - AS_HELP_STRING([--enable-regex], - [Enable regular expressions [[default=yes]]]), + + AS_HELP_STRING([--enable-regex], + [Enable regular expressions [[default=yes]]]) + [] + [yes - find first available: pcreposix, libc] + [pcreposix - use pcreposix] + [libc - use libc] , [enable_regex="yes"] ) |