aboutsummaryrefslogtreecommitdiff
path: root/audio/liba52
diff options
context:
space:
mode:
authorEdwin Groothuis <edwin@FreeBSD.org>2008-06-18 08:39:01 +0000
committerEdwin Groothuis <edwin@FreeBSD.org>2008-06-18 08:39:01 +0000
commit44337542a8533369184ae9305ea45ded22a609a3 (patch)
tree17231ab6371a3c2f2fe7a1bf09d9fc00c2549089 /audio/liba52
parentcf11a46e4f981f266d6c2eec31b9db19dfb8e2fe (diff)
downloadports-44337542a8533369184ae9305ea45ded22a609a3.tar.gz
ports-44337542a8533369184ae9305ea45ded22a609a3.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
Notes
Notes: svn path=/head/; revision=215051
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