Received: by mail.netbsd.org (Postfix, from userid 605) id 175B784EFC; Sat, 2 Jul 2022 03:11:45 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 4F76984EE8 for ; Sat, 2 Jul 2022 03:11:44 +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 FMUKnzojVQfD for ; Sat, 2 Jul 2022 03:11:43 +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 9B79684D0E for ; Sat, 2 Jul 2022 03:11:43 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 8FF49FB1A; Sat, 2 Jul 2022 03:11:43 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1656731503234840" MIME-Version: 1.0 Date: Sat, 2 Jul 2022 03:11:43 +0000 From: "Rin Okuyama" Subject: CVS commit: pkgsrc/x11/mlterm To: pkgsrc-changes@NetBSD.org Reply-To: rin@netbsd.org X-Mailer: log_accum Message-Id: <20220702031143.8FF49FB1A@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1656731503234840 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: rin Date: Sat Jul 2 03:11:43 UTC 2022 Modified Files: pkgsrc/x11/mlterm: options.mk Log Message: x11/mlterm: Add ``debug'' option. To generate a diff of this commit: cvs rdiff -u -r1.20 -r1.21 pkgsrc/x11/mlterm/options.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1656731503234840 Content-Disposition: inline Content-Length: 1045 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/x11/mlterm/options.mk diff -u pkgsrc/x11/mlterm/options.mk:1.20 pkgsrc/x11/mlterm/options.mk:1.21 --- pkgsrc/x11/mlterm/options.mk:1.20 Sun Jun 21 17:53:01 2020 +++ pkgsrc/x11/mlterm/options.mk Sat Jul 2 03:11:43 2022 @@ -1,7 +1,7 @@ -# $NetBSD: options.mk,v 1.20 2020/06/21 17:53:01 tsutsui Exp $ +# $NetBSD: options.mk,v 1.21 2022/07/02 03:11:43 rin Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.mlterm -PKG_SUPPORTED_OPTIONS= cairo canna fcitx fribidi gdk_pixbuf2 ibus libind m17nlib mlterm-fb otl scim skk uim wnn4 xft2 +PKG_SUPPORTED_OPTIONS= cairo canna fcitx fribidi gdk_pixbuf2 ibus libind m17nlib mlterm-fb otl scim skk uim wnn4 xft2 debug PKG_SUGGESTED_OPTIONS= cairo fribidi gdk_pixbuf2 m17nlib otl xft2 .if ${OPSYS} == "NetBSD" || ${OPSYS} == "FreeBSD" || ${OPSYS} == "Linux" PKG_SUGGESTED_OPTIONS+= mlterm-fb @@ -154,3 +154,7 @@ CONFIGURE_ARGS+= --with-type-engines=xco .else CONFIGURE_ARGS+= --with-type-engines=xcore .endif + +.if !empty(PKG_OPTIONS:Mdebug) +CONFIGURE_ARGS+= --enable-debug +.endif --_----------=_1656731503234840--