[ffmpeg] fix openssl detection (#9695)

This commit is contained in:
Alexander Neumann 2020-01-16 20:23:49 +01:00 committed by nicole mazzuca
parent 526f937580
commit 529edbb3a4
2 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,7 @@ index 1c8008a..bd2de34 100755
check_lib openssl openssl/ssl.h SSL_library_init -lssl32 -leay32 ||
check_lib openssl openssl/ssl.h SSL_library_init -lssl -lcrypto -lws2_32 -lgdi32 ||
- die "ERROR: openssl not found"; }
+ check_lib openssl openssl/ssl.h SSL_library_init -llibeay32 -lssleay32 ||
+ check_lib openssl openssl/ssl.h OPENSSL_init_ssl -llibssl -llibcrypto -lws2_32 -lgdi32 -lcrypt32 ||
+ die "ERROR: openssl not found"; }
enabled pocketsphinx && require_pkg_config pocketsphinx pocketsphinx pocketsphinx/pocketsphinx.h ps_init
enabled rkmpp && { require_pkg_config rkmpp rockchip_mpp rockchip/rk_mpi.h mpp_create &&

View File

@ -1,5 +1,5 @@
Source: ffmpeg
Version: 4.2-2
Version: 4.2-3
Build-Depends: zlib
Homepage: https://ffmpeg.org
Description: a library to decode, encode, transcode, mux, demux, stream, filter and play pretty much anything that humans and machines have created.