diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2004-03-18 12:53:31 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2004-03-18 12:53:31 +0000 |
commit | 455b8c2f09bb7b71741c05581a9c9c009ef9618b (patch) | |
tree | eedea073eaaa015578caffaae59e4498f897e1fd /graphics/tulip | |
parent | 22595865dbdf22a96edbb1a26e1b6783a899f33f (diff) |
Notes
Diffstat (limited to 'graphics/tulip')
-rw-r--r-- | graphics/tulip/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/graphics/tulip/Makefile b/graphics/tulip/Makefile index 1bf7c2543e95..3c861d536b5c 100644 --- a/graphics/tulip/Makefile +++ b/graphics/tulip/Makefile @@ -37,6 +37,12 @@ CPPFLAGS= -I${LOCALBASE}/include -I${PREFIX}/include \ LDFLAGS= -Wl,-export-dynamic -L${LOCALBASE}/lib -L${X11BASE}/lib \ -ljpeg -L${QT_PREFIX}/lib -lcompat ${PTHREAD_LIBS} +.include <bsd.port.pre.mk> + +.if ${ARCH} == "amd64" || ${ARCH} == "ia64" +BROKEN= "Does not compile on amd64 or ia64 (missing -fPIC from shared library objects)" +.endif + post-extract: @${FIND} ${WRKSRC} -name "moc_*" -delete @@ -50,4 +56,4 @@ post-patch: s|-release @TULIP_VERSION@|| ; \ s|LDFLAGS = -module|LDFLAGS = @LDFLAGS@ -module|g' -.include <bsd.port.mk> +.include <bsd.port.post.mk> |