diff options
author | ryoon <ryoon@pkgsrc.org> | 2017-06-07 14:29:59 +0000 |
---|---|---|
committer | ryoon <ryoon@pkgsrc.org> | 2017-06-07 14:29:59 +0000 |
commit | 6592491ee3520e58e102676a59d2f136e905faef (patch) | |
tree | daa25756ef19d632e148a213a041a66a3bd9c6a9 /converters/p5-Unicode-Normalize | |
parent | 14e786163f0f5bd63d9933625720285102d25754 (diff) | |
download | pkgsrc-6592491ee3520e58e102676a59d2f136e905faef.tar.gz |
Fix build with Perl 5.26.0
Diffstat (limited to 'converters/p5-Unicode-Normalize')
-rw-r--r-- | converters/p5-Unicode-Normalize/distinfo | 3 | ||||
-rw-r--r-- | converters/p5-Unicode-Normalize/patches/patch-Makefile.PL | 15 |
2 files changed, 17 insertions, 1 deletions
diff --git a/converters/p5-Unicode-Normalize/distinfo b/converters/p5-Unicode-Normalize/distinfo index f7a1fb78b5d..41a26af8556 100644 --- a/converters/p5-Unicode-Normalize/distinfo +++ b/converters/p5-Unicode-Normalize/distinfo @@ -1,6 +1,7 @@ -$NetBSD: distinfo,v 1.7 2016/04/13 21:10:11 markd Exp $ +$NetBSD: distinfo,v 1.8 2017/06/07 14:33:24 ryoon Exp $ SHA1 (Unicode-Normalize-1.25.tar.gz) = 607ada7ef05bc1644f7f08d8899fc60988ea4f7e RMD160 (Unicode-Normalize-1.25.tar.gz) = 0a05087451efde87f497c97f33e65891336b4b91 SHA512 (Unicode-Normalize-1.25.tar.gz) = f28c19e0293cf75cc0aab669ae0a0543f6a1a39e1e50ff32ab37abd8e85efc73e8b9075e581212b6da576ecbf8c0e9ddb7b9b352674aa3a04c77f9aaf4717866 Size (Unicode-Normalize-1.25.tar.gz) = 40530 bytes +SHA1 (patch-Makefile.PL) = 8124fac4b9786ae579d8013a560ae067648965a7 diff --git a/converters/p5-Unicode-Normalize/patches/patch-Makefile.PL b/converters/p5-Unicode-Normalize/patches/patch-Makefile.PL new file mode 100644 index 00000000000..0b12fbf7ca9 --- /dev/null +++ b/converters/p5-Unicode-Normalize/patches/patch-Makefile.PL @@ -0,0 +1,15 @@ +$NetBSD: patch-Makefile.PL,v 1.1 2017/06/07 14:33:24 ryoon Exp $ + +* Fix build with Perl 5.26.0 + +--- Makefile.PL.orig 2015-12-16 02:02:23.000000000 +0000 ++++ Makefile.PL +@@ -8,7 +8,7 @@ my $mm_ver = ExtUtils::MakeMaker->VERSIO + if (-f "Normalize.xs") { + print STDERR "Making header files for XS...\n"; + +- do 'mkheader' or die $@ || "mkheader: $!"; ++ do './mkheader' or die $@ || "mkheader: $!"; + + $clean = { FILES => 'unfcan.h unfcmb.h unfcmp.h unfcpt.h unfexc.h' }; + } |