diff options
author | linimon <linimon@FreeBSD.org> | 2003-12-22 07:53:55 +0800 |
---|---|---|
committer | linimon <linimon@FreeBSD.org> | 2003-12-22 07:53:55 +0800 |
commit | 55fe37c8025cd197efa6b0de38c60592f1a4fddd (patch) | |
tree | 9d6987edeb07865dfa629a5c3e7037df9307d625 | |
parent | 1a014af1e946976ebf1b0ae8436724c4248b35f7 (diff) | |
download | freebsd-ports-graphics-55fe37c8025cd197efa6b0de38c60592f1a4fddd.tar.gz freebsd-ports-graphics-55fe37c8025cd197efa6b0de38c60592f1a4fddd.tar.zst freebsd-ports-graphics-55fe37c8025cd197efa6b0de38c60592f1a4fddd.zip |
Per bento logs, mark as broken on 5.x due to stricter handling of multiline
string constants in gcc3.3. Informed maintainer.
-rw-r--r-- | games/taxipilot/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/games/taxipilot/Makefile b/games/taxipilot/Makefile index e03b21246e6..91ef8e00d1f 100644 --- a/games/taxipilot/Makefile +++ b/games/taxipilot/Makefile @@ -21,4 +21,10 @@ CONFIGURE_TARGET= CONFIGURE_ARGS+=--build=${MACHINE_ARCH}-portbld-freebsd${OSREL} USE_GMAKE= yes -.include <bsd.port.mk> +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 500113 +BROKEN= "Does not compile on FreeBSD ${OSVERSION}" +.endif + +.include <bsd.port.post.mk> |