summaryrefslogtreecommitdiff
path: root/editors/abiword/patches
diff options
context:
space:
mode:
authoradam <adam>2006-07-10 21:40:49 +0000
committeradam <adam>2006-07-10 21:40:49 +0000
commit2b723b37104909fd01a2680cf86aed7dde801744 (patch)
treeb619b5dbefb72a802d596091fdf3e43fc07b0146 /editors/abiword/patches
parent8b98f185c8118a9329ebcabe38926be5ca89e8db (diff)
downloadpkgsrc-2b723b37104909fd01a2680cf86aed7dde801744.tar.gz
Changes 2.4.5:
Almost completely rewrote the DocBook export filter, gaining substantial more functionality in the process Fixed a security bug pointed out to us by Joxean Koret Fixed a massive amount of bugs in the OpenDocument import and export filters Fixed the unstability on x86_64 architectures
Diffstat (limited to 'editors/abiword/patches')
-rw-r--r--editors/abiword/patches/patch-ae22
1 files changed, 0 insertions, 22 deletions
diff --git a/editors/abiword/patches/patch-ae b/editors/abiword/patches/patch-ae
deleted file mode 100644
index 5fba499a03f..00000000000
--- a/editors/abiword/patches/patch-ae
+++ /dev/null
@@ -1,22 +0,0 @@
-$NetBSD: patch-ae,v 1.17 2006/06/07 23:24:01 rillig Exp $
-
---- src/af/xap/unix/xap_UnixEncodingManager.cpp.orig 2005-10-16 04:50:52.000000000 +0200
-+++ src/af/xap/unix/xap_UnixEncodingManager.cpp 2006-06-08 01:19:17.842815432 +0200
-@@ -546,7 +546,7 @@ void XAP_UnixEncodingManager::initializ
- MYLANG += LanguageISOName;
- MYLANG += "_";
- MYLANG += LanguageISOTerritory;
-- putenv(MYLANG.utf8_str());
-+ putenv(const_cast<char*>(MYLANG.utf8_str()));
- #else
- UT_UTF8String MYLANG (LanguageISOName);
- MYLANG += "_";
-@@ -569,7 +569,7 @@ void XAP_UnixEncodingManager::initializ
- #if defined(SETENV_MISSING)
- MYLANG = "LANG=";
- MYLANG += OLDLANG;
-- putenv(MYLANG.utf8_str());
-+ putenv(const_cast<char*>(MYLANG.utf8_str()));
- #else
- setenv("LANG", OLDLANG.utf8_str(), 1);
- #endif