diff options
author | netchild <netchild@FreeBSD.org> | 2006-03-05 16:17:53 +0000 |
---|---|---|
committer | netchild <netchild@FreeBSD.org> | 2006-03-05 16:17:53 +0000 |
commit | a2f0dd988a5d70c6063a9c669bcb50a0399301e3 (patch) | |
tree | cf2525bd60b3a643d0217ce14f1355aaeac159aa /net/openh323 | |
parent | 5155634d2f20f47960d920d7007922d3a798f559 (diff) | |
download | FreeBSD-ports-a2f0dd988a5d70c6063a9c669bcb50a0399301e3.zip FreeBSD-ports-a2f0dd988a5d70c6063a9c669bcb50a0399301e3.tar.gz |
Fix the amd64 build (and perhaps other arches which need -fPIC).
Maintainer informed.
Tested on: amd64 tinderbox
Approved by: portmgr (linnimon)
Diffstat (limited to 'net/openh323')
-rw-r--r-- | net/openh323/Makefile | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/net/openh323/Makefile b/net/openh323/Makefile index 6dafd32..10517f5 100644 --- a/net/openh323/Makefile +++ b/net/openh323/Makefile @@ -27,9 +27,15 @@ USE_AUTOTOOLS= autoconf:259 GNU_CONFIGURE= yes INSTALLS_SHLIB= yes -CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS} -I${LOCALBASE}/include -I${WRKSRC}/include" LDFLAGS="${LDFLAGS} -L${LOCALBASE}/lib" BUILDTIME="YES" +.include <bsd.port.pre.mk> + +.if (${ARCH} == "amd64") || (${ARCH} == "ia64") || (${ARCH} == "sparc64") +CFLAGS+= -fPIC +.endif + +CONFIGURE_ENV+= CPPFLAGS="${CPPFLAGS} -I${LOCALBASE}/include -I${WRKSRC}/include" LDFLAGS="${LDFLAGS} -L${LOCALBASE}/lib" BUILDTIME="YES" NO_FILTER_SHLIBS= yes ALL_TARGET= optshared MAKE_ENV= BUILDTIME="YES" -.include <bsd.port.mk> +.include <bsd.port.post.mk> |