summaryrefslogtreecommitdiff
path: root/chat/inspircd
diff options
context:
space:
mode:
authorjlam <jlam@pkgsrc.org>2017-08-23 17:54:34 +0000
committerjlam <jlam@pkgsrc.org>2017-08-23 17:54:34 +0000
commitda3274f420be13dfa984678acb193dc66aae1454 (patch)
tree199e96c5498277b3a5d80ace49dfa6139643b49b /chat/inspircd
parent71dd9dd7d3e642f15dba0c3ae6875fbdaac099f6 (diff)
downloadpkgsrc-da3274f420be13dfa984678acb193dc66aae1454.tar.gz
chat/inspircd{,12}: Fix build with perl>=5.26.0.
Perl 5.26.0 removed "." from @INC, so add it back to the scripts used to configure the software. The scripts are only called from the top-level directory, so adding 'use lib ".";' is sufficient.
Diffstat (limited to 'chat/inspircd')
-rw-r--r--chat/inspircd/distinfo4
-rw-r--r--chat/inspircd/patches/patch-ac14
2 files changed, 13 insertions, 5 deletions
diff --git a/chat/inspircd/distinfo b/chat/inspircd/distinfo
index be037d29b12..14c116069ef 100644
--- a/chat/inspircd/distinfo
+++ b/chat/inspircd/distinfo
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.17 2015/11/03 01:20:20 agc Exp $
+$NetBSD: distinfo,v 1.18 2017/08/23 17:54:34 jlam Exp $
SHA1 (InspIRCd-1.1.23.tar.bz2) = 0def2426fa60cb32a2514e64196c04f37fa67e5e
RMD160 (InspIRCd-1.1.23.tar.bz2) = 122ae3c269af0af3f8362f17eae29767d6c314d4
@@ -6,5 +6,5 @@ SHA512 (InspIRCd-1.1.23.tar.bz2) = 578c12eca0607b90752137d4766fb38c5e9e27c0c7c91
Size (InspIRCd-1.1.23.tar.bz2) = 505853 bytes
SHA1 (patch-aa) = d62675b6ace79ba5c0c0c4db2b4f9454346170c3
SHA1 (patch-ab) = c0921dda70348839c286315a3fa0244828d5116a
-SHA1 (patch-ac) = 266c8d6015923d890748d4157f7e5aff87da5df1
+SHA1 (patch-ac) = 9e8fd6d4862ac1f913ee016c955fac0b53d132db
SHA1 (patch-ad) = d35df392a574728f6c61c4107bb3d2ce1e11568a
diff --git a/chat/inspircd/patches/patch-ac b/chat/inspircd/patches/patch-ac
index 2aab70fd2d3..f0d3d4d537d 100644
--- a/chat/inspircd/patches/patch-ac
+++ b/chat/inspircd/patches/patch-ac
@@ -1,8 +1,16 @@
-$NetBSD: patch-ac,v 1.5 2008/06/14 14:30:23 adrianp Exp $
+$NetBSD: patch-ac,v 1.6 2017/08/23 17:54:34 jlam Exp $
---- configure.orig 2008-05-11 01:19:59.000000000 +0100
+--- configure.orig 2009-07-30 11:28:57.000000000 +0000
+++ configure
-@@ -232,8 +231,8 @@ $config{EXTRA_DIR} = ""; #
+@@ -18,6 +18,7 @@ use Cwd;
+ use Getopt::Long;
+
+ # Utility functions for our buildsystem
++use lib ".";
+ use make::utilities;
+ use make::configure;
+ use make::gnutlscert;
+@@ -233,8 +234,8 @@ $config{EXTRA_DIR} = ""; #
if ($config{OSNAME} =~ /darwin/i)
{
$config{IS_DARWIN} = "YES";