diff options
author | Piotr Kubaj <pkubaj@FreeBSD.org> | 2020-08-19 08:44:38 +0800 |
---|---|---|
committer | Piotr Kubaj <pkubaj@FreeBSD.org> | 2020-08-19 08:44:38 +0800 |
commit | 483e1302063b4d3c0af2eda4d45654552b39e551 (patch) | |
tree | 1ae0ffe176a3043b6936aff5681fc87ee57987d8 /editors/libreoffice | |
parent | 6a369b81f20c6b37d24d5d7660ea9d89d08bd9bd (diff) | |
download | freebsd-ports-gnome-483e1302063b4d3c0af2eda4d45654552b39e551.tar.gz freebsd-ports-gnome-483e1302063b4d3c0af2eda4d45654552b39e551.tar.zst freebsd-ports-gnome-483e1302063b4d3c0af2eda4d45654552b39e551.zip |
editors/libreoffice: fix build on powerpc*
Skia doesn't support big-endian architectures.
Diffstat (limited to 'editors/libreoffice')
-rw-r--r-- | editors/libreoffice/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/editors/libreoffice/Makefile b/editors/libreoffice/Makefile index 088414a34e3e..303742525b02 100644 --- a/editors/libreoffice/Makefile +++ b/editors/libreoffice/Makefile @@ -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 |