Authentication-Results: name.execsw.org; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=sXoUKrZJ; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=FYUBsZex Received: by mail.netbsd.org (Postfix, from userid 605) id 5980584E9E; Fri, 15 Mar 2024 18:07:34 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1710526054; bh=4an6UwbJJ15wu/x1lS96yD9RC1PKvNG78bB1ISsnB84=; h=Date:From:Subject:To:Reply-To:List-Id:List-Unsubscribe; b=sXoUKrZJEO/Wq/WSYryVxybzJ5FGVjphF/sKvogWvX+l9g/vie6ap3V6qeE6NJrVP GebOO/Id0XlL/X8ATbNlUm+FNc9QYls6KOLIyoKV+Zt12EvejpBAo+oEWvdxBJq9dk +rUBHDGPl+kIGeUTyLJSuxE4veJrIVkTgflqs1p4= Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 4A1FC84D1B for ; Fri, 15 Mar 2024 18:07:33 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Authentication-Results: mail.netbsd.org (amavisd-new); dkim=pass (1024-bit key) header.d=netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id 7f-k6_apZJRA for ; Fri, 15 Mar 2024 18:07:32 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 9ABC184D00 for ; Fri, 15 Mar 2024 18:07:32 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1710526052; bh=4an6UwbJJ15wu/x1lS96yD9RC1PKvNG78bB1ISsnB84=; h=Date:From:Subject:To:Reply-To; b=FYUBsZexeqY++CKIZph0N691dqu4pSCvBaXMM3B3lIu8hadrlEjlpdMXN18fy29j0 vFL70vOp9PtWRc7icyxHXlrWpsbt1whCkECQIGwNQFGL/PLZcH0TpbhgTILY8EMXA1 1Clvie23b/cTKjLKilPTBTCi+I5+HYlWgYBbq41A= Received: by cvs.NetBSD.org (Postfix, from userid 500) id 8B5EAFA2C; Fri, 15 Mar 2024 18:07:32 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1710526052174810" MIME-Version: 1.0 Date: Fri, 15 Mar 2024 18:07:32 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/devel/libevent To: pkgsrc-changes@NetBSD.org Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20240315180732.8B5EAFA2C@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1710526052174810 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Fri Mar 15 18:07:32 UTC 2024 Modified Files: pkgsrc/devel/libevent: Makefile Log Message: libevent: Do not attempt to use the broken poll/kqueue in old Darwin. To generate a diff of this commit: cvs rdiff -u -r1.58 -r1.59 pkgsrc/devel/libevent/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1710526052174810 Content-Disposition: inline Content-Length: 991 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.58 pkgsrc/devel/libevent/Makefile:1.59 --- pkgsrc/devel/libevent/Makefile:1.58 Tue Oct 24 22:08:51 2023 +++ pkgsrc/devel/libevent/Makefile Fri Mar 15 18:07:32 2024 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.58 2023/10/24 22:08:51 wiz Exp $ +# $NetBSD: Makefile,v 1.59 2024/03/15 18:07:32 nia Exp $ -PKGREVISION= 1 +PKGREVISION= 2 .include "../../devel/libevent/Makefile.common" PKGNAME= ${DISTNAME:S/-stable//} @@ -27,6 +27,12 @@ CPPFLAGS.QNX+= -D__EXT_POSIX2 CONFIGURE_ENV.SunOS+= ac_cv_func_epoll_ctl=no CONFIGURE_ENV.NetBSD+= ac_cv_func_epoll_ctl=no +# www/links fails to run on old versions of Darwin without this change. +.if ${OPSYS} == "Darwin" && ${OPSYS_VERSION} < 100500 +CONFIGURE_ENV+= ac_cv_func_kqueue=no +CONFIGURE_ENV+= ac_cv_func_poll=no +.endif + .if !empty(MACHINE_PLATFORM:MHPUX-11.11-*) CONFIGURE_ENV+= ac_cv_func_strtoll=yes CPPFLAGS+= -Dstrtoll=__strtoll --_----------=_1710526052174810--