diff options
author | dwhite <dwhite@FreeBSD.org> | 2000-06-05 03:57:36 +0000 |
---|---|---|
committer | dwhite <dwhite@FreeBSD.org> | 2000-06-05 03:57:36 +0000 |
commit | df6a1e9f7ff41190092502e2df854209b169f760 (patch) | |
tree | 5ba75cc090f3f2d147b49ec0484b93901285f54a /devel/py-kqueue | |
parent | 82969e4589eceea5c107b1a4c79414e28ca90da2 (diff) | |
download | FreeBSD-ports-df6a1e9f7ff41190092502e2df854209b169f760.zip FreeBSD-ports-df6a1e9f7ff41190092502e2df854209b169f760.tar.gz |
Conditionalize against $OSVERSION == 500000 too since it doesn't have
kqueue, just to be nice to our older-CURRENT-running friends. kqueue is
in 400018 and 500001 and later.
Suggested by: kris
Diffstat (limited to 'devel/py-kqueue')
-rw-r--r-- | devel/py-kqueue/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/devel/py-kqueue/Makefile b/devel/py-kqueue/Makefile index 9ece8f1..7ef2140 100644 --- a/devel/py-kqueue/Makefile +++ b/devel/py-kqueue/Makefile @@ -19,8 +19,8 @@ RUN_DEPENDS= python:${PORTSDIR}/lang/python .include <bsd.port.pre.mk> -.if ${OSVERSION} < 400018 -FORBIDDEN= requires kqueue (added post-4.0-RELEASE) +.if ( ${OSVERSION} < 400018 || ${OSVERSION} == 500000 ) +FORBIDDEN= requires kqueue .endif # NO_WRKSUBDIR= yes |