pkgsrc-WIP-changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

lldb: add terminfo



Module Name:	pkgsrc-wip
Committed By:	nikita <nikita%NetBSD.org@localhost>
Pushed By:	nikita
Date:		Wed May 10 18:10:12 2023 +0200
Changeset:	d08b43c0afa908f3863aa14df6f6e8c0789b22e2

Modified Files:
	lldb/options.mk

Log Message:
lldb: add terminfo

To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=d08b43c0afa908f3863aa14df6f6e8c0789b22e2

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

diffstat:
 lldb/options.mk | 7 +++++++
 1 file changed, 7 insertions(+)

diffs:
diff --git a/lldb/options.mk b/lldb/options.mk
index 67b8fc9bae..eab339d06a 100644
--- a/lldb/options.mk
+++ b/lldb/options.mk
@@ -21,27 +21,34 @@ CMAKE_ARGS+=	-DLLVM_INCLUDE_TESTS=OFF
 .  if ${OPSYS} == "NetBSD"
 .    if exists(/usr/include/panel.h)
 CMAKE_ARGS+=	-DLLDB_ENABLE_CURSES=1
+CMAKE_ARGS+=	-DLLVM_ENABLE_TERMINFO=1
 .    else
 .include "../../devel/ncurses/buildlink3.mk"
 .      if exists(${BUILDLINK_PREFIX.ncurses}/include/panel.h)
 CMAKE_ARGS+=    -DLLDB_ENABLE_CURSES=1
+CMAKE_ARGS+=	-DLLVM_ENABLE_TERMINFO=1
 .      else
 CMAKE_ARGS+=    -DLLDB_ENABLE_CURSES=0
+CMAKE_ARGS+=	-DLLVM_ENABLE_TERMINFO=0
 .      endif
 .    endif
 CMAKE_ARGS+=	-DLLDB_ENABLE_CURSES=0
+CMAKE_ARGS+=	-DLLVM_ENABLE_TERMINFO=0
 .  endif
 
 .  if ${OPSYS} != "NetBSD"
 .include "../../devel/ncurses/buildlink3.mk"
 .    if exists(${BUILDLINK_PREFIX.ncurses}/include/panel.h)
 CMAKE_ARGS+=    -DLLDB_ENABLE_CURSES=1
+CMAKE_ARGS+=	-DLLVM_ENABLE_TERMINFO=1
 .    else
 CMAKE_ARGS+=    -DLLDB_ENABLE_CURSES=0
+CMAKE_ARGS+=	-DLLVM_ENABLE_TERMINFO=0
 .    endif
 .  endif
 
 .else
 
 CMAKE_ARGS+=	-DLLDB_ENABLE_CURSES=0
+CMAKE_ARGS+=	-DLLVM_ENABLE_TERMINFO=0
 .endif


Home | Main Index | Thread Index | Old Index