summaryrefslogtreecommitdiffstats
path: root/package/ffmpeg
diff options
context:
space:
mode:
authorBernd Kuhls <bernd.kuhls@t-online.de>2018-04-02 13:58:26 +0200
committerThomas Petazzoni <thomas.petazzoni@bootlin.com>2018-04-02 18:29:46 +0200
commit158eab173d776414a123cb9b5d569375bfc1a2fe (patch)
treeb078f5665ec27f4976bb9d12ef86c549f3b49abc /package/ffmpeg
parent6d938bcb524987f3e4a56fc311692ba9127417d9 (diff)
downloadbuildroot-158eab173d776414a123cb9b5d569375bfc1a2fe.tar.gz
buildroot-158eab173d776414a123cb9b5d569375bfc1a2fe.zip
package/ffmpeg: add support for libressl
Ffmpeg builds fine with current libressl 2.7.2. Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Diffstat (limited to 'package/ffmpeg')
-rw-r--r--package/ffmpeg/ffmpeg.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/package/ffmpeg/ffmpeg.mk b/package/ffmpeg/ffmpeg.mk
index 71d642cf4c..432e4cda09 100644
--- a/package/ffmpeg/ffmpeg.mk
+++ b/package/ffmpeg/ffmpeg.mk
@@ -214,13 +214,13 @@ FFMPEG_CONF_OPTS += --enable-gnutls --disable-openssl
FFMPEG_DEPENDENCIES += gnutls
else
FFMPEG_CONF_OPTS += --disable-gnutls
-ifeq ($(BR2_PACKAGE_LIBOPENSSL),y)
+ifeq ($(BR2_PACKAGE_OPENSSL),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 += libopenssl
+FFMPEG_DEPENDENCIES += openssl
endif
else
FFMPEG_CONF_OPTS += --disable-openssl
OpenPOWER on IntegriCloud