Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 19 Aug 2020 00:44:38 +0000 (UTC)
From:      Piotr Kubaj <pkubaj@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r545268 - head/editors/libreoffice
Message-ID:  <202008190044.07J0icbq086050@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: pkubaj
Date: Wed Aug 19 00:44:38 2020
New Revision: 545268
URL: https://svnweb.freebsd.org/changeset/ports/545268

Log:
  editors/libreoffice: fix build on powerpc*
  
  Skia doesn't support big-endian architectures.

Modified:
  head/editors/libreoffice/Makefile

Modified: head/editors/libreoffice/Makefile
==============================================================================
--- head/editors/libreoffice/Makefile	Wed Aug 19 00:29:08 2020	(r545267)
+++ head/editors/libreoffice/Makefile	Wed Aug 19 00:44:38 2020	(r545268)
@@ -276,6 +276,10 @@ MAKE_ENV+=	verbose=1
 
 .include <bsd.port.pre.mk>
 
+.if ${ARCH:Mpowerpc*}
+CONFIGURE_ARGS+=	--disable-skia
+.endif
+
 .if ${PORT_OPTIONS:MGTK3}
 WARNING=	"GTK3 visual style is incomplete yet, build at your own risk"
 .endif



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202008190044.07J0icbq086050>