diff options
author | 2009-09-26 15:00:26 +0000 | |
---|---|---|
committer | 2009-09-26 15:00:26 +0000 | |
commit | e90573a603bbf321f92b3cc791bc64d5b1f06376 (patch) | |
tree | f259eaf89eb4a76ecaab1ffceabd74efde431f89 /dev-perl/Locale-gettext/files | |
parent | Marking xmlto-0.0.22 ppc64 for bug 276677 (diff) | |
download | gentoo-2-e90573a603bbf321f92b3cc791bc64d5b1f06376.tar.gz gentoo-2-e90573a603bbf321f92b3cc791bc64d5b1f06376.tar.bz2 gentoo-2-e90573a603bbf321f92b3cc791bc64d5b1f06376.zip |
Locale::Gettext re-exports the LC_* constants coming from POSIX (#237378)
(Portage version: 2.2_rc41/cvs/Linux x86_64)
Diffstat (limited to 'dev-perl/Locale-gettext/files')
-rw-r--r-- | dev-perl/Locale-gettext/files/compatibility-with-POSIX-module.diff | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/dev-perl/Locale-gettext/files/compatibility-with-POSIX-module.diff b/dev-perl/Locale-gettext/files/compatibility-with-POSIX-module.diff new file mode 100644 index 000000000000..101e9f26e2ba --- /dev/null +++ b/dev-perl/Locale-gettext/files/compatibility-with-POSIX-module.diff @@ -0,0 +1,16 @@ +Bug-Gentoo: https://bugs.gentoo.org/show_bug.cgi?id=237378 +Bug: http://rt.cpan.org/Public/Bug/Display.html?id=35680 +Bug-Debian: http://bugs.debian.org/479803 +Author: Raphaël Hertzog <hertzog@debian.org> +Origin: vendor, http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=479803#20 + +--- a/gettext.pm ++++ b/gettext.pm +@@ -32,6 +32,7 @@ to internationalize software. + =cut + + use Carp; ++use POSIX qw(:locale_h); + + require Exporter; + require DynaLoader; |