diff options
author | daichi <daichi@FreeBSD.org> | 2007-09-25 13:03:50 +0000 |
---|---|---|
committer | daichi <daichi@FreeBSD.org> | 2007-09-25 13:03:50 +0000 |
commit | 7ef4e69b41d7dee637dc62233c335afe76b12253 (patch) | |
tree | 267aa84042fb16f51c02de2ee9b53885e54cdd36 | |
parent | c95f80b771bbb4c63663d6e0af39aa562124f1b8 (diff) | |
download | FreeBSD-ports-7ef4e69b41d7dee637dc62233c335afe76b12253.zip FreeBSD-ports-7ef4e69b41d7dee637dc62233c335afe76b12253.tar.gz |
neko 1.6.0_1 is for 6.x or over.
- neko uses socket option that 5.x doesn't have.
So added ${OSVERSION} check.
Submitted by: ozawa@ongs.co.jp (maintainer)
-rw-r--r-- | lang/neko/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lang/neko/Makefile b/lang/neko/Makefile index 3720896..47e3941 100644 --- a/lang/neko/Makefile +++ b/lang/neko/Makefile @@ -27,6 +27,10 @@ OPTIONS= APACHE13 "Build with mod_neko for Apache 1.3.x" off \ .include <bsd.port.pre.mk> +.if ${OSVERSION} < 600000 +IGNORE= it is supported on FreeBSD 6.x and later +.endif + # Neko needs boehm-gc with POSIX thread support. BC_DIR!= cd ${PORTSDIR}/devel/boehm-gc && ${MAKE} -V WRKSRC BC_MAKEARGS= BATCH=yes WITH_THREADING=true |