aboutsummaryrefslogtreecommitdiff
path: root/configure.seed
diff options
context:
space:
mode:
authorlucaderi <deri@ntop.org>2020-01-31 07:09:54 +0100
committerlucaderi <deri@ntop.org>2020-01-31 07:09:54 +0100
commit39b1ad3087471cc6f9e11ea52b903060e0189e72 (patch)
tree780f9da5da5e7f2850358cdce0876ab1d1ec2069 /configure.seed
parentc68ea3067b86b0d3bb3215d80d48d655a30459bd (diff)
PCRE fix
Diffstat (limited to 'configure.seed')
-rw-r--r--configure.seed2
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