[Libreoffice-commits] libcdr.git: 3 commits - configure.ac NEWS src/lib

Libreoffice Gerrit user logerrit at kemper.freedesktop.org
Sat Dec 29 12:11:29 UTC 2018


 NEWS                |    7 +++++++
 configure.ac        |    2 +-
 src/lib/Makefile.am |    4 +---
 3 files changed, 9 insertions(+), 4 deletions(-)

New commits:
commit 49d924f6e575cedbc41167736a12f0b725b52245
Author:     David Tardon <dtardon at redhat.com>
AuthorDate: Sat Dec 29 12:45:55 2018 +0100
Commit:     David Tardon <dtardon at redhat.com>
CommitDate: Sat Dec 29 12:45:55 2018 +0100

    fix var name
    
    Change-Id: I7bd39a4aa5b7dd0a267225787463804c7e274ec6

diff --git a/configure.ac b/configure.ac
index 0ef99cc..7760a0a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -190,7 +190,7 @@ AS_IF([test $platform_win32 = yes],
         CXXFLAGS="$saved_CXXFLAGS"
         AX_GCC_FUNC_ATTRIBUTE([visibility])
         AM_CONDITIONAL([HAVE_VISIBILITY], [
-            test "$have_visibility" = "yes" && test "$ax_cv_gcc_func_attribute_visibility" = "yes"])
+            test "$have_visibility" = "yes" && test "$ax_cv_have_func_attribute_visibility" = "yes"])
     ]
 )
 
commit b0a68c8aa31a1417115bdc6b46d904291734a8ce
Author:     David Tardon <dtardon at redhat.com>
AuthorDate: Sat Dec 29 12:40:44 2018 +0100
Commit:     David Tardon <dtardon at redhat.com>
CommitDate: Sat Dec 29 12:40:44 2018 +0100

    put the flags to a single line
    
    Change-Id: I1d35d7c6fcced11fc89ce0c9c8a874399c7462d9

diff --git a/src/lib/Makefile.am b/src/lib/Makefile.am
index 77af17d..271e920 100644
--- a/src/lib/Makefile.am
+++ b/src/lib/Makefile.am
@@ -18,9 +18,7 @@ AM_CXXFLAGS = -I$(top_srcdir)/inc \
 	-DBOOST_SYSTEM_NO_DEPRECATED
 
 if HAVE_VISIBILITY
-AM_CXXFLAGS += \
-	-DLIBCDR_VISIBILITY \
-	-fvisibility=hidden
+AM_CXXFLAGS += -fvisibility=hidden -DLIBCDR_VISIBILITY
 endif
 
 libcdr_ at CDR_MAJOR_VERSION@_ at CDR_MINOR_VERSION@_la_LIBADD  = libcdr-internal.la $(REVENGE_LIBS) $(LCMS2_LIBS) $(ZLIB_LIBS) $(ICU_LIBS) @LIBCDR_WIN32_RESOURCE@
commit 93f7c78e02dd4d4939411abb039afc75872b5c4f
Author:     David Tardon <dtardon at redhat.com>
AuthorDate: Sat Dec 29 10:14:28 2018 +0100
Commit:     David Tardon <dtardon at redhat.com>
CommitDate: Sat Dec 29 10:14:28 2018 +0100

    prepare for a release
    
    Change-Id: I7f0864a3830e3ec9a0aa1924ccbd146eebcab875

diff --git a/NEWS b/NEWS
index 859b551..20438ab 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,10 @@
+libcdr 0.1.5
+
+* Drop outdated MSVC project files.
+* Fix several issues found by oss-fuzz.
+* Switch from --enable-werror to --disable-werror as configure default.
+* Miscellaneous code cleanups.
+
 libcdr 0.1.4
 
 * Fix several issues found by oss-fuzz.


More information about the Libreoffice-commits mailing list