diff options
author | flo <flo@FreeBSD.org> | 2011-01-25 07:19:06 +0800 |
---|---|---|
committer | flo <flo@FreeBSD.org> | 2011-01-25 07:19:06 +0800 |
commit | 3e93453c205afca1a2bbf2effc7e2d78e8de5bfa (patch) | |
tree | d7b7fd13368d5ff87f1cea880ae1a5a7bcf406cd | |
parent | bf3e3ee65cecb91c9e65e1b00f772cd911d2ea3f (diff) | |
download | freebsd-ports-graphics-3e93453c205afca1a2bbf2effc7e2d78e8de5bfa.tar.gz freebsd-ports-graphics-3e93453c205afca1a2bbf2effc7e2d78e8de5bfa.tar.zst freebsd-ports-graphics-3e93453c205afca1a2bbf2effc7e2d78e8de5bfa.zip |
- -fPIC is also required on powerpc
PR: ports/153826
Submitted by: andreast
Approved by: maintainer timeout (15 days)
Feature safe: yes
-rw-r--r-- | net/openh323/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/openh323/Makefile b/net/openh323/Makefile index 00c3fadd94f..cc66ae41243 100644 --- a/net/openh323/Makefile +++ b/net/openh323/Makefile @@ -46,7 +46,7 @@ CONFIGURE_ARGS+= --enable-localspeex=no CONFIGURE_ARGS+= --enable-localspeex=yes .endif -.if (${ARCH} == "amd64") || (${ARCH} == "ia64") || (${ARCH} == "sparc64") +.if (${ARCH} == "amd64") || (${ARCH} == "ia64") || (${ARCH} == "powerpc") || (${ARCH} == "sparc64") CFLAGS+= -fPIC .endif |