diff options
author | John Wiegley <johnw@newartisans.com> | 2008-08-05 09:35:22 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2008-08-05 09:35:22 -0400 |
commit | fd540c28fc2df6186d8c1af0c20b11bcb51e71a9 (patch) | |
tree | c6b21a27d5fcf6dc16279fd981245c16b3de8f37 | |
parent | 6d4bbe97dbd2456234e995c2bbf991073d863d4b (diff) | |
download | ledger-fd540c28fc2df6186d8c1af0c20b11bcb51e71a9.tar.gz ledger-fd540c28fc2df6186d8c1af0c20b11bcb51e71a9.tar.bz2 ledger-fd540c28fc2df6186d8c1af0c20b11bcb51e71a9.zip |
Removed check for libpcre from configure.ac, since Boost.Regex is being used.
-rw-r--r-- | configure.ac | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/configure.ac b/configure.ac index 97654273..9ddd8e68 100644 --- a/configure.ac +++ b/configure.ac @@ -106,28 +106,6 @@ else AC_MSG_FAILURE("Could not find gmp library (set CPPFLAGS and LDFLAGS?)") fi -# check for pcre -AC_CACHE_CHECK( - [if libpcre is available], - [libpcre_avail_cv_], - [libpcre_save_libs=$LIBS - LIBS="-lpcre $LIBS" - AC_LANG_PUSH(C++) - AC_TRY_LINK( - [#include <pcre.h>], - [pcre_free((pcre *)NULL);], - [libpcre_avail_cv_=true], - [libpcre_avail_cv_=false]) - AC_LANG_POP - LIBS=$libpcre_save_libs]) - -if [test x$libpcre_avail_cv_ = xtrue ]; then - AM_CONDITIONAL(HAVE_PCRE, true) - LIBS="-lpcre $LIBS" -else - AC_MSG_FAILURE("Could not find pcre library (set CPPFLAGS and LDFLAGS?)") -fi - # check for expat or xmlparse AC_ARG_ENABLE(xml, [ --enable-xml Turn on support for XML parsing], |