diff options
Diffstat (limited to 'configure.seed')
-rw-r--r-- | configure.seed | 5 |
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 |