[llvm-branch-commits] [lldb] release/22.x: [lldb] add terminfo name (#191740) (PR #193693)
via llvm-branch-commits
llvm-branch-commits at lists.llvm.org
Thu Apr 23 01:54:51 PDT 2026
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-lldb
Author: llvmbot
<details>
<summary>Changes</summary>
Backport c3bd0c12943c3fcdb263b63a6fd754057b1c0775
Requested by: @<!-- -->DavidSpickett
---
Full diff: https://github.com/llvm/llvm-project/pull/193693.diff
1 Files Affected:
- (modified) lldb/cmake/modules/FindCursesAndPanel.cmake (+1-1)
``````````diff
diff --git a/lldb/cmake/modules/FindCursesAndPanel.cmake b/lldb/cmake/modules/FindCursesAndPanel.cmake
index 8628059f91ba1..5e13a1b79ecf9 100644
--- a/lldb/cmake/modules/FindCursesAndPanel.cmake
+++ b/lldb/cmake/modules/FindCursesAndPanel.cmake
@@ -40,7 +40,7 @@ else()
CURSES_HAS_TINFO)
if(NOT CURSES_HAS_TINFO)
message(STATUS "curses library missing terminfo symbols, looking for tinfo separately")
- find_library(TINFO_LIBRARIES NAMES tinfo DOC "The curses tinfo library" QUIET)
+ find_library(TINFO_LIBRARIES NAMES tinfo terminfo DOC "The curses tinfo library" QUIET)
list(APPEND CURSES_LIBRARIES "${TINFO_LIBRARIES}")
endif()
set(HAS_TERMINFO_SYMBOLS "$<OR:$<BOOL:${TERMINFO_LIBRARIES}>,$<BOOL:${CURSES_HAS_TINFO}>>")
``````````
</details>
https://github.com/llvm/llvm-project/pull/193693
More information about the llvm-branch-commits
mailing list