diff options
author | linimon <linimon@FreeBSD.org> | 2003-12-22 02:23:04 +0000 |
---|---|---|
committer | linimon <linimon@FreeBSD.org> | 2003-12-22 02:23:04 +0000 |
commit | ac704f7607b2f41b2273951f3b8383129b73b3b4 (patch) | |
tree | fbf249aa9523ab35a0f65a71da2652f4527e62df | |
parent | e0b75ad35865537d22cc7012af8d92f92029165a (diff) | |
download | FreeBSD-ports-ac704f7607b2f41b2273951f3b8383129b73b3b4.zip FreeBSD-ports-ac704f7607b2f41b2273951f3b8383129b73b3b4.tar.gz |
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 5ce0c50..5b5c130 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 |