diff options
author | Luca Deri <lucaderi@users.noreply.github.com> | 2020-08-22 16:30:29 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-22 16:30:29 +0200 |
commit | 519ba7a9d5d97c7bcc2c4270617b8d11afc45d8e (patch) | |
tree | 86d33ea644de44046f487ed3e60534ddd9f11890 /configure.seed | |
parent | fef199ad450d451d88d143d395dfcfd7906deefc (diff) | |
parent | b23cfd6b8444ec44dcc1b349ed0ee0659df8447d (diff) |
Merge pull request #989 from IvanNardi/quic
Improve QUIC detection
Diffstat (limited to 'configure.seed')
-rw-r--r-- | configure.seed | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/configure.seed b/configure.seed index ecde0579b..aed5c3529 100644 --- a/configure.seed +++ b/configure.seed @@ -169,6 +169,12 @@ 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_ARG_ENABLE([gcrypt], + [AS_HELP_STRING([--disable-gcrypt], [Avoid compiling with libgcrypt/libgpg-error, even if they are present. QUIC sub-classification may be missing])], + [:], + [AC_CHECK_LIB(gcrypt, gcry_cipher_checktag) + AC_CHECK_LIB(gpg-error, gpg_strerror_r)]) + dnl> PCRE AC_ARG_WITH(pcre, [ --with-pcre Enable nDPI build with libpcre]) if test "${with_pcre+set}" = set; then : |