summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorDonald Sharp <sharpd@cumulusnetworks.com>2017-06-05 14:19:11 +0200
committerDonald Sharp <sharpd@cumulusnetworks.com>2017-06-05 14:19:11 +0200
commit697629e190495f9da309d4afc510ff30af2a2d76 (patch)
treed4034be1175eb231d0271d9b0d06a3f69083f9fd /configure.ac
parentMerge pull request #656 from qlyoung/fix-varhandler-reachable (diff)
parentMerge pull request #665 from opensourcerouting/rpm-postun-fix (diff)
downloadfrr-697629e190495f9da309d4afc510ff30af2a2d76.tar.xz
frr-697629e190495f9da309d4afc510ff30af2a2d76.zip
Merge remote-tracking branch 'origin/stable/2.0'
Diffstat (limited to 'configure.ac')
-rwxr-xr-xconfigure.ac5
1 files changed, 3 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index 5e4cfce16..952ec4047 100755
--- a/configure.ac
+++ b/configure.ac
@@ -1412,8 +1412,9 @@ dnl ---------------------------
dnl check system has PCRE regexp
dnl ---------------------------
if test "x$enable_pcreposix" = "xyes"; then
- AC_CHECK_LIB(pcreposix, pcreposix_regexec, ,[enable_pcreposix=no
- AC_MSG_WARN([*** falling back to other regex library ***]) ])
+ AC_CHECK_LIB(pcreposix, regexec, [], [
+ AC_MSG_ERROR([--enable-pcreposix given but unable to find libpcreposix])
+ ])
fi
AC_SUBST(HAVE_LIBPCREPOSIX)