Received: by mail.netbsd.org (Postfix, from userid 605) id 4887084EC8; Thu, 13 Apr 2023 06:48:40 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 77E6284EC1 for ; Thu, 13 Apr 2023 06:48:39 +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 jXVfPPbip7Yw for ; Thu, 13 Apr 2023 06:48:39 +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 C5CDE84D4A for ; Thu, 13 Apr 2023 06:48:38 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id B92DEFA85; Thu, 13 Apr 2023 06:48:38 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1681368518193980" MIME-Version: 1.0 Date: Thu, 13 Apr 2023 06:48:38 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/net/wireshark To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20230413064838.B92DEFA85@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1681368518193980 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Thu Apr 13 06:48:38 UTC 2023 Modified Files: pkgsrc/net/wireshark: Makefile Log Message: wireshark: switch to pcre2 pcre1 is not supported any longer anyway. Bump PKGREVISION. To generate a diff of this commit: cvs rdiff -u -r1.291 -r1.292 pkgsrc/net/wireshark/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1681368518193980 Content-Disposition: inline Content-Length: 1219 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/net/wireshark/Makefile diff -u pkgsrc/net/wireshark/Makefile:1.291 pkgsrc/net/wireshark/Makefile:1.292 --- pkgsrc/net/wireshark/Makefile:1.291 Fri Apr 7 18:48:43 2023 +++ pkgsrc/net/wireshark/Makefile Thu Apr 13 06:48:38 2023 @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.291 2023/04/07 18:48:43 nros Exp $ +# $NetBSD: Makefile,v 1.292 2023/04/13 06:48:38 wiz Exp $ DISTNAME= wireshark-4.0.4 -PKGREVISION= 2 +PKGREVISION= 3 CATEGORIES= net MASTER_SITES= https://www.wireshark.org/download/src/ EXTRACT_SUFX= .tar.xz @@ -46,7 +46,7 @@ CFLAGS.SunOS+= -D__EXTENSIONS__ # for g .include "../../mk/bsd.prefs.mk" .include "options.mk" -.if !empty(MACHINE_PLATFORM:MDarwin-[567].*-*) +.if ${MACHINE_PLATFORM:MDarwin-[567].*-*} USE_BUILTIN.libpcap= no .endif @@ -72,7 +72,7 @@ BUILDLINK_TRANSFORM+= rm:-DGDK_PIXBUF_DI .include "../../audio/speexdsp/buildlink3.mk" .include "../../devel/glib2/buildlink3.mk" .include "../../devel/libsmi/buildlink3.mk" -.include "../../devel/pcre/buildlink3.mk" +.include "../../devel/pcre2/buildlink3.mk" .include "../../devel/snappy/buildlink3.mk" .include "../../devel/zlib/buildlink3.mk" .include "../../geography/libmaxminddb/buildlink3.mk" --_----------=_1681368518193980--