Authentication-Results: name.execsw.org; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=kcTPA5nq; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=Uo86N2YX Received: by mail.netbsd.org (Postfix, from userid 605) id E871984EA6; Tue, 26 Mar 2024 14:10:08 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1711462209; bh=qpW55yC2I7SOKvMWzOf/r/1JOu/PLO9I5gTW/vsMxVs=; h=Date:From:Subject:To:Reply-To:List-Id:List-Unsubscribe; b=kcTPA5nqL8WmspDAwQwiUGZtSeWDt39ztjH9k1yCYt5STO9L3EJaI4hsgjVSxmVVe p+EajFmmFiTpvvCH6DO9bUNkK6B3rr/edStSngQyHx3ilsLq+61BEMgLxGw086tb+Z ic9+PqxMYISNfpxD+LaS+rQz0QLUtng3IaRkmIYE= Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id D0FDA84EA4 for ; Tue, 26 Mar 2024 14:10:07 +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 0CpcVkqBKbHH for ; Tue, 26 Mar 2024 14:10:07 +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 63FCF84D0E for ; Tue, 26 Mar 2024 14:10:07 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1711462207; bh=qpW55yC2I7SOKvMWzOf/r/1JOu/PLO9I5gTW/vsMxVs=; h=Date:From:Subject:To:Reply-To; b=Uo86N2YX5283TCcpAfjg/rAH/cVnLadSd9rizT9GwDXopsxHFE32SI58L4hltEELa Oq3kKkq0rjearTsxHR9Z3PP0q4xZ+JG+C+9UXUKZfut12Xzrfc3JZdc1jsjZAKlDGm LDd+8KEHu68D7HAnSgyiOAGos2lLicZETCVoarTI= Received: by cvs.NetBSD.org (Postfix, from userid 500) id 55B72FA2C; Tue, 26 Mar 2024 14:10:07 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1711462207234030" MIME-Version: 1.0 Date: Tue, 26 Mar 2024 14:10:07 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/emulators/raine To: pkgsrc-changes@NetBSD.org Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20240326141007.55B72FA2C@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1711462207234030 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Tue Mar 26 14:10:07 UTC 2024 Added Files: pkgsrc/emulators/raine: options.mk Log Message: raine: add the options.mk (not very interesting) To generate a diff of this commit: cvs rdiff -u -r0 -r1.1 pkgsrc/emulators/raine/options.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1711462207234030 Content-Disposition: inline Content-Length: 467 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Added files: Index: pkgsrc/emulators/raine/options.mk diff -u /dev/null pkgsrc/emulators/raine/options.mk:1.1 --- /dev/null Tue Mar 26 14:10:07 2024 +++ pkgsrc/emulators/raine/options.mk Tue Mar 26 14:10:07 2024 @@ -0,0 +1,10 @@ +# $NetBSD: options.mk,v 1.1 2024/03/26 14:10:07 nia Exp $ + +PKG_OPTIONS_VAR= PKG_OPTIONS.raine +PKG_SUPPORTED_OPTIONS= debug + +.include "../../mk/bsd.options.mk" + +.if !empty(PKG_OPTIONS:Mdebug) +CFLAGS+= -DRAINE_DEBUG=1 +.endif --_----------=_1711462207234030--