diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2008-01-30 20:12:25 +0000 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2008-01-30 20:12:25 +0000 |
commit | e4225b0f3b5886760cccb4185cc5292970e46c5c (patch) | |
tree | eee6400e8bc7bc870b5e6d9f3914c121af3d45f5 /graphics/cinepaint | |
parent | 1bd4b124d972352396cba7d0c9b1a502e492f1a5 (diff) |
- Mark BROKEN: does not compile on amd64 with GCC 4.2
Reported by: pointyhat
Notes
Notes:
svn path=/head/; revision=206478
Diffstat (limited to 'graphics/cinepaint')
-rw-r--r-- | graphics/cinepaint/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/graphics/cinepaint/Makefile b/graphics/cinepaint/Makefile index db8dc4fed796..6fc820b5f80f 100644 --- a/graphics/cinepaint/Makefile +++ b/graphics/cinepaint/Makefile @@ -45,6 +45,12 @@ PLIST_SUB+= OPENEXR:="" PLIST_SUB+= OPENEXR:="@comment " .endif +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 700042 && ${ARCH} == "amd64" +BROKEN= does not compile +.endif + post-patch: @${REINPLACE_CMD} -e \ 's| -Wall||' \ @@ -58,4 +64,4 @@ post-patch: 's|static GDrawableType|static GImageType|' \ ${WRKSRC}/plug-ins/psd/psd.c -.include <bsd.port.mk> +.include <bsd.port.post.mk> |