diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2004-08-16 02:33:05 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2004-08-16 02:33:05 +0000 |
commit | c1a0f8ede9b1500fbfeeddd49e14619623f520ad (patch) | |
tree | da64bfdf1b4f9333a4a03d016667a79a61bbe190 /textproc/xmlppm/Makefile | |
parent | Don't check the base system when PACKAGE_BUILDING (diff) |
BROKEN on 5.x: Does not compile with gcc 3.4.2
Diffstat (limited to 'textproc/xmlppm/Makefile')
-rw-r--r-- | textproc/xmlppm/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/textproc/xmlppm/Makefile b/textproc/xmlppm/Makefile index 029c5089b6d6..f6949b663674 100644 --- a/textproc/xmlppm/Makefile +++ b/textproc/xmlppm/Makefile @@ -27,6 +27,12 @@ USE_ICONV= yes MAKE_ARGS= CC="${CXX}" OPT_FLAGS="${CXXFLAGS} -I${LOCALBASE}/include" \ LDFLAGS="-L${LOCALBASE}/lib -lexpat -liconv" +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 502126 +BROKEN= "Does not compile with gcc 3.4.2" +.endif + do-install: ${INSTALL_PROGRAM} ${WRKSRC}/xmlppm ${PREFIX}/bin ${INSTALL_PROGRAM} ${WRKSRC}/xmlunppm ${PREFIX}/bin @@ -35,4 +41,4 @@ do-install: ${INSTALL_DATA} ${WRKSRC}/../README ${DOCSDIR} .endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> |