diff options
author | Alexander Leidinger <netchild@FreeBSD.org> | 2006-03-05 16:17:53 +0000 |
---|---|---|
committer | Alexander Leidinger <netchild@FreeBSD.org> | 2006-03-05 16:17:53 +0000 |
commit | f18c95d97c983df9f62e41400c7b1ead1b6ec7ea (patch) | |
tree | b558340ce5b7c6c2e34d39f37506fd2900b5476f /net/openh323 | |
parent | 64bf6428bfd98e6a083f9222029b746746530857 (diff) | |
download | ports-f18c95d97c983df9f62e41400c7b1ead1b6ec7ea.tar.gz ports-f18c95d97c983df9f62e41400c7b1ead1b6ec7ea.zip |
Notes
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 6dafd32d2e6d..10517f59056f 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> |