head 1.4; access; symbols pkgsrc-2015Q3:1.3.0.38 pkgsrc-2015Q3-base:1.3 pkgsrc-2015Q2:1.3.0.36 pkgsrc-2015Q2-base:1.3 pkgsrc-2015Q1:1.3.0.34 pkgsrc-2015Q1-base:1.3 pkgsrc-2014Q4:1.3.0.32 pkgsrc-2014Q4-base:1.3 pkgsrc-2014Q3:1.3.0.30 pkgsrc-2014Q3-base:1.3 pkgsrc-2014Q2:1.3.0.28 pkgsrc-2014Q2-base:1.3 pkgsrc-2014Q1:1.3.0.26 pkgsrc-2014Q1-base:1.3 pkgsrc-2013Q4:1.3.0.24 pkgsrc-2013Q4-base:1.3 pkgsrc-2013Q3:1.3.0.22 pkgsrc-2013Q3-base:1.3 pkgsrc-2013Q2:1.3.0.20 pkgsrc-2013Q2-base:1.3 pkgsrc-2013Q1:1.3.0.18 pkgsrc-2013Q1-base:1.3 pkgsrc-2012Q4:1.3.0.16 pkgsrc-2012Q4-base:1.3 pkgsrc-2012Q3:1.3.0.14 pkgsrc-2012Q3-base:1.3 pkgsrc-2012Q2:1.3.0.12 pkgsrc-2012Q2-base:1.3 pkgsrc-2012Q1:1.3.0.10 pkgsrc-2012Q1-base:1.3 pkgsrc-2011Q4:1.3.0.8 pkgsrc-2011Q4-base:1.3 pkgsrc-2011Q3:1.3.0.6 pkgsrc-2011Q3-base:1.3 pkgsrc-2011Q2:1.3.0.4 pkgsrc-2011Q2-base:1.3 pkgsrc-2011Q1:1.3.0.2 pkgsrc-2011Q1-base:1.3 pkgsrc-2010Q4:1.2.0.2 pkgsrc-2010Q4-base:1.2; locks; strict; comment @# @; 1.4 date 2015.11.26.14.40.46; author mef; state dead; branches; next 1.3; commitid 91KG8fhXDgOGYBKy; 1.3 date 2011.01.19.13.18.27; author adam; state Exp; branches; next 1.2; 1.2 date 2010.11.23.13.56.31; author wiz; state Exp; branches; next 1.1; 1.1 date 2010.11.23.13.53.54; author haad; state Exp; branches; next ; desc @@ 1.4 log @For PR pkg/50473, removing patch-aa: Sorry, patch-aa is now in upstream, forget to remove from CVS. Thanks for the report. @ text @$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; @ 1.3 log @Fix building with special CFLAGS, e.g. on Mac OS X with -isysroot @ text @d1 1 a1 1 $NetBSD: patch-aa,v 1.2 2010/11/23 13:56:31 wiz Exp $ @ 1.2 log @Fix typo in comment. @ text @d1 2 a2 1 $NetBSD: patch-aa,v 1.1 2010/11/23 13:53:54 haad Exp $ @ 1.1 log @Add small patch which fixes problem with p5-gettext described in http://rt.cpan.org/Public/Bug/Display.html?id=35680 @ text @d1 1 a1 1 $NetBSD$ d14 1 a14 1 Prblem fixed with patch from @