diff options
author | Diego Biurrun <diego@biurrun.de> | 2016-11-23 16:42:00 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2016-11-25 18:46:53 +0100 |
commit | e122b12c88487ac8766ff4eb071856b0666f0134 (patch) | |
tree | 86b90ad795786a71da458d74c0a5c35dcb615c16 /configure | |
parent | bf2f748fc74fff5272075e1fe1c07b4152421526 (diff) | |
download | ffmpeg-e122b12c88487ac8766ff4eb071856b0666f0134.tar.gz |
build: Drop gcrypt support
GnuTLS in combination with gcrypt has been deprecated since 2010.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 8 |
1 files changed, 2 insertions, 6 deletions
@@ -1700,7 +1700,6 @@ CONFIG_EXTRA=" flacdsp fmtconvert g722dsp - gcrypt gmp golomb gplv3 @@ -2387,7 +2386,7 @@ xcbgrab_indev_deps="libxcb" # protocols ffrtmpcrypt_protocol_deps="!librtmp_protocol" -ffrtmpcrypt_protocol_deps_any="gcrypt gmp openssl" +ffrtmpcrypt_protocol_deps_any="gmp openssl" ffrtmpcrypt_protocol_select="tcp_protocol" ffrtmphttp_protocol_deps="!librtmp_protocol" ffrtmphttp_protocol_select="http_protocol" @@ -4717,10 +4716,7 @@ enabled openssl && { { check_pkg_config openssl openssl/ssl.h OPENSSL_ check_lib openssl/ssl.h SSL_library_init -lssl -lcrypto -lws2_32 -lgdi32 || die "ERROR: openssl not found"; } -if enabled gnutls; then - { check_lib gmp.h mpz_export -lgmp && enable gmp; } || - { check_lib gcrypt.h gcry_mpi_new -lgcrypt && enable gcrypt; } -fi +enabled gnutls && check_lib gmp.h mpz_export -lgmp && enable gmp # libdc1394 check if enabled libdc1394; then |