From dbc97c0e46559afa69982e22f7c578e5009e7147 Mon Sep 17 00:00:00 2001 From: Thomas Petazzoni Date: Sat, 21 Oct 2017 18:49:41 +0200 Subject: [PATCH] opusfile: supports only the real OpenSSL, not LibreSSL opusfile will not build with LibreSSL without patches, so let's support only OpenSSL. Signed-off-by: Thomas Petazzoni --- package/opusfile/opusfile.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package/opusfile/opusfile.mk b/package/opusfile/opusfile.mk index 186288ddff..28d4368e85 100644 --- a/package/opusfile/opusfile.mk +++ b/package/opusfile/opusfile.mk @@ -11,8 +11,8 @@ OPUSFILE_LICENSE = BSD-3-Clause OPUSFILE_LICENSE_FILES = COPYING OPUSFILE_INSTALL_STAGING = YES -ifeq ($(BR2_PACKAGE_OPENSSL),y) -OPUSFILE_DEPENDENCIES += openssl +ifeq ($(BR2_PACKAGE_LIBOPENSSL),y) +OPUSFILE_DEPENDENCIES += libopenssl else OPUSFILE_CONF_OPTS += --disable-http endif -- 2.30.2