diff options
author | edwin <edwin@FreeBSD.org> | 2008-06-18 16:39:01 +0800 |
---|---|---|
committer | edwin <edwin@FreeBSD.org> | 2008-06-18 16:39:01 +0800 |
commit | debcbad3bae3eaa3453f0d2517163e2e268406cc (patch) | |
tree | 2aeedb6fbd253170f796516597c264fde3e26b49 /audio/liba52 | |
parent | a51ed86ec3283b550f16eb8f29253066342a2102 (diff) | |
download | freebsd-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/Makefile | 2 |
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 |