Received: by mail.netbsd.org (Postfix, from userid 605) id 4067C84D68; Sat, 10 Feb 2024 10:28:36 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1707560916; bh=bMw29Vrb24q/5hGS5cmj8CORjloIsvQApacUGVinYL4=; h=Date:From:Subject:To:Reply-To:List-Id:List-Unsubscribe; b=IbPXmdJdxhqJY15RnZObufjNyz5BFcH46AELpq9w/OXwb4VKDkJM7pzpxzbMm4ju+ UrTM23z+eShnLwCQNkGasLE6tUcc2AkqfsHdxrWR2VwAlUbQ7iuCJqif8SAaTsq+9a ZQeqSdQTGb5Wh4yryuxIHIA6sQD3lHYGrXHlUrDw= Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 3015084CFA for ; Sat, 10 Feb 2024 10:28:35 +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 PRnsqnTPFDE5 for ; Sat, 10 Feb 2024 10:28:34 +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 B404384CD8 for ; Sat, 10 Feb 2024 10:28:34 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1707560914; bh=bMw29Vrb24q/5hGS5cmj8CORjloIsvQApacUGVinYL4=; h=Date:From:Subject:To:Reply-To; b=fa5Oa+eg6ep5BUXLquBZUfYjs+0/W3AsJw6ezac/Rpl9aKmEJgb1p1QwRf5SGbd2q tKrSC4VDQyUY4eqZ34iVQTE1B2JKbTW8pDpb4NcmOHYxisiFz01WlQNpIhocIcKwx9 W1zKIBQXy5JqmfJU5enwLPMAtAwSSlXJeWbcxUmo= Received: by cvs.NetBSD.org (Postfix, from userid 500) id AAE5BFA42; Sat, 10 Feb 2024 10:28:34 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1707560914112720" MIME-Version: 1.0 Date: Sat, 10 Feb 2024 10:28:34 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/audio/mixxx To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20240210102834.AAE5BFA42@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1707560914112720 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Sat Feb 10 10:28:34 UTC 2024 Modified Files: pkgsrc/audio/mixxx: Makefile Log Message: mixxx: do not require filesystem here, provided by abseil/bl3.mk now To generate a diff of this commit: cvs rdiff -u -r1.55 -r1.56 pkgsrc/audio/mixxx/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1707560914112720 Content-Disposition: inline Content-Length: 618 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/audio/mixxx/Makefile diff -u pkgsrc/audio/mixxx/Makefile:1.55 pkgsrc/audio/mixxx/Makefile:1.56 --- pkgsrc/audio/mixxx/Makefile:1.55 Sat Feb 10 10:15:39 2024 +++ pkgsrc/audio/mixxx/Makefile Sat Feb 10 10:28:34 2024 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.55 2024/02/10 10:15:39 wiz Exp $ +# $NetBSD: Makefile,v 1.56 2024/02/10 10:28:34 wiz Exp $ DISTNAME= mixxx-2.3.1 PKGREVISION= 27 @@ -19,7 +19,7 @@ USE_CMAKE= yes CMAKE_ARGS+= -DUSE_SYMLINKS=OFF CMAKE_ARGS+= -DPORTMIDI=OFF -USE_CXX_FEATURES+= c++11 filesystem +USE_CXX_FEATURES+= c++11 .include "../../mk/bsd.prefs.mk" --_----------=_1707560914112720--