diff options
author | Mark Linimon <linimon@FreeBSD.org> | 2003-12-22 02:23:04 +0000 |
---|---|---|
committer | Mark Linimon <linimon@FreeBSD.org> | 2003-12-22 02:23:04 +0000 |
commit | 9ecc89dfc3a5b9f21caa5ce24ae9c05786e624b3 (patch) | |
tree | 9c38dee9d6fbac58f3bad6d460dbe4270f3eeb2d | |
parent | Per bento logs, mark as broken on recent 5.x versions. (diff) |
Mark as broken on recent 5.x versions due to gcc3.3 import: this appears,
once again, to be the preprocessor's new restrictions on multiline
string constants. Informed maintainer.
-rw-r--r-- | sysutils/ipsc/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sysutils/ipsc/Makefile b/sysutils/ipsc/Makefile index 5ce0c50458fb..5b5c130449b1 100644 --- a/sysutils/ipsc/Makefile +++ b/sysutils/ipsc/Makefile @@ -30,6 +30,10 @@ ALL_TARGET= all ALL_TARGET= ipsc .endif +.if ${OSVERSION} >= 500113 +BROKEN= "Does not compile on FreeBSD ${OSVERSION}" +.endif + post-extract: @${LN} -s ${WRKDIRPREFIX}${.CURDIR}/../prips/work/prips \ ${WRKDIR}/prips |