diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2004-05-30 06:52:59 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2004-05-30 06:52:59 +0000 |
commit | e352b7c102aa7e49158f766009e9f19dc1436c37 (patch) | |
tree | 2ead3d8f2fe298af2be682b654156825f727aa8f /www/clearsilver | |
parent | 9f4d61c418c269533b4e8617f7302cd1acbbc421 (diff) | |
download | ports-e352b7c102aa7e49158f766009e9f19dc1436c37.tar.gz ports-e352b7c102aa7e49158f766009e9f19dc1436c37.zip |
BROKEN on amd64: Does not compile (missing -fPIC from shared libraries)
Notes
Notes:
svn path=/head/; revision=110355
Diffstat (limited to 'www/clearsilver')
-rw-r--r-- | www/clearsilver/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/www/clearsilver/Makefile b/www/clearsilver/Makefile index 08c72f30bd24..a00d89c73bd2 100644 --- a/www/clearsilver/Makefile +++ b/www/clearsilver/Makefile @@ -60,6 +60,12 @@ MAN3= cBroadcast.3 cCreate.3 cDestroy.3 cSignal.3 cWait.3 \ skipInsert.3 skipNewList.3 skipNext.3 skipRelease.3 skipSearch.3 \ wdb_keys.3 +.include <bsd.port.pre.mk> + +.if ${ARCH} == "amd64" +BROKEN= "Does not compile on amd64 (missing -fPIC from shared libraries)" +.endif + post-patch: @# Exclude lemon.c, it gives some errors and its not used at all. @${MV} ${WRKSRC}/cs/lemon.c ${WRKSRC}/cs/lemon.c.not_used @@ -69,4 +75,4 @@ post-patch: @# Avoid rebuiling man pages @${REINPLACE_CMD} -e 's,all man,all,g' ${WRKSRC}/Makefile -.include <bsd.port.mk> +.include <bsd.port.post.mk> |