From 803c49891fc10659aea8e612bc85fae4a09a0269 Mon Sep 17 00:00:00 2001 From: Thomas Petazzoni Date: Sat, 21 Oct 2017 18:46:40 +0200 Subject: [PATCH] ffmpeg: supports only the real OpenSSL, not LibreSSL ffmpeg will not build with LibreSSL without patches, so let's support only OpenSSL. Signed-off-by: Thomas Petazzoni --- package/ffmpeg/ffmpeg.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package/ffmpeg/ffmpeg.mk b/package/ffmpeg/ffmpeg.mk index 801615c077..1e758d3f8c 100644 --- a/package/ffmpeg/ffmpeg.mk +++ b/package/ffmpeg/ffmpeg.mk @@ -208,13 +208,13 @@ FFMPEG_CONF_OPTS += --enable-gnutls --disable-openssl FFMPEG_DEPENDENCIES += gnutls else FFMPEG_CONF_OPTS += --disable-gnutls -ifeq ($(BR2_PACKAGE_OPENSSL),y) +ifeq ($(BR2_PACKAGE_LIBOPENSSL),y) # openssl isn't license compatible with GPL ifeq ($(BR2_PACKAGE_FFMPEG_GPL)x$(BR2_PACKAGE_FFMPEG_NONFREE),yx) FFMPEG_CONF_OPTS += --disable-openssl else FFMPEG_CONF_OPTS += --enable-openssl -FFMPEG_DEPENDENCIES += openssl +FFMPEG_DEPENDENCIES += libopenssl endif else FFMPEG_CONF_OPTS += --disable-openssl -- 2.30.2