From: Thomas Petazzoni Date: Sat, 21 Oct 2017 16:46:40 +0000 (+0200) Subject: ffmpeg: supports only the real OpenSSL, not LibreSSL X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=803c49891fc10659aea8e612bc85fae4a09a0269;p=buildroot.git 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 --- 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