aboutsummaryrefslogtreecommitdiffstats
path: root/graphics/tulip
diff options
context:
space:
mode:
authorkris <kris@FreeBSD.org>2004-03-18 20:53:31 +0800
committerkris <kris@FreeBSD.org>2004-03-18 20:53:31 +0800
commit3528854f279a9332d6a867fd06aa2ef9400c065e (patch)
tree5ccb1b404b53bf54c35ba11406cf47c9bb1af585 /graphics/tulip
parent6c6b89a7078ec621fa436eeb4f163ebb5b225519 (diff)
downloadfreebsd-ports-graphics-3528854f279a9332d6a867fd06aa2ef9400c065e.tar.gz
freebsd-ports-graphics-3528854f279a9332d6a867fd06aa2ef9400c065e.tar.zst
freebsd-ports-graphics-3528854f279a9332d6a867fd06aa2ef9400c065e.zip
BROKEN on amd64 and ia64: Does not compile (missing -fPIC from shared library objects)
Diffstat (limited to 'graphics/tulip')
-rw-r--r--graphics/tulip/Makefile8
1 files changed, 7 insertions, 1 deletions
diff --git a/graphics/tulip/Makefile b/graphics/tulip/Makefile
index 1bf7c2543e9..3c861d536b5 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>