diff options
author | ryoon <ryoon@pkgsrc.org> | 2017-06-05 23:19:54 +0000 |
---|---|---|
committer | ryoon <ryoon@pkgsrc.org> | 2017-06-05 23:19:54 +0000 |
commit | aaea02f039a904ab1bab5207280e3b2a175a23a2 (patch) | |
tree | 5e2ac1c5f61fd5097bac8a717c9801e368c8eb90 | |
parent | 8b2a170deb18309cbdb0f743ac35ccd8872ee9a4 (diff) | |
download | pkgsrc-aaea02f039a904ab1bab5207280e3b2a175a23a2.tar.gz |
Fix build with perl 5.26.0
-rw-r--r-- | security/p5-Authen-SASL/distinfo | 3 | ||||
-rw-r--r-- | security/p5-Authen-SASL/patches/patch-Makefile.PL | 15 |
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'; |