summaryrefslogtreecommitdiff
path: root/security
diff options
context:
space:
mode:
authorryoon <ryoon>2017-06-05 23:19:54 +0000
committerryoon <ryoon>2017-06-05 23:19:54 +0000
commitb11c66d8b9029d524ea6a317fcccddd8a9699d4d (patch)
tree4d6a340cceef3146261864364e311bb7f6bf9ee9 /security
parenta96ea8736954a22811ea6ff26816b05a3a522a29 (diff)
downloadpkgsrc-b11c66d8b9029d524ea6a317fcccddd8a9699d4d.tar.gz
Fix build with perl 5.26.0
Diffstat (limited to 'security')
-rw-r--r--security/p5-Authen-SASL/distinfo3
-rw-r--r--security/p5-Authen-SASL/patches/patch-Makefile.PL15
2 files changed, 17 insertions, 1 deletions
diff --git a/security/p5-Authen-SASL/distinfo b/security/p5-Authen-SASL/distinfo
index cf5dea55d7a..babaf8a77b7 100644
--- a/security/p5-Authen-SASL/distinfo
+++ b/security/p5-Authen-SASL/distinfo
@@ -1,6 +1,7 @@
-$NetBSD: distinfo,v 1.10 2015/11/04 01:17:53 agc Exp $
+$NetBSD: distinfo,v 1.11 2017/06/05 23:19:54 ryoon Exp $
SHA1 (Authen-SASL-2.16.tar.gz) = 0f1e0c448deab4dad0f15466ba765def4012db93
RMD160 (Authen-SASL-2.16.tar.gz) = 82e659bbeee30dbf366124d6a135df7fb6ae2fba
SHA512 (Authen-SASL-2.16.tar.gz) = d472b8b07b8915e65a219c0a40a7b6f25ca4fb767df301f426224b8f6ebf24d66fcb4422a1f421c39631e84585af06f6c64e41abe11e1e505d03e43a9f86bd6f
Size (Authen-SASL-2.16.tar.gz) = 45129 bytes
+SHA1 (patch-Makefile.PL) = 734136512c16edf4a555e6926d33c7e463f6afed
diff --git a/security/p5-Authen-SASL/patches/patch-Makefile.PL b/security/p5-Authen-SASL/patches/patch-Makefile.PL
new file mode 100644
index 00000000000..978141a8f83
--- /dev/null
+++ b/security/p5-Authen-SASL/patches/patch-Makefile.PL
@@ -0,0 +1,15 @@
+$NetBSD: patch-Makefile.PL,v 1.1 2017/06/05 23:19:54 ryoon Exp $
+
+* Add workaround for removing . from @INC
+
+--- Makefile.PL.orig 2010-03-11 15:10:46.000000000 +0000
++++ Makefile.PL
+@@ -3,6 +3,8 @@
+ use strict;
+ use warnings;
+ use 5.005;
++use FindBin;
++use lib $FindBin::Bin;
+ use inc::Module::Install;
+
+ name 'Authen-SASL';