Update to 0.3.1:

libwps-0.3.1

- Fix parsing of floating-point numbers in specific cases.
- Fix several minor issues reported by Coverity and Clang.
- Check arguments of public functions. Passing NULL no longer causes
  a crash.
- Use symbol visibility on Linux. The library only exports the public
  functions now.
- Import @TERM and @CTERM functions (fdo#86241).
- Handle LICS character encoding in spreadsheets (fdo#87222).
- Fix a crash when reading a broken file, found with the help of
  american-fuzzy-lop.
This commit is contained in:
wiz 2015-01-16 09:08:38 +00:00
parent 1d3ff13f1c
commit 82dd5471c0
3 changed files with 22 additions and 6 deletions

View file

@ -1,6 +1,6 @@
# $NetBSD: Makefile,v 1.16 2014/12/01 12:39:16 joerg Exp $
# $NetBSD: Makefile,v 1.17 2015/01/16 09:08:38 wiz Exp $
DISTNAME= libwps-0.3.0
DISTNAME= libwps-0.3.1
CATEGORIES= converters
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=libwps/}
EXTRACT_SUFX= .tar.bz2

View file

@ -1,5 +1,6 @@
$NetBSD: distinfo,v 1.8 2014/07/23 06:29:53 wiz Exp $
$NetBSD: distinfo,v 1.9 2015/01/16 09:08:38 wiz Exp $
SHA1 (libwps-0.3.0.tar.bz2) = 526323bd59b5f59f8533882fb455e5886bf1f6dc
RMD160 (libwps-0.3.0.tar.bz2) = 6e3f8b0964474ca4a241a4bcc4fcacdd525e3361
Size (libwps-0.3.0.tar.bz2) = 502782 bytes
SHA1 (libwps-0.3.1.tar.bz2) = f873f672adf0d92030ab2b6697be735ef6cfc6e2
RMD160 (libwps-0.3.1.tar.bz2) = 109484e67bf62d64eeaf78417e1552b3e2f3d7fa
Size (libwps-0.3.1.tar.bz2) = 496436 bytes
SHA1 (patch-configure) = 5b3e7b782a708a9039032a9eb0f57ed21ead3c86

View file

@ -0,0 +1,15 @@
$NetBSD: patch-configure,v 1.1 2015/01/16 09:08:38 wiz Exp $
Fix unportable test(1) operator.
--- configure.orig 2014-12-30 09:10:53.000000000 +0000
+++ configure
@@ -16187,7 +16187,7 @@ else
fi
-if test "x$platform_win32" == "xyes"; then :
+if test "x$platform_win32" = "xyes"; then :
else