diff options
author | Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2014-05-28 16:45:55 +0000 |
---|---|---|
committer | Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2014-05-28 16:45:55 +0000 |
commit | 3f64b58c6fd21d5c4e7d094029cf2c57f1c3a6a6 (patch) | |
tree | fee0b8a655136505a21b803ca20a98fa64ecb1ee /www | |
parent | da6925543d25dcab6184a5a7c968ad51d0488287 (diff) | |
download | freebsd-ports-3f64b58c6fd21d5c4e7d094029cf2c57f1c3a6a6.zip |
- Check OPSYS along with OSVERSION
Suggested by: marino
Diffstat (limited to 'www')
-rw-r--r-- | www/nghttp2/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/www/nghttp2/Makefile b/www/nghttp2/Makefile index 4d8892a2ce83..ad7469c1937f 100644 --- a/www/nghttp2/Makefile +++ b/www/nghttp2/Makefile @@ -45,7 +45,7 @@ HPACK_LIB_DEPENDS= libjansson.so:${PORTSDIR}/devel/jansson IGNORE= nghttp2 requires OpenSSL 1.0.1+ .endif -.if ${OSVERSION} >= 1000000 +.if ${OPSYS} == FreeBSD && ${OSVERSION} >= 1000000 CONFIGURE_ARGS+=--with-jemalloc .endif |