Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id A367A84FE0 for ; Sun, 30 Jul 2023 21:28:28 +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 iHQQL90sraua for ; Sun, 30 Jul 2023 21:28:28 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 054AA84FE1 for ; Sun, 30 Jul 2023 21:28:28 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 2BCAEFBDB; Sun, 30 Jul 2023 21:28:27 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1690752507283870" MIME-Version: 1.0 Date: Sun, 30 Jul 2023 21:28:27 +0000 From: "Tobias Nygren" Subject: CVS commit: pkgsrc/devel/libevent To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: tnn@netbsd.org X-Mailer: log_accum Message-Id: <20230730212827.2BCAEFBDB@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1690752507283870 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: tnn Date: Sun Jul 30 21:28:27 UTC 2023 Modified Files: pkgsrc/devel/libevent: Makefile Log Message: libevent: disable epoll(2) on NetBSD too To generate a diff of this commit: cvs rdiff -u -r1.56 -r1.57 pkgsrc/devel/libevent/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1690752507283870 Content-Disposition: inline Content-Length: 869 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/libevent/Makefile diff -u pkgsrc/devel/libevent/Makefile:1.56 pkgsrc/devel/libevent/Makefile:1.57 --- pkgsrc/devel/libevent/Makefile:1.56 Mon Jul 6 10:08:58 2020 +++ pkgsrc/devel/libevent/Makefile Sun Jul 30 21:28:27 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.56 2020/07/06 10:08:58 adam Exp $ +# $NetBSD: Makefile,v 1.57 2023/07/30 21:28:27 tnn Exp $ .include "../../devel/libevent/Makefile.common" @@ -22,8 +22,9 @@ CPPFLAGS.QNX+= -D__EXT_POSIX2 .include "../../mk/bsd.prefs.mk" -# Explicitly disable epoll on illumos, provided for Linux compat only. +# Explicitly disable epoll on illumos & NetBSD, provided for Linux compat only. CONFIGURE_ENV.SunOS+= ac_cv_func_epoll_ctl=no +CONFIGURE_ENV.NetBSD+= ac_cv_func_epoll_ctl=no .if !empty(MACHINE_PLATFORM:MHPUX-11.11-*) CONFIGURE_ENV+= ac_cv_func_strtoll=yes --_----------=_1690752507283870--