Authentication-Results: name.execsw.org; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=FRRQNVZm; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=IsrA4Xj0 Received: by mail.netbsd.org (Postfix, from userid 605) id 3BC7384EC3; Sat, 16 Mar 2024 19:41:03 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1710618063; bh=ZyPUECdfUI+bT8zbpaCBDmonzXHP60+1dfozokL7NMs=; h=Date:From:Subject:To:Reply-To:List-Id:List-Unsubscribe; b=FRRQNVZm2qGOTUdBRAMciYqeYAHMIt0EZe13loo4lqVglE7MEzNvmIzhzuSK2YvxJ pTJ3zypmZS7HUc1bWaMhJSM+vwpTZoZ7K4/ve7/KpIwjMavndNCE2bGHTk7a+fl+uC 9Y1eND8NyloYu+57XbFc6Gs12P2tMl13UC5StaMA= Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 2F62784EB3 for ; Sat, 16 Mar 2024 19:41:02 +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 ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id brH3sH6RNhTJ for ; Sat, 16 Mar 2024 19:41:01 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 80EC084E5A for ; Sat, 16 Mar 2024 19:41:01 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1710618061; bh=ZyPUECdfUI+bT8zbpaCBDmonzXHP60+1dfozokL7NMs=; h=Date:From:Subject:To:Reply-To; b=IsrA4Xj0qdycXCKmXnCSnCnkredWW6Oj0817X6F6M0K4Hu8EQeTlgLsMdVBAVtdzJ fgKWsUXItJqwV/BPzVUQPWW/vWxM3HH9orSQmmHV+X2ONInivf2A7LqEDF1gr/btS7 kwHXtVbiOEguKcCAu8inUjP+YFvAsfrW40a3LgYg= Received: by cvs.NetBSD.org (Postfix, from userid 500) id 78047FA2C; Sat, 16 Mar 2024 19:41:01 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1710618061294760" MIME-Version: 1.0 Date: Sat, 16 Mar 2024 19:41:01 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/net/libpcap To: pkgsrc-changes@NetBSD.org Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20240316194101.78047FA2C@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1710618061294760 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Sat Mar 16 19:41:01 UTC 2024 Modified Files: pkgsrc/net/libpcap: Makefile Log Message: libpcap: Fix building on Mac OS X 10.4 To generate a diff of this commit: cvs rdiff -u -r1.69 -r1.70 pkgsrc/net/libpcap/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1710618061294760 Content-Disposition: inline Content-Length: 870 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/net/libpcap/Makefile diff -u pkgsrc/net/libpcap/Makefile:1.69 pkgsrc/net/libpcap/Makefile:1.70 --- pkgsrc/net/libpcap/Makefile:1.69 Tue Apr 18 07:59:11 2023 +++ pkgsrc/net/libpcap/Makefile Sat Mar 16 19:41:01 2024 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.69 2023/04/18 07:59:11 adam Exp $ +# $NetBSD: Makefile,v 1.70 2024/03/16 19:41:01 nia Exp $ DISTNAME= libpcap-1.10.4 CATEGORIES= net @@ -22,6 +22,13 @@ PKGCONFIG_OVERRIDE= libpcap.pc.in CONFIGURE_ARGS.SunOS+= --with-pcap=dlpi CONFIGURE_ENV.SunOS+= ac_cv_func_getifaddrs=no +.include "../../mk/bsd.prefs.mk" + +# Requires Availability.h, which debuted with 10.5. +.if ${OPSYS} == "Darwin" && ${OPSYS_VERSION} < 100500 +. include "../../devel/macports-legacy-support/buildlink3.mk" +.endif + post-install: ${INSTALL_DATA} ${WRKSRC}/pcap-int.h ${DESTDIR}${PREFIX}/include --_----------=_1710618061294760--