From: Fabrice Fontaine Date: Sat, 13 Apr 2019 09:12:46 +0000 (+0200) Subject: package/sconeserver: drop unneeded static openssl workaround X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e929b2dc227aea4bfc4aac1e544d988e3e1e8c4e;p=buildroot.git package/sconeserver: drop unneeded static openssl workaround sconeserver can't be built statically since commit a845798aa8af0535b85ea0e46cc9e8af9d1ffed1 So drop unneeded workaround for statically linking with openssl Signed-off-by: Fabrice Fontaine Signed-off-by: Thomas Petazzoni --- diff --git a/package/sconeserver/sconeserver.mk b/package/sconeserver/sconeserver.mk index c160c8bf7c..6914599a21 100644 --- a/package/sconeserver/sconeserver.mk +++ b/package/sconeserver/sconeserver.mk @@ -25,9 +25,6 @@ endif ifeq ($(BR2_PACKAGE_OPENSSL),y) SCONESERVER_DEPENDENCIES += openssl SCONESERVER_CONF_OPTS += --with-ssl -ifeq ($(BR2_STATIC_LIBS),y) -SCONESERVER_CONF_ENV += SSL_LIBADD=-lz -endif else SCONESERVER_CONF_OPTS += --without-ssl endif