diff options
author | kris <kris@FreeBSD.org> | 2004-05-30 06:52:59 +0000 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2004-05-30 06:52:59 +0000 |
commit | 46b3ff9c72bdca33b67b094263f9bc711a132f19 (patch) | |
tree | ad9b99b2cb2f355d1341536eaa07e8c766f68da2 /www/clearsilver | |
parent | f88f0874f77056c8fc57b85b5c60c4a352d2013a (diff) | |
download | FreeBSD-ports-46b3ff9c72bdca33b67b094263f9bc711a132f19.zip FreeBSD-ports-46b3ff9c72bdca33b67b094263f9bc711a132f19.tar.gz |
BROKEN on amd64: Does not compile (missing -fPIC from shared libraries)
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 08c72f3..a00d89c 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> |