69ab6d066b
This bump will fix the following build failure with libressl raised since commit9d8f9c73a2
: SSLeay.c: In function 'XS_Net__SSLeay_X509_policy_tree_free': SSLeay.c:17730:9: error: unknown type name 'X509_POLICY_TREE' 17730 | X509_POLICY_TREE * tree = INT2PTR(X509_POLICY_TREE *,SvIV(ST(0))) | ^~~~~~~~~~~~~~~~ https://metacpan.org/dist/Net-SSLeay/changes Fixes:9d8f9c73a2
- http://autobuild.buildroot.org/results/974b7cdd275249c888fc6205f6ca31a3cf28b18f Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Arnout Vandecappelle <arnout@mind.be> (cherry picked from commit241b18b51e
) Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
35 lines
1.3 KiB
Makefile
35 lines
1.3 KiB
Makefile
################################################################################
|
|
#
|
|
# perl-net-ssleay
|
|
#
|
|
################################################################################
|
|
|
|
PERL_NET_SSLEAY_VERSION = 1.94
|
|
PERL_NET_SSLEAY_SOURCE = Net-SSLeay-$(PERL_NET_SSLEAY_VERSION).tar.gz
|
|
PERL_NET_SSLEAY_SITE = $(BR2_CPAN_MIRROR)/authors/id/C/CH/CHRISN
|
|
PERL_NET_SSLEAY_DEPENDENCIES = openssl
|
|
PERL_NET_SSLEAY_LICENSE = Artistic-2.0
|
|
PERL_NET_SSLEAY_LICENSE_FILES = LICENSE
|
|
PERL_NET_SSLEAY_DISTNAME = Net-SSLeay
|
|
|
|
# Try as hard as possible to remedy to the brain-damage their build-system
|
|
# suffers from: don't search for openssl, they pick the host-system one.
|
|
PERL_NET_SSLEAY_CONF_ENV = OPENSSL_PREFIX=$(STAGING_DIR)/usr
|
|
|
|
# Remove problematic single quotes in LDDLFLAGS, CCFLAGS & OPTIMIZE definition
|
|
define PERL_NET_SSLEAY_FIX_MAKEFILE
|
|
$(SED) "s/^LDDLFLAGS = '\(.*\)'/LDDLFLAGS = \1/" $(@D)/Makefile
|
|
$(SED) "s/^CCFLAGS = '\(.*\)'/CCFLAGS = \1/" $(@D)/Makefile
|
|
$(SED) "s/^OPTIMIZE = '\(.*\)'/OPTIMIZE = \1/" $(@D)/Makefile
|
|
endef
|
|
PERL_NET_SSLEAY_POST_CONFIGURE_HOOKS += PERL_NET_SSLEAY_FIX_MAKEFILE
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBRESSL),y)
|
|
define PERL_NET_SSLEAY_DROP_ZLIB_MAKEFILE
|
|
$(SED) "s/-lz//" $(@D)/Makefile
|
|
endef
|
|
PERL_NET_SSLEAY_POST_CONFIGURE_HOOKS += PERL_NET_SSLEAY_DROP_ZLIB_MAKEFILE
|
|
endif
|
|
|
|
$(eval $(perl-package))
|