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 <thomas.petazzoni@free-electrons.com>
This commit is contained in:
Thomas Petazzoni 2017-10-21 18:49:41 +02:00
parent 5b92c4de94
commit dbc97c0e46

View File

@ -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