summaryrefslogtreecommitdiff
path: root/converters
diff options
context:
space:
mode:
Diffstat (limited to 'converters')
-rw-r--r--converters/libwpd/Makefile4
-rw-r--r--converters/libwpd/distinfo9
-rw-r--r--converters/libwpd/patches/patch-aa20
3 files changed, 27 insertions, 6 deletions
diff --git a/converters/libwpd/Makefile b/converters/libwpd/Makefile
index a3b00fe6108..d4b6eea7459 100644
--- a/converters/libwpd/Makefile
+++ b/converters/libwpd/Makefile
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.12 2006/11/18 22:02:28 wiz Exp $
+# $NetBSD: Makefile,v 1.12.2.1 2007/03/20 15:15:01 salo Exp $
-DISTNAME= libwpd-0.8.7
+DISTNAME= libwpd-0.8.9
CATEGORIES= converters
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=libwpd/}
diff --git a/converters/libwpd/distinfo b/converters/libwpd/distinfo
index ce194a94faa..cf19462606a 100644
--- a/converters/libwpd/distinfo
+++ b/converters/libwpd/distinfo
@@ -1,5 +1,6 @@
-$NetBSD: distinfo,v 1.3 2006/11/18 22:02:28 wiz Exp $
+$NetBSD: distinfo,v 1.3.2.1 2007/03/20 15:15:01 salo Exp $
-SHA1 (libwpd-0.8.7.tar.gz) = 80f2930acda85fc553207adadc5a4dba01846f64
-RMD160 (libwpd-0.8.7.tar.gz) = f954409c57cbe0ac8b2fae8d9e32c9d920238ff0
-Size (libwpd-0.8.7.tar.gz) = 564750 bytes
+SHA1 (libwpd-0.8.9.tar.gz) = f5751f76dca619618659f480f32b35b9b7d88737
+RMD160 (libwpd-0.8.9.tar.gz) = c69853e8f86ee5c936102e00960a7fdea7984ab7
+Size (libwpd-0.8.9.tar.gz) = 569384 bytes
+SHA1 (patch-aa) = 4c91375938db1761200af1b68cacd4714a4da004
diff --git a/converters/libwpd/patches/patch-aa b/converters/libwpd/patches/patch-aa
new file mode 100644
index 00000000000..4a9f90e9591
--- /dev/null
+++ b/converters/libwpd/patches/patch-aa
@@ -0,0 +1,20 @@
+$NetBSD: patch-aa,v 1.1.2.2 2007/03/20 15:15:01 salo Exp $
+
+NetBSD 3.0 is missing the extern "C" around the definition of
+vsnprintf() in <stdio.h>. In NetBSD 4.99.4, it is fixed.
+
+--- src/lib/WPXString.cpp.orig 2007-03-04 10:44:21.000000000 +0100
++++ src/lib/WPXString.cpp 2007-03-18 21:29:54.000000000 +0100
+@@ -24,6 +24,12 @@
+ * Corel Corporation or Corel Corporation Limited."
+ */
+
++#if defined(__NetBSD__)
++extern "C" {
++#include <stdio.h>
++}
++#endif
++
+ #include "WPXString.h"
+ #include "libwpd_internal.h"
+