aboutsummaryrefslogtreecommitdiffstats
path: root/audio/liba52
diff options
context:
space:
mode:
authoredwin <edwin@FreeBSD.org>2008-06-18 16:39:01 +0800
committeredwin <edwin@FreeBSD.org>2008-06-18 16:39:01 +0800
commitdebcbad3bae3eaa3453f0d2517163e2e268406cc (patch)
tree2aeedb6fbd253170f796516597c264fde3e26b49 /audio/liba52
parenta51ed86ec3283b550f16eb8f29253066342a2102 (diff)
downloadfreebsd-ports-gnome-debcbad3bae3eaa3453f0d2517163e2e268406cc.tar.gz
freebsd-ports-gnome-debcbad3bae3eaa3453f0d2517163e2e268406cc.tar.zst
freebsd-ports-gnome-debcbad3bae3eaa3453f0d2517163e2e268406cc.zip
[PATCH] audio/liba52: powerpc build requires -fPIC
Powerpc is similar to amd64 in that it requires -fPIC when building shared libs PR: ports/122899 Submitted by: Peter Grehan <grehan@FreeBSD.org> Approved by: maintainer timeout
Diffstat (limited to 'audio/liba52')
-rw-r--r--audio/liba52/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/audio/liba52/Makefile b/audio/liba52/Makefile
index c9feadb391da..6f0425c8aa37 100644
--- a/audio/liba52/Makefile
+++ b/audio/liba52/Makefile
@@ -32,7 +32,7 @@ CONFIGURE_ARGS+= --enable-djbfft
.include <bsd.port.pre.mk>
-.if ${ARCH} == "amd64"
+.if ${ARCH} == "amd64" || ${ARCH} == "powerpc"
CFLAGS+= -fPIC
.endif