Authentication-Results: name.execsw.org; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=thF80CqL; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=tKBrq6v1 Received: by mail.netbsd.org (Postfix, from userid 605) id 9D27284D36; Fri, 26 Apr 2024 20:07:17 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1714162037; bh=IbmAS4fjHr+08z5sFw4tOToKvnX0/LneU8HUoKO9tZY=; h=Date:From:Subject:To:Reply-To:List-Id:List-Unsubscribe; b=thF80CqL+ThrDSjbpF0fj7bohk/Lu+9rab3pxC4aeNru+N1RyQEl6eAH58cBPX1WJ osb3QGAi5YE10T5NvASxvAxeDa47fqI+cfATh79f6p/8bISwCwnZnVUWyjj7kTBrRE tNUaCeLQiEjkYKdLpfi11VRE505zs9U7gxFqwbJ8= Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 8E75C84CD9 for ; Fri, 26 Apr 2024 20:07:16 +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 HczjDDQsG1-e for ; Fri, 26 Apr 2024 20:07:16 +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 096A984CC9 for ; Fri, 26 Apr 2024 20:07:16 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1714162036; bh=IbmAS4fjHr+08z5sFw4tOToKvnX0/LneU8HUoKO9tZY=; h=Date:From:Subject:To:Reply-To; b=tKBrq6v1HwsOe0vDtlKNmKpQILcnA61Z1tOj2m2kLvZD+5/8VD2NovZFepGZxVDXN yDpwacFD3XcLDfKxvsVZrYr3Es+Pc0dahcX3rycllprVMCrChtbbwF4egbiNrxZUCO 6iPr9BnTSxQKkqBILc1HtLDYCtUUpddYwmn2Bxkk= Received: by cvs.NetBSD.org (Postfix, from userid 500) id EEE5EFA2C; Fri, 26 Apr 2024 20:07:15 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1714162035298730" MIME-Version: 1.0 Date: Fri, 26 Apr 2024 20:07:15 +0000 From: "Tobias Nygren" Subject: CVS commit: pkgsrc/devel/lldb To: pkgsrc-changes@NetBSD.org Reply-To: tnn@netbsd.org X-Mailer: log_accum Message-Id: <20240426200715.EEE5EFA2C@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1714162035298730 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: tnn Date: Fri Apr 26 20:07:15 UTC 2024 Modified Files: pkgsrc/devel/lldb: options.mk Log Message: lldb: don't try to outsmart pkgsrc's curses & terminfo logic Probably this was an attempt to paper over the bug fixed in termcap.builtin.mk the other day. Likely cause of PR pkg/58045. To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 pkgsrc/devel/lldb/options.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1714162035298730 Content-Disposition: inline Content-Length: 1493 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/lldb/options.mk diff -u pkgsrc/devel/lldb/options.mk:1.1 pkgsrc/devel/lldb/options.mk:1.2 --- pkgsrc/devel/lldb/options.mk:1.1 Fri Oct 6 19:16:28 2023 +++ pkgsrc/devel/lldb/options.mk Fri Apr 26 20:07:15 2024 @@ -1,4 +1,4 @@ -# $NetBSD: options.mk,v 1.1 2023/10/06 19:16:28 adam Exp $ +# $NetBSD: options.mk,v 1.2 2024/04/26 20:07:15 tnn Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.lldb @@ -16,34 +16,10 @@ CMAKE_ARGS+= -DLLVM_INCLUDE_TESTS=OFF .if ${PKG_OPTIONS:Mcurses} .include "../../mk/curses.buildlink3.mk" - -. if ${OPSYS} == "NetBSD" -. if exists(/usr/include/panel.h) +.include "../../mk/terminfo.buildlink3.mk" CMAKE_ARGS+= -DLLDB_ENABLE_CURSES=ON CMAKE_ARGS+= -DLLVM_ENABLE_TERMINFO=ON -. else -.include "../../devel/ncurses/buildlink3.mk" -. if exists(${BUILDLINK_PREFIX.ncurses}/include/ncurses/panel.h) -CMAKE_ARGS+= -DLLDB_ENABLE_CURSES=ON -CMAKE_ARGS+= -DLLVM_ENABLE_TERMINFO=ON -. else -CMAKE_ARGS+= -DLLDB_ENABLE_CURSES=OFF -CMAKE_ARGS+= -DLLVM_ENABLE_TERMINFO=OFF -. endif -. endif -. else -.include "../../devel/ncurses/buildlink3.mk" -. if exists(${BUILDLINK_PREFIX.ncurses}/include/ncurses/panel.h) -CMAKE_ARGS+= -DLLDB_ENABLE_CURSES=ON -CMAKE_ARGS+= -DLLVM_ENABLE_TERMINFO=ON -. else -CMAKE_ARGS+= -DLLDB_ENABLE_CURSES=OFF -CMAKE_ARGS+= -DLLVM_ENABLE_TERMINFO=OFF -. endif -. endif - .else - CMAKE_ARGS+= -DLLDB_ENABLE_CURSES=OFF CMAKE_ARGS+= -DLLVM_ENABLE_TERMINFO=OFF .endif --_----------=_1714162035298730--