diff options
author | Donald Sharp <sharpd@cumulusnetworks.com> | 2017-06-05 14:19:11 +0200 |
---|---|---|
committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2017-06-05 14:19:11 +0200 |
commit | 697629e190495f9da309d4afc510ff30af2a2d76 (patch) | |
tree | d4034be1175eb231d0271d9b0d06a3f69083f9fd /configure.ac | |
parent | Merge pull request #656 from qlyoung/fix-varhandler-reachable (diff) | |
parent | Merge pull request #665 from opensourcerouting/rpm-postun-fix (diff) | |
download | frr-697629e190495f9da309d4afc510ff30af2a2d76.tar.xz frr-697629e190495f9da309d4afc510ff30af2a2d76.zip |
Merge remote-tracking branch 'origin/stable/2.0'
Diffstat (limited to 'configure.ac')
-rwxr-xr-x | configure.ac | 5 |
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) |