diff options
author | daichi <daichi@FreeBSD.org> | 2007-09-25 21:03:50 +0800 |
---|---|---|
committer | daichi <daichi@FreeBSD.org> | 2007-09-25 21:03:50 +0800 |
commit | 7ef4e69b41d7dee637dc62233c335afe76b12253 (patch) | |
tree | 267aa84042fb16f51c02de2ee9b53885e54cdd36 /lang | |
parent | c95f80b771bbb4c63663d6e0af39aa562124f1b8 (diff) | |
download | freebsd-ports-gnome-7ef4e69b41d7dee637dc62233c335afe76b12253.tar.gz freebsd-ports-gnome-7ef4e69b41d7dee637dc62233c335afe76b12253.tar.zst freebsd-ports-gnome-7ef4e69b41d7dee637dc62233c335afe76b12253.zip |
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)
Diffstat (limited to 'lang')
-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 37208962e73e..47e39415fca0 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 |