Accepting request 1043169 from LibreOffice:Factory

OBS-URL: https://build.opensuse.org/request/show/1043169
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libreoffice?expand=0&rev=263
This commit is contained in:
Dominique Leuenberger 2022-12-16 16:51:11 +00:00 committed by Git OBS Bridge
commit 1ad29efb10
3 changed files with 22 additions and 0 deletions

View File

@ -1,3 +1,9 @@
-------------------------------------------------------------------
Tue Dec 13 17:25:49 UTC 2022 - Danilo Spinella <danilo.spinella@suse.com>
- Use fixmath shared library
* use-fixmath-shared-library.patch
-------------------------------------------------------------------
Wed Nov 23 15:44:20 UTC 2022 - Danilo Spinella <danilo.spinella@suse.com>

View File

@ -111,6 +111,8 @@ Patch11: fix_webp_on_sle12_sp5.patch
Patch12: fix_harfbuzz_on_sle12_sp5.patch
# PATCH-FIX-UPSTREAM remove egrep/fgrep calls
Patch13: libreoffice-7.4.1.2-grep.patch
# PATCH-FIX-SUSE use fixmath shared library
Patch14: use-fixmath-shared-library.patch
# Build with java 8
Patch101: 0001-Revert-java-9-changes.patch
# try to save space by using hardlinks
@ -1034,6 +1036,7 @@ Provides %{langname} translations and additional resources (help files, etc.) fo
%patch101 -p1
%endif
%patch13 -p1
%patch14 -p1
%patch990 -p1
%patch991 -p1

View File

@ -0,0 +1,13 @@
Index: libreoffice-7.4.3.2/configure.ac
===================================================================
--- libreoffice-7.4.3.2.orig/configure.ac
+++ libreoffice-7.4.3.2/configure.ac
@@ -10594,7 +10594,7 @@ if test "$with_system_libfixmath" = "yes
AC_LANG_PUSH([C++])
AC_CHECK_HEADER([libfixmath/fix16.hpp], [],
[AC_MSG_ERROR([libfixmath/fix16.hpp not found. install libfixmath])], [])
- AC_CHECK_LIB([libfixmath], [fix16_mul], [:], [AC_MSG_ERROR(libfixmath lib not found or functional)], [])
+ AC_SEARCH_LIBS([fix16_mul], [fixmath libfixmath], [:], [AC_MSG_ERROR(libfixmath lib not found or functional)], [])
AC_LANG_POP([C++])
else
AC_MSG_RESULT([internal])