Version in base suite: 6.1.5-3+deb10u5 Base version: libreoffice_6.1.5-3+deb10u5 Target version: libreoffice_6.1.5-3+deb10u6 Base file: /srv/ftp-master.debian.org/ftp/pool/main/libr/libreoffice/libreoffice_6.1.5-3+deb10u5.dsc Target file: /srv/ftp-master.debian.org/policy/pool/main/libr/libreoffice/libreoffice_6.1.5-3+deb10u6.dsc changelog | 7 +++++++ patches/glm-0.9.9-ctor.diff | 36 ++++++++++++++++++++++++++++++++++++ patches/series | 1 + 3 files changed, 44 insertions(+) diff -Nru libreoffice-6.1.5/debian/changelog libreoffice-6.1.5/debian/changelog --- libreoffice-6.1.5/debian/changelog 2019-10-31 17:26:41.000000000 +0000 +++ libreoffice-6.1.5/debian/changelog 2020-02-01 14:13:43.000000000 +0000 @@ -1,3 +1,10 @@ +libreoffice (1:6.1.5-3+deb10u6) buster; urgency=medium + + * debian/patches/glm-0.9.9-ctor.diff: add from master, fix opengl slide + transitions with glm >= 0.9.9 (closes: #917927) + + -- Rene Engelhard Sat, 01 Feb 2020 15:13:43 +0100 + libreoffice (1:6.1.5-3+deb10u5) buster; urgency=medium * debian/patches/Postgresql-12-no-adsrc.diff: add from diff -Nru libreoffice-6.1.5/debian/patches/glm-0.9.9-ctor.diff libreoffice-6.1.5/debian/patches/glm-0.9.9-ctor.diff --- libreoffice-6.1.5/debian/patches/glm-0.9.9-ctor.diff 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-6.1.5/debian/patches/glm-0.9.9-ctor.diff 2020-02-01 13:28:25.000000000 +0000 @@ -0,0 +1,36 @@ +From fb27784fcbd3383a7b2648714de19ae5f3818fa5 Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?Caol=C3=A1n=20McNamara?= +Date: Fri, 31 Jan 2020 21:45:11 +0000 +Subject: opengl slide transitions not working with glm >= GLM 0.9.9.0 +MIME-Version: 1.0 +Content-Type: text/plain; charset=UTF-8 +Content-Transfer-Encoding: 8bit + +tracked it down to... + +Removed default initialization, use GLM_FORCE_CTOR_INIT to restore the old behavior +so adding in GLM_FORCE_CTOR_INIT to get them working again + +Change-Id: I1c6e7d8eb748fce40f0c518ff708708e5fb1e3d2 +Reviewed-on: https://gerrit.libreoffice.org/c/core/+/87789 +Tested-by: Jenkins +Reviewed-by: Caolán McNamara +--- + slideshow/Library_OGLTrans.mk | 1 + + 1 file changed, 1 insertion(+) + +diff --git a/slideshow/Library_OGLTrans.mk b/slideshow/Library_OGLTrans.mk +index 4eca2a1ecaa3..9b64181d6a46 100644 +--- a/slideshow/Library_OGLTrans.mk ++++ b/slideshow/Library_OGLTrans.mk +@@ -17,6 +17,7 @@ endif + + $(eval $(call gb_Library_add_defs,OGLTrans,\ + -DGLM_FORCE_RADIANS \ ++ -DGLM_FORCE_CTOR_INIT \ + )) + + $(eval $(call gb_Library_use_sdk_api,OGLTrans)) +-- +cgit v1.2.1 + diff -Nru libreoffice-6.1.5/debian/patches/series libreoffice-6.1.5/debian/patches/series --- libreoffice-6.1.5/debian/patches/series 2019-10-31 17:26:23.000000000 +0000 +++ libreoffice-6.1.5/debian/patches/series 2020-02-01 13:28:40.000000000 +0000 @@ -64,3 +64,4 @@ Improve-check.diff allow-link-updates-in-an-intermediate-linked-document.diff Postgresql-12-no-adsrc.diff +glm-0.9.9-ctor.diff