diff options
author | jperkin <jperkin> | 2015-04-23 09:31:34 +0000 |
---|---|---|
committer | jperkin <jperkin> | 2015-04-23 09:31:34 +0000 |
commit | 6560605f74818a11aad5ede4bdd65d4b7f8b5cc9 (patch) | |
tree | 5769a9f5559e02e35aa8a44498825152122a5bd0 /www | |
parent | 924c123dc4f186517a2851f85b7c59e9136df886 (diff) | |
download | pkgsrc-6560605f74818a11aad5ede4bdd65d4b7f8b5cc9.tar.gz |
Explicitly disable epoll on illumos, provided for Linux compat only.
Diffstat (limited to 'www')
-rw-r--r-- | www/varnish/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/www/varnish/Makefile b/www/varnish/Makefile index 7775aac1ae0..d2210e748c3 100644 --- a/www/varnish/Makefile +++ b/www/varnish/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.24 2015/03/09 00:47:05 mspo Exp $ +# $NetBSD: Makefile,v 1.25 2015/04/23 09:31:34 jperkin Exp $ # DISTNAME= varnish-3.0.6 @@ -53,6 +53,8 @@ CONFIGURE_ARGS+= --with-rst2html=${PREFIX}/bin/rst2html-${PYVERSSUFFIX}.py .include "../../mk/bsd.prefs.mk" .if ${OPSYS} == "SunOS" +# Explicitly disable epoll on illumos, provided for Linux compat only. +CONFIGURE_ENV+= ac_cv_func_epoll_ctl=no . if ${PKGSRC_COMPILER} == "sunpro" CONFIGURE_ENV+= VCC_CC="cc ${_COMPILER_ABI_FLAG.${ABI}} -Kpic -G -o %o %s" . else |