diff options
author | jperkin <jperkin@pkgsrc.org> | 2015-04-23 09:29:22 +0000 |
---|---|---|
committer | jperkin <jperkin@pkgsrc.org> | 2015-04-23 09:29:22 +0000 |
commit | ab1e4983a3adbab621a6c88c8235c5e4a0d5e874 (patch) | |
tree | f9c73ca920b698407a86a5b3d731aaf6d1766f11 /print/cups | |
parent | ff19a5caf2490c62adf1520ba569c365ceac57be (diff) | |
download | pkgsrc-ab1e4983a3adbab621a6c88c8235c5e4a0d5e874.tar.gz |
Explicitly disable epoll on illumos, it is provided for Linux compat only.
Diffstat (limited to 'print/cups')
-rw-r--r-- | print/cups/Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/print/cups/Makefile b/print/cups/Makefile index aa0deb89069..89e7f754131 100644 --- a/print/cups/Makefile +++ b/print/cups/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.217 2015/03/14 21:07:37 tnn Exp $ +# $NetBSD: Makefile,v 1.218 2015/04/23 09:29:22 jperkin Exp $ # # The CUPS author is very good about taking back changes into the main # CUPS distribution. The correct place to send patches or bug-fixes is: @@ -56,8 +56,10 @@ CONFIGURE_ENV+= DSOFLAGS=${LDFLAGS:M*:Q} .include "options.mk" .if ${OPSYS} == "SunOS" -LIBS_SSP = -lssp_nonshared -lssp -CONFIGURE_ENV+= LIBS_SSP=${LIBS_SSP:M*:Q} +LIBS_SSP= -lssp_nonshared -lssp +CONFIGURE_ENV+= LIBS_SSP=${LIBS_SSP:M*:Q} +# Explicitly disable epoll on illumos, it is provided for Linux compat only. +CONFIGURE_ENV+= ac_cv_func_epoll_create=no .endif LIBS+= ${BUILDLINK_LDADD.iconv} |