diff options
author | Kirill Ponomarev <krion@FreeBSD.org> | 2005-01-31 10:40:58 +0000 |
---|---|---|
committer | Kirill Ponomarev <krion@FreeBSD.org> | 2005-01-31 10:40:58 +0000 |
commit | 1d4301b233bb228332ed1fda522eb9d90ada0303 (patch) | |
tree | b5d791582c47ecda48dcc7d81235464a36ac67aa /graphics | |
parent | a329c6a9479fc7cbab4d597a42482c36479b564c (diff) |
BROKEN on amd64: Does not compile on amd64 (needs -fPIC)
Notes
Notes:
svn path=/head/; revision=127768
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/aqsis/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/graphics/aqsis/Makefile b/graphics/aqsis/Makefile index c01eff84a65e..50a492e3eafd 100644 --- a/graphics/aqsis/Makefile +++ b/graphics/aqsis/Makefile @@ -34,9 +34,15 @@ CFLAGS+= -O0 CPPFLAGS= -I${LOCALBASE}/include ${PTHREAD_CFLAGS} -fPIC LDFLAGS= -L${LOCALBASE}/lib ${PTHREAD_LIBS} +.include <bsd.port.pre.mk> + +.if ${ARCH} == "amd64" +BROKEN= "Does not compile on amd64 (needs -fPIC)" +.endif + post-patch: @${REINPLACE_CMD} -e 's|PLUGIN_FLAGS=|#PLUGIN_FLAGS=|g' ${WRKSRC}/configure @${GREP} -lR "malloc\.h" ${WRKSRC} | ${XARGS} ${REINPLACE_CMD} -e \ 's|malloc\.h|stdlib.h|g' -.include <bsd.port.mk> +.include <bsd.port.post.mk> |