diff mbox series

[1/1] package/sconeserver: drop unneeded static openssl workaround

Message ID 20190413091246.27331-1-fontaine.fabrice@gmail.com
State Accepted
Headers show
Series [1/1] package/sconeserver: drop unneeded static openssl workaround | expand

Commit Message

Fabrice Fontaine April 13, 2019, 9:12 a.m. UTC
sconeserver can't be built statically since commit
a845798aa8af0535b85ea0e46cc9e8af9d1ffed1

So drop unneeded workaround for statically linking with openssl

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
 package/sconeserver/sconeserver.mk | 3 ---
 1 file changed, 3 deletions(-)

Comments

Thomas Petazzoni April 13, 2019, 7:16 p.m. UTC | #1
On Sat, 13 Apr 2019 11:12:46 +0200
Fabrice Fontaine <fontaine.fabrice@gmail.com> wrote:

> sconeserver can't be built statically since commit
> a845798aa8af0535b85ea0e46cc9e8af9d1ffed1
> 
> So drop unneeded workaround for statically linking with openssl
> 
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
> ---
>  package/sconeserver/sconeserver.mk | 3 ---
>  1 file changed, 3 deletions(-)

Applied to master, thanks.

Thomas
diff mbox series

Patch

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