From bae6e082545bc612fd96d754f0eda7c4417d4a2b Mon Sep 17 00:00:00 2001 From: Andrew Benson Date: Thu, 14 Oct 2021 17:44:52 -0500 Subject: [PATCH] libreoffice: enable java support on x86_64-musl Without Java support, LibreBase is severely limited in its capabilities. This should put -Base on x86_64-musl at the same parity as on glibc. The reported issue was that -Base would not create a new HSQLDB database, which relies on Java support. --- srcpkgs/libreoffice/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/libreoffice/template b/srcpkgs/libreoffice/template index 840077229cf..581cceaa98a 100644 --- a/srcpkgs/libreoffice/template +++ b/srcpkgs/libreoffice/template @@ -1,7 +1,7 @@ # Template file for 'libreoffice' pkgname=libreoffice version=7.1.3.2 -revision=3 +revision=4 build_style=meta make_build_target="build-nocheck" nocross="Several dependencies are nocross=yes" @@ -230,7 +230,7 @@ case "$XBPS_TARGET_MACHINE" in i686*) # Broken unit tests CXXFLAGS+=" -DDISABLE_CVE_TESTS=1" ;; - x86_64) build_options_default="java" + x86_64*) build_options_default="java" makedepends+=" apache-ant openjdk11 " ;; esac