From d4f17c6e1a9a4af46bc40cefe30f13c2ccbbd37a Mon Sep 17 00:00:00 2001 From: Beech Rintoul Date: Wed, 19 Dec 2007 00:04:50 +0000 Subject: - Fix bug "isspace broken for UTF-8 locales." Causes Japanese characters to display improperly. PR: ports/116363 Submitted by: Hiromi Kimura Approved by: linimon (mentor) --- www/horde-base/Makefile | 1 + www/horde-base/files/patch-lib_Horde_NLS.php | 13 +++++++++++++ 2 files changed, 14 insertions(+) create mode 100644 www/horde-base/files/patch-lib_Horde_NLS.php (limited to 'www/horde-base') diff --git a/www/horde-base/Makefile b/www/horde-base/Makefile index ddcf639cd4bf..a680116737b8 100644 --- a/www/horde-base/Makefile +++ b/www/horde-base/Makefile @@ -8,6 +8,7 @@ PORTNAME= horde DISTVERSIONPREFIX= DISTVERSION= 3.1.5 +PORTREVISION= 1 CATEGORIES= www PKGNAMEPREFIX= PKGNAMESUFFIX= -base diff --git a/www/horde-base/files/patch-lib_Horde_NLS.php b/www/horde-base/files/patch-lib_Horde_NLS.php new file mode 100644 index 000000000000..8e157c276647 --- /dev/null +++ b/www/horde-base/files/patch-lib_Horde_NLS.php @@ -0,0 +1,13 @@ +--- lib/Horde/NLS.php.orig 2007-09-29 07:22:46.000000000 -0800 ++++ lib/Horde/NLS.php 2007-12-18 11:16:03.000000000 -0900 +@@ -119,6 +119,10 @@ + setlocale(LC_ALL, $lang_charset); + } + } ++        /* avoid FreeBSD issapce(3) bug */ ++        if(NLS::getCharset() == "UTF-8"){ ++            setlocale(LC_CTYPE,"C"); ++        } + @putenv('LANG=' . $lang_charset); + @putenv('LANGUAGE=' . $lang_charset); + } -- cgit v1.2.3