summaryrefslogtreecommitdiff
path: root/www/ap2-perl
diff options
context:
space:
mode:
authormanu <manu>2017-05-12 08:42:54 +0000
committermanu <manu>2017-05-12 08:42:54 +0000
commitc1fdfb26cca555e88086864044fdf167c4439ef6 (patch)
treeb56ef4c060b57ad128723fec03545f3345dd9bdd /www/ap2-perl
parentfcfcf5814674bcf9542c1c5e785a1cb38e2f5b02 (diff)
downloadpkgsrc-c1fdfb26cca555e88086864044fdf167c4439ef6.tar.gz
Avoid build failure because of a missing 'static' target
Diffstat (limited to 'www/ap2-perl')
-rw-r--r--www/ap2-perl/distinfo3
-rw-r--r--www/ap2-perl/patches/patch-xs_APR_aprext_Makefile.PL19
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 ] ,