aboutsummaryrefslogtreecommitdiff
path: root/configure.seed
diff options
context:
space:
mode:
authorZied Aouini <aouinizied@gmail.com>2021-09-22 12:10:52 +0200
committerGitHub <noreply@github.com>2021-09-22 12:10:52 +0200
commit0994771974d686aa5395c5ba0fe71acef0d62e9d (patch)
treec86c95df6bd80ac0bfe16cbc8ecc88bcf4fe959c /configure.seed
parent9717afb2dafdfec24e5431c70eb506d392bf1ef2 (diff)
Improve CI (#1303)
* Improve CI pipeline * Fix branch name. * Fix branch name. * Fix libgcrypt configuration. * Update build.yml * Move to Github Actions instead of Travis CI. * Fix mingw on ubuntu bionic. * Reactivate cross compile on Ubuntu Bionic. * Switch to single line steps. * Add several compilers versions * Minor fix. * Fix build all and delete cxx * Fix RCE detection. * Fix PCRE configuration. * Add condition on PCRE test pcap. * Update WebattackRCE.pcap.out * Add missing SUBST. * Delete WebattackRCE.pcap.out * Update WebAttackRCE result. * Fix typo. * Extend jobs with pcre+msan+maxminddb. * Fix code inpector warnings. * Delete .appveyor.yml
Diffstat (limited to 'configure.seed')
-rw-r--r--configure.seed5
1 files changed, 4 insertions, 1 deletions
diff --git a/configure.seed b/configure.seed
index 5c51a1d8e..3eb0736ac 100644
--- a/configure.seed
+++ b/configure.seed
@@ -157,7 +157,7 @@ case "$host" in
;;
esac
CFLAGS="${CFLAGS}"
- LDFLAGS="${LDFLAGS} -lws2_32 -lucrtbase"
+ LDFLAGS="${LDFLAGS} -lws2_32"
BUILD_MINGW=1
;;
*)
@@ -238,11 +238,13 @@ AS_IF([test "x$enable_gcrypt" = "xyes"], [
])
dnl> PCRE
+PCRE_ENABLED=0
AC_ARG_WITH(pcre, [ --with-pcre Enable nDPI build with libpcre])
if test "${with_pcre+set}" = set; then :
AC_CHECK_LIB(pcre, pcre_compile, AC_DEFINE_UNQUOTED(HAVE_PCRE, 1, [libpcre(-dev) is present]))
if test "x$ac_cv_lib_pcre_pcre_compile" = xyes; then :
ADDITIONAL_LIBS="${ADDITIONAL_LIBS} -lpcre"
+ PCRE_ENABLED=1
fi
fi
@@ -280,5 +282,6 @@ AC_SUBST(BUILD_FUZZTARGETS)
AC_SUBST(JSONC_CFLAGS)
AC_SUBST(JSONC_LIBS)
AC_SUBST(GCRYPT_ENABLED)
+AC_SUBST(PCRE_ENABLED)
AC_SUBST(GNU_PREFIX)
AC_OUTPUT