summaryrefslogtreecommitdiff
path: root/wm/fluxbox
diff options
context:
space:
mode:
authorxtraeme <xtraeme>2004-05-23 16:30:03 +0000
committerxtraeme <xtraeme>2004-05-23 16:30:03 +0000
commit7afc98e65fb01fdbf04e2a2d01eb531ac6002dd2 (patch)
treef54f8a9f4c64fa556e90c27459396bd1b9a91021 /wm/fluxbox
parent5a3a942a1045ecd68f040f6f84e3cbfa07dd0865 (diff)
downloadpkgsrc-7afc98e65fb01fdbf04e2a2d01eb531ac6002dd2.tar.gz
Re-add a patch to fix the problems with setlocale(3).
Diffstat (limited to 'wm/fluxbox')
-rw-r--r--wm/fluxbox/distinfo3
-rw-r--r--wm/fluxbox/patches/patch-af15
2 files changed, 17 insertions, 1 deletions
diff --git a/wm/fluxbox/distinfo b/wm/fluxbox/distinfo
index f95be7f8d91..c20ae50bdcd 100644
--- a/wm/fluxbox/distinfo
+++ b/wm/fluxbox/distinfo
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.12 2004/05/13 10:04:09 wiz Exp $
+$NetBSD: distinfo,v 1.13 2004/05/23 16:30:03 xtraeme Exp $
SHA1 (fluxbox-0.9.9.tar.bz2) = 4322b7abf20b79539c36c74d101a9fb40b6360e2
Size (fluxbox-0.9.9.tar.bz2) = 536673 bytes
@@ -7,3 +7,4 @@ SHA1 (patch-ab) = 04076d5633acf396ae981255c0a64f6d29fa0ed2
SHA1 (patch-ac) = f304326b795f96d59446f5a618331b15cdca7970
SHA1 (patch-ad) = ea13a889a03203ce559e9d08c7c83dcc86f21cba
SHA1 (patch-ae) = 63f52138beeeb3fddf8a380d8c1d79b1c841e18c
+SHA1 (patch-af) = ed6f1173c0fba36d5883cc2c2a44d30212d09750
diff --git a/wm/fluxbox/patches/patch-af b/wm/fluxbox/patches/patch-af
new file mode 100644
index 00000000000..128a02536ee
--- /dev/null
+++ b/wm/fluxbox/patches/patch-af
@@ -0,0 +1,15 @@
+$NetBSD: patch-af,v 1.1 2004/05/23 16:30:03 xtraeme Exp $
+
+--- src/I18n.cc.orig 2004-05-23 18:20:51.000000000 +0200
++++ src/I18n.cc 2004-05-23 18:22:21.000000000 +0200
+@@ -54,7 +54,9 @@
+ I18n::I18n():m_multibyte(false), m_catalog_fd((nl_catd)(-1)) {
+ #ifdef HAVE_SETLOCALE
+ //make sure we don't get 0 to m_locale string
+- char *temp = setlocale(LC_ALL, "");
++ char *temp;
++ (void)setlocale(LC_ALL, "");
++ temp = setlocale(LC_MESSAGES, NULL);
+ m_locale = ( temp ? temp : "");
+ if (m_locale.empty()) {
+ cerr<<"Warning: Failed to set locale, reverting to \"C\""<<endl;