diff options
author | Daichi GOTO <daichi@FreeBSD.org> | 2007-09-25 21:03:50 +0800 |
---|---|---|
committer | Daichi GOTO <daichi@FreeBSD.org> | 2007-09-25 21:03:50 +0800 |
commit | 687f841c0d307ac93b3e7488a8720f036829bc2a (patch) | |
tree | e64be83f22676bfc6701cb12f9bf92de1a5edd03 /lang | |
parent | d5f549acb173e674a0e844210ad34c2e764ec1c0 (diff) | |
download | freebsd-ports-gnome-687f841c0d307ac93b3e7488a8720f036829bc2a.tar.gz freebsd-ports-gnome-687f841c0d307ac93b3e7488a8720f036829bc2a.tar.zst freebsd-ports-gnome-687f841c0d307ac93b3e7488a8720f036829bc2a.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 |