diff options
author | linimon <linimon@FreeBSD.org> | 2003-12-08 14:40:45 +0800 |
---|---|---|
committer | linimon <linimon@FreeBSD.org> | 2003-12-08 14:40:45 +0800 |
commit | 8a3accf4632e9c5d5ec9d260b2cdc8fc674dab8a (patch) | |
tree | b44ebdccc77bd32d4480b11597e2bc638c54b51c /devel/ccdoc | |
parent | 25cd046dfb71af241b493d6546854f8738383321 (diff) | |
download | freebsd-ports-gnome-8a3accf4632e9c5d5ec9d260b2cdc8fc674dab8a.tar.gz freebsd-ports-gnome-8a3accf4632e9c5d5ec9d260b2cdc8fc674dab8a.tar.zst freebsd-ports-gnome-8a3accf4632e9c5d5ec9d260b2cdc8fc674dab8a.zip |
Mark as broken on 5.x (stricter gcc3.3 string continuation handling).
Diffstat (limited to 'devel/ccdoc')
-rw-r--r-- | devel/ccdoc/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/devel/ccdoc/Makefile b/devel/ccdoc/Makefile index 13dab00b0386..60d3c248a7ae 100644 --- a/devel/ccdoc/Makefile +++ b/devel/ccdoc/Makefile @@ -22,6 +22,12 @@ USE_PERL5= yes DOCDIR=${PREFIX}/share/doc/ccdoc +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 500113 +BROKEN= "Does not compile on FreeBSD ${OSVERSION} (gcc3.3 string continuation)" +.endif + pre-patch: @${ECHO} "Stripping ^M from all the files..." @${FIND} ${WRKSRC} -type f | ${XARGS} perl -pi -e 's/\r//' @@ -44,4 +50,4 @@ post-install: ${INSTALL_MAN} ${WRKSRC}/doc/autodoc/* ${DOCDIR}/autodoc .endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> |