summaryrefslogtreecommitdiff
path: root/editors/abiword/patches
diff options
context:
space:
mode:
Diffstat (limited to 'editors/abiword/patches')
-rw-r--r--editors/abiword/patches/patch-aa13
-rw-r--r--editors/abiword/patches/patch-ab14
-rw-r--r--editors/abiword/patches/patch-ad19
-rw-r--r--editors/abiword/patches/patch-ae22
4 files changed, 0 insertions, 68 deletions
diff --git a/editors/abiword/patches/patch-aa b/editors/abiword/patches/patch-aa
deleted file mode 100644
index 856e0bb015e..00000000000
--- a/editors/abiword/patches/patch-aa
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD: patch-aa,v 1.9 2005/10/04 09:55:06 adam Exp $
-
---- configure.orig 2005-09-30 10:23:57.000000000 +0000
-+++ configure
-@@ -4127,7 +4127,7 @@ case "$OS_NAME" in
- WARNING_CFLAGS=""
- ;;
- *BSD|DragonFly)
-- WARNING_CFLAGS="-Wall -pedantic -ansi -D_BSD_SOURCE -pipe"
-+ WARNING_CFLAGS="-Wall -D_BSD_SOURCE -pipe"
- ;;
- IRIX*)
- case "$GCC" in
diff --git a/editors/abiword/patches/patch-ab b/editors/abiword/patches/patch-ab
deleted file mode 100644
index 90de7ff9add..00000000000
--- a/editors/abiword/patches/patch-ab
+++ /dev/null
@@ -1,14 +0,0 @@
-$NetBSD: patch-ab,v 1.12 2005/10/04 09:55:06 adam Exp $
-
---- src/af/util/xp/ut_iconv.cpp.orig 2005-07-08 16:22:11.000000000 +0000
-+++ src/af/util/xp/ut_iconv.cpp
-@@ -68,7 +68,8 @@ extern "C" {
- (defined (__MACH__) && defined (__APPLE__)) || \
- (defined(TARGET_OS_MAC) && TARGET_OS_MAC) || \
- defined (__AIX__) || \
--(defined(__linux__) && defined(__powerpc__) && (__GLIBC__ <= 2) && (__GLIBC_MINOR__ <= 1))
-+(defined(__linux__) && defined(__powerpc__) && (__GLIBC__ <= 2) && (__GLIBC_MINOR__ <= 1)) || \
-+defined(__NetBSD__) || (defined(_LIBICONV_VERSION) && _LIBICONV_VERSION >= 0x0109)
-
- #define ICONV_CONST const
- #else
diff --git a/editors/abiword/patches/patch-ad b/editors/abiword/patches/patch-ad
deleted file mode 100644
index cb8ea2afdea..00000000000
--- a/editors/abiword/patches/patch-ad
+++ /dev/null
@@ -1,19 +0,0 @@
-$NetBSD: patch-ad,v 1.14 2005/01/11 11:09:27 adam Exp $
-
---- src/af/util/xp/ut_iconv.h.orig 2003-11-19 02:38:27.000000000 +0000
-+++ src/af/util/xp/ut_iconv.h
-@@ -32,8 +32,14 @@
-
- typedef void * UT_iconv_t;
-
-+#if defined(__NetBSD__) && __NetBSD_Version__ >= 200000000
-+struct __tag_iconv_t { }; /* XXX: for catch/throw (ISO C++ 15.1)*/
-+#endif
-+
- #define UT_ICONV_INVALID ((UT_iconv_t)(-1))
-
-+#include <sys/param.h>
-+
- #ifdef __cplusplus
-
- #include "ut_exception.h"
diff --git a/editors/abiword/patches/patch-ae b/editors/abiword/patches/patch-ae
deleted file mode 100644
index 33f574a0c40..00000000000
--- a/editors/abiword/patches/patch-ae
+++ /dev/null
@@ -1,22 +0,0 @@
-$NetBSD: patch-ae,v 1.15 2005/03/07 10:16:43 adam Exp $
-
---- src/af/xap/unix/xap_UnixEncodingManager.cpp.orig 2005-03-01 00:14:21.000000000 +0000
-+++ src/af/xap/unix/xap_UnixEncodingManager.cpp
-@@ -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