[Libreoffice-commits] libvisio.git: 3 commits - configure.ac NEWS src/test

David Tardon dtardon at redhat.com
Fri Jan 2 07:55:55 PST 2015


 NEWS                    |   12 ++++++++++++
 configure.ac            |    4 ++--
 src/test/importtest.cpp |    2 ++
 3 files changed, 16 insertions(+), 2 deletions(-)

New commits:
commit 0478fce6799d9a8e2d765cc4616a5f2de1c3c44e
Author: David Tardon <dtardon at redhat.com>
Date:   Fri Jan 2 16:36:12 2015 +0100

    comment out 2 unused functions in test
    
    Change-Id: I7012a55176693b9abb8e9f5c9543d14221bea5e1

diff --git a/src/test/importtest.cpp b/src/test/importtest.cpp
index ad3722b..2b1aec6 100644
--- a/src/test/importtest.cpp
+++ b/src/test/importtest.cpp
@@ -66,6 +66,7 @@ void assertXPath(xmlDocPtr doc, const librevenge::RVNGString &xpath, const libre
   CPPUNIT_ASSERT_EQUAL_MESSAGE(message.cstr(), expectedValue, actualValue);
 }
 
+#if 0 // keep for future use
 /// Same as the assertXPathContent(), but don't assert: return the string instead.
 librevenge::RVNGString getXPathContent(xmlDocPtr doc, const librevenge::RVNGString &xpath)
 {
@@ -91,6 +92,7 @@ void assertXPathContent(xmlDocPtr doc, const librevenge::RVNGString &xpath, cons
   message.append("': contents of child does not match.");
   CPPUNIT_ASSERT_EQUAL_MESSAGE(message.cstr(), content, getXPathContent(doc, xpath));
 }
+#endif
 
 /// Paints an XML representation of filename into buffer, then returns the parsed buffer content.
 xmlDocPtr parse(const char *filename, xmlBufferPtr buffer)
commit 0a11bbae2d3fbc834a08393ace6671bdf2909696
Author: David Tardon <dtardon at redhat.com>
Date:   Fri Jan 2 16:33:49 2015 +0100

    disable werror by default
    
    Change-Id: I389f93a756f3661b328847cde267f79cffefef62

diff --git a/configure.ac b/configure.ac
index fdc71c8..ff289be 100644
--- a/configure.ac
+++ b/configure.ac
@@ -218,7 +218,7 @@ AS_IF([test $platform_win32 == yes],
 AC_ARG_ENABLE([werror],
 	[AS_HELP_STRING([--disable-werror], [Treat all warnings as errors, useful for development])],
 	[enable_werror="$enableval"],
-	[enable_werror=yes]
+	[enable_werror=no]
 )
 AS_IF([test x"$enable_werror" != "xno"], [
 	CFLAGS="$CFLAGS -Werror"
commit 02eea2cf353bb405c5073d9169868a93b29f197c
Author: David Tardon <dtardon at redhat.com>
Date:   Fri Jan 2 16:30:33 2015 +0100

    prepare for a release
    
    Change-Id: I1022e4003f468d7c66eec459b41016ec1ab53556

diff --git a/NEWS b/NEWS
index 5841ef1..0bcbe0a 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,15 @@
+libvisio 0.1.1
+
+- Fix a minor issue reported by Coverity.
+- Check arguments of public functions. Passing NULL no longer causes
+  a crash.
+- Set a minimal thickness for arrow markers to ensure they are visible.
+- Fix a crash when reading a broken file, found with the help of
+  american-fuzzy-lop.
+- Use symbol visibility on Linux. The library only exports the two public
+  functions now.
+- Import document metadata (fdo#86664).
+
 libvisio 0.1.0
 
 - switch to librevenge
diff --git a/configure.ac b/configure.ac
index 41e3d7e..fdc71c8 100644
--- a/configure.ac
+++ b/configure.ac
@@ -7,7 +7,7 @@ AC_PREREQ([2.65])
 # ====================
 m4_define([libvisio_version_major],[0])
 m4_define([libvisio_version_minor],[1])
-m4_define([libvisio_version_micro],[0])
+m4_define([libvisio_version_micro],[1])
 m4_define([libvisio_version],[libvisio_version_major.libvisio_version_minor.libvisio_version_micro])
 
 # =============


More information about the Libreoffice-commits mailing list