summaryrefslogtreecommitdiffabout
path: root/acinclude.m4
authorMichael Krelin <hacker@klever.net>2007-05-29 10:40:59 (UTC)
committer Michael Krelin <hacker@klever.net>2007-05-29 10:40:59 (UTC)
commitbd27af85ae505a64cde56ab78b244505b4737cf0 (patch) (side-by-side diff)
tree7a4cd81755e9c47f76ece47a56467115881286c0 /acinclude.m4
parentd378d62c7897e9b1b5143f1dffaa2cb59d2053da (diff)
downloadlibopkele-bd27af85ae505a64cde56ab78b244505b4737cf0.zip
libopkele-bd27af85ae505a64cde56ab78b244505b4737cf0.tar.gz
libopkele-bd27af85ae505a64cde56ab78b244505b4737cf0.tar.bz2
changed 'invalid' --with-pcre++ to --with-pcrepp in configure
Diffstat (limited to 'acinclude.m4') (more/less context) (ignore whitespace changes)
-rw-r--r--acinclude.m44
1 files changed, 2 insertions, 2 deletions
diff --git a/acinclude.m4 b/acinclude.m4
index 9c9f945..349d3cf 100644
--- a/acinclude.m4
+++ b/acinclude.m4
@@ -152,26 +152,26 @@ dnl PCREPP_VERSION PCREPP_CFLAGS PCREPP_LIBS
dnl AM_CONDITIONAL: HAVE_PCREPP
dnl AC_DEFINE: HAVE_PCREPP PCREPP_VERSION
AC_DEFUN([AC_WITH_PCREPP],[
HAVE_PCREPP="no"
PCREPP_CONFIG=""
PCREPP_PREFIX=""
PCREPP_EXEC_PREFIX=""
PCREPP_VERSION=""
PCREPP_CFLAGS=""
PCREPP_LIBS=""
PCREPP_LOCATIONS="${PATH}:/usr/local/bin:/usr/bin"
test -z "$WANT_PCREPP" && WANT_PCREPP=""
- AC_ARG_WITH([pcre++],
- AC_HELP_STRING([--with-pcre++=location],[Look for pcre++ in specified locations]),
+ AC_ARG_WITH([pcrepp],
+ AC_HELP_STRING([--with-pcrepp=location],[Look for pcre++ in specified locations]),
[
if test "${withval}" = "no" ; then
WANT_PCREPP="no"
else
if test -x "${withval}" ; then
PCREPP_CONFIG="${withval}"
elif test -x "${withval}/pcre++-config" ; then
PCREPP_CONFIG="${withval}/pcre++-config"
elif test -x "${withval}/bin/pcre++-config" ; then
PCREPP_CONFIG="${withval}/bin/pcre++-config"
fi
fi