diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-10-21 18:49:41 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-10-21 21:28:13 +0200 |
commit | dbc97c0e46559afa69982e22f7c578e5009e7147 (patch) | |
tree | b7e697847b128629e2e4b0d0ffd8318199a052c1 | |
parent | 5b92c4de9413eceb0696f0eebead8f661a5534c6 (diff) | |
download | buildroot-dbc97c0e46559afa69982e22f7c578e5009e7147.tar.gz buildroot-dbc97c0e46559afa69982e22f7c578e5009e7147.zip |
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>
-rw-r--r-- | package/opusfile/opusfile.mk | 4 |
1 files 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 |