summaryrefslogtreecommitdiff
path: root/multimedia/libxine/Makefile
diff options
context:
space:
mode:
authorPiotr Kubaj <pkubaj@FreeBSD.org>2021-06-16 09:00:19 +0000
committerPiotr Kubaj <pkubaj@FreeBSD.org>2021-06-16 09:00:19 +0000
commite95168491dca197c91b8b11d105c208d0c5245c2 (patch)
tree83413c3b22e88b9239dde594bc3df47168752538 /multimedia/libxine/Makefile
parentsysutils/cbsd: fix packaging on non-x86 (diff)
multimedia/libxine: fix build on powerpc
Use GNU assembler: ppcasm_string.S:46:15: error: unsupported directive '.stabs' .stabs "src/xine-utils",100,0,0,.
Diffstat (limited to 'multimedia/libxine/Makefile')
-rw-r--r--multimedia/libxine/Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/multimedia/libxine/Makefile b/multimedia/libxine/Makefile
index a8773dfef81d..1d422f8d8a47 100644
--- a/multimedia/libxine/Makefile
+++ b/multimedia/libxine/Makefile
@@ -159,6 +159,9 @@ XVMC_CONFIGURE_ENABLE= xvmc
.if ${ARCH} == aarch64
BUILD_DEPENDS+= as:devel/binutils
+.elif ${ARCH} == powerpc
+BUILD_DEPENDS+= as:devel/binutils
+CFLAGS+= -fno-integrated-as
.endif
.if !${PORT_OPTIONS:MGNUTLS} && !${PORT_OPTIONS:MOPENSSL}