package/socat: disable openssl for static build
socat's configure script does not take the zlib dependency into
account when linking with libssl, and therefore fails at detecting
libssl in BR2_STATIC_LIBS=y configurations.
Since there is no easy way to add the zlib dependency, just disable
openssl support for static builds.
This is not fixing a build failure: libssl was not detected in
BR2_STATIC_LIBS=y configurations, so what this commit does is make it
explicit.
Signed-off-by: Baruch Siach <baruch@tkos.co.il>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
(cherry picked from commit 934ec83e9d
)
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
parent
9262ffdf48
commit
ee0670afcd
@ -39,7 +39,7 @@ SOCAT_DEPENDENCIES = host-autoconf
|
||||
# incompatibile license (GPL-3.0+)
|
||||
SOCAT_CONF_OPTS = --disable-readline
|
||||
|
||||
ifeq ($(BR2_PACKAGE_OPENSSL),y)
|
||||
ifeq ($(BR2_PACKAGE_OPENSSL):$(BR2_STATIC_LIBS),y:)
|
||||
SOCAT_DEPENDENCIES += openssl
|
||||
else
|
||||
SOCAT_CONF_OPTS += --disable-openssl
|
||||
|
Loading…
Reference in New Issue
Block a user