diff options
author | lucaderi <deri@ntop.org> | 2020-01-31 07:09:54 +0100 |
---|---|---|
committer | lucaderi <deri@ntop.org> | 2020-01-31 07:09:54 +0100 |
commit | 39b1ad3087471cc6f9e11ea52b903060e0189e72 (patch) | |
tree | 780f9da5da5e7f2850358cdce0876ab1d1ec2069 /configure.seed | |
parent | c68ea3067b86b0d3bb3215d80d48d655a30459bd (diff) |
PCRE fix
Diffstat (limited to 'configure.seed')
-rw-r--r-- | configure.seed | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.seed b/configure.seed index 215c56ee9..6cf9046d6 100644 --- a/configure.seed +++ b/configure.seed @@ -162,7 +162,7 @@ AM_CONDITIONAL([HAS_FUZZLDFLAGS], [test "x$has_sanitizefuzzer" = "xyes"]) AC_CHECK_LIB(pthread, pthread_setaffinity_np, AC_DEFINE_UNQUOTED(HAVE_PTHREAD_SETAFFINITY_NP, 1, [libc has pthread_setaffinity_np])) AC_CHECK_LIB(pcre, pcre_compile, AC_DEFINE_UNQUOTED(HAVE_PCRE, 1, [libpcre(-dev) is present])) -if ${ac_cv_lib_pcre_pcre_compile+:} false; then : +if test "x$ac_cv_lib_pcre_pcre_compile" = xyes; then : ADDITIONAL_LIBS=-lpcre fi |