Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.netbsd.org", Issuer "Postmaster NetBSD.org" (verified OK)) by mollari.NetBSD.org (Postfix) with ESMTPS id A2D507A1BC for ; Mon, 10 Apr 2017 13:10:21 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 0FF0D84DEB; Mon, 10 Apr 2017 13:10:21 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 95B9D84DB9 for ; Mon, 10 Apr 2017 13:10:20 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id y7lagg8Kr-96 for ; Mon, 10 Apr 2017 13:10:20 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 03FB684D73 for ; Mon, 10 Apr 2017 13:10:20 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id F214BFBE4; Mon, 10 Apr 2017 13:10:19 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_149182981935870" MIME-Version: 1.0 Date: Mon, 10 Apr 2017 13:10:19 +0000 From: "Jonathan Perkin" Subject: CVS commit: pkgsrc/x11/modular-xorg-server To: pkgsrc-changes@NetBSD.org Reply-To: jperkin@netbsd.org X-Mailer: log_accum Message-Id: <20170410131019.F214BFBE4@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_149182981935870 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: jperkin Date: Mon Apr 10 13:10:19 UTC 2017 Modified Files: pkgsrc/x11/modular-xorg-server: Makefile.common Log Message: Avoid picking up epoll on illumos. To generate a diff of this commit: cvs rdiff -u -r1.16 -r1.17 pkgsrc/x11/modular-xorg-server/Makefile.common Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_149182981935870 Content-Disposition: inline Content-Length: 943 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/x11/modular-xorg-server/Makefile.common diff -u pkgsrc/x11/modular-xorg-server/Makefile.common:1.16 pkgsrc/x11/modular-xorg-server/Makefile.common:1.17 --- pkgsrc/x11/modular-xorg-server/Makefile.common:1.16 Thu Mar 16 11:56:46 2017 +++ pkgsrc/x11/modular-xorg-server/Makefile.common Mon Apr 10 13:10:19 2017 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.16 2017/03/16 11:56:46 wiz Exp $ +# $NetBSD: Makefile.common,v 1.17 2017/04/10 13:10:19 jperkin Exp $ # used by x11/modular-xorg-server/Makefile # used by x11/modular-xorg-xephyr/Makefile @@ -99,6 +99,9 @@ PLIST.sparc= yes # Avoid to use bsd_kqueue_apm, force to use bsd_apm instead. CONFIGURE_ENV.NetBSD+= ac_cv_header_sys_event_h=no +# Avoid picking up epoll on illumos +CONFIGURE_ENV.SunOS+= ac_cv_func_epoll_create1=no + INSTALLATION_DIRS+= lib/xorg/modules/drivers lib/xorg/modules/input BUILDLINK_API_DEPENDS.MesaLib+= MesaLib>=7.8.0 --_----------=_149182981935870--