diff options
-rw-r--r-- | configure.in | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/configure.in b/configure.in index dd4c1882..cdd9f2f8 100644 --- a/configure.in +++ b/configure.in @@ -51,6 +51,7 @@ AC_CACHE_CHECK( if [test x$libgmp_avail = xtrue ]; then AM_CONDITIONAL(HAVE_GMP, true) + LIBS="-lgmp $LIBS" else AC_MSG_FAILURE("Could not find gmp library (set CPPFLAGS and LDFLAGS?)") fi @@ -72,6 +73,7 @@ AC_CACHE_CHECK( if [test x$libpcre_avail = xtrue ]; then AM_CONDITIONAL(HAVE_PCRE, true) + LIBS="-lpcre $LIBS" else AC_MSG_FAILURE("Could not find pcre library (set CPPFLAGS and LDFLAGS?)") fi |