diff options
author | manu <manu@pkgsrc.org> | 2017-05-12 08:42:54 +0000 |
---|---|---|
committer | manu <manu@pkgsrc.org> | 2017-05-12 08:42:54 +0000 |
commit | 2bdcd1e178b6e88789538e117edae987b6a843c0 (patch) | |
tree | b56ef4c060b57ad128723fec03545f3345dd9bdd | |
parent | e1e95893feb0b2f5823d8029964b35eaeac643c2 (diff) | |
download | pkgsrc-2bdcd1e178b6e88789538e117edae987b6a843c0.tar.gz |
Avoid build failure because of a missing 'static' target
-rw-r--r-- | www/ap2-perl/distinfo | 3 | ||||
-rw-r--r-- | www/ap2-perl/patches/patch-xs_APR_aprext_Makefile.PL | 19 |
2 files changed, 21 insertions, 1 deletions
diff --git a/www/ap2-perl/distinfo b/www/ap2-perl/distinfo index 8088aaad7ac..c122d614ea4 100644 --- a/www/ap2-perl/distinfo +++ b/www/ap2-perl/distinfo @@ -1,7 +1,8 @@ -$NetBSD: distinfo,v 1.22 2016/11/01 15:32:54 adam Exp $ +$NetBSD: distinfo,v 1.23 2017/05/12 08:42:54 manu Exp $ SHA1 (mod_perl-2.0.10.tar.gz) = 61b5b0fe4449440258ad45dee6efa0e2264a9701 RMD160 (mod_perl-2.0.10.tar.gz) = 65fd0774bc495aa02af7dee249427f24d8a58b0e SHA512 (mod_perl-2.0.10.tar.gz) = 0bf1a885cb32a3393e95f87e71983097613e263b9052dbf22494663b506e36a25d0256afed24285232276d9f43ebd3adaa18b91129bfb62116a8ccb023855bca Size (mod_perl-2.0.10.tar.gz) = 3846211 bytes SHA1 (patch-src_modules_perl_modperl_common_util.h) = a5fd094351fef2994b67c6c70abc18c772aec532 +SHA1 (patch-xs_APR_aprext_Makefile.PL) = 9ada16e6be30236c6dbd4de4955e0077a83d3d85 diff --git a/www/ap2-perl/patches/patch-xs_APR_aprext_Makefile.PL b/www/ap2-perl/patches/patch-xs_APR_aprext_Makefile.PL new file mode 100644 index 00000000000..1d5c1e1d344 --- /dev/null +++ b/www/ap2-perl/patches/patch-xs_APR_aprext_Makefile.PL @@ -0,0 +1,19 @@ +$NetBSD: patch-xs_APR_aprext_Makefile.PL,v 1.1 2017/05/12 08:42:54 manu Exp $ + +Avoid build failure because of a missing 'static' target + +--- xs/APR/aprext/Makefile.PL.orig 2017-05-08 03:17:18.000000000 +0000 ++++ xs/APR/aprext/Makefile.PL 2017-05-08 03:17:38.000000000 +0000 +@@ -21,10 +21,10 @@ + + push @obj, q{modperl_dummy.o}; + + my @skip = qw(dynamic test); +-push @skip, q{static} +- unless (Apache2::Build::BUILD_APREXT); ++#push @skip, q{static} ++# unless (Apache2::Build::BUILD_APREXT); + + my %args = (NAME => 'lib' . $build->{MP_APR_LIB}, + VERSION_FROM => '../APR/APR.pm', + SKIP => [ @skip ] , |