summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormef <mef>2015-11-26 14:40:46 +0000
committermef <mef>2015-11-26 14:40:46 +0000
commitfc5f30ce8f574847a3f0d18e66bc4679969d5362 (patch)
tree7d029f1114c40fd1078e59957460425de0ffe0e4
parentf7adb253ba8e5518b81fce787fbae3c04c73e7ee (diff)
downloadpkgsrc-fc5f30ce8f574847a3f0d18e66bc4679969d5362.tar.gz
For PR pkg/50473, removing patch-aa:
Sorry, patch-aa is now in upstream, forget to remove from CVS. Thanks for the report.
-rw-r--r--devel/p5-gettext/patches/patch-aa28
1 files changed, 0 insertions, 28 deletions
diff --git a/devel/p5-gettext/patches/patch-aa b/devel/p5-gettext/patches/patch-aa
deleted file mode 100644
index 6b95fef927f..00000000000
--- a/devel/p5-gettext/patches/patch-aa
+++ /dev/null
@@ -1,28 +0,0 @@
-$NetBSD: patch-aa,v 1.3 2011/01/19 13:18:27 adam Exp $
-
-Fix problem with gettext definition of LC_* variables. See
-code below as example of warning.
-
-perl -MLocale::gettext -MPOSIX -e ''
-Prototype mismatch: sub main::LC_ALL: none vs () at -e line 0
-Prototype mismatch: sub main::LC_NUMERIC: none vs () at -e line 0
-Prototype mismatch: sub main::LC_TIME: none vs () at -e line 0
-Prototype mismatch: sub main::LC_MONETARY: none vs () at -e line 0
-Prototype mismatch: sub main::LC_CTYPE: none vs () at -e line 0
-Prototype mismatch: sub main::LC_MESSAGES: none vs () at -e line 0
-Prototype mismatch: sub main::LC_COLLATE: none vs () at -e line 0
-
-Problem fixed with patch from
-
-http://rt.cpan.org/Public/Bug/Display.html?id=35680
-
---- gettext.pm.orig 2005-06-01 03:11:16.000000000 +0000
-+++ gettext.pm
-@@ -32,6 +32,7 @@ to internationalize software.
- =cut
-
- use Carp;
-+use POSIX qw(:locale_h);
-
- require Exporter;
- require DynaLoader;