diff options
author | jaapb <jaapb@pkgsrc.org> | 2013-08-24 21:50:24 +0000 |
---|---|---|
committer | jaapb <jaapb@pkgsrc.org> | 2013-08-24 21:50:24 +0000 |
commit | 26f1d4c09a2c66f03cb0545f80491b0e494b72a4 (patch) | |
tree | 4ddace503ffd57d7a9fd73872b96d935d9097613 /converters/libwpd/patches/patch-aa | |
parent | 0d7ca8905be1014ef95717a824fcaa723a846ff1 (diff) | |
download | pkgsrc-26f1d4c09a2c66f03cb0545f80491b0e494b72a4.tar.gz |
Updated package to latest version, 0.9.9. Removed obsolete patches, took over
maintainership (all this okayed by the old maintainer, Jeremy C. Reed).
Changes from 0.9.2 include (apart from various bugfixes):
- WPX_SEEK_END for WPXMemoryInputStream (Laurent Alonso)
- Metadata for wpd2html (David Hislop)
- Change source code layout so that public headers be in inc/ and its
subdirectories
- libwpd.h and libwpd-stream.h are not generated headers anymore
- Change the way we get version from libwpd build
- Improvements to WPXOLEStream class
- Added MPL2+ to the licenses libwpd is released under
- Revert an accidental ABI change in WPXPropertyList
- Link the Windows static libraries with DLL runtimes
- libwpd-stream: Add experimental support for ZIP storages
- libwpd-stream: Add WPX_SEEK_END to the WPXSeekType enum
(Be sure that you are at offset 0 using it and check return value
in order to be compatible with lower versions of libwpd)
- New Visual Studio 2008 and Visual Studio 2010 build files
- Don't output points as integer. This solves some rounding issues along
with possibility of writing 10.5 point font size (Fridrich)
- General improvement of code quality by buiding with -Weffc++ option (Fridrich)
- Improvement of textbox code (Laurent Alonso)
- Improvement of arabic charset mapping (Smokey Ardisson)
- Build system rewrite and improvement (Tomas Chvatal)
- Cleanup of return values (Thomas Klausner)
- Conversion of extended characters in WP 42 parser (Fridrich)
Diffstat (limited to 'converters/libwpd/patches/patch-aa')
-rw-r--r-- | converters/libwpd/patches/patch-aa | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/converters/libwpd/patches/patch-aa b/converters/libwpd/patches/patch-aa deleted file mode 100644 index a249e61c1a4..00000000000 --- a/converters/libwpd/patches/patch-aa +++ /dev/null @@ -1,20 +0,0 @@ -$NetBSD: patch-aa,v 1.1 2007/03/18 20:41:50 rillig 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" - |