From: Petr Hosek Date: Wed, 19 Aug 2020 18:06:19 +0000 (-0700) Subject: [CMake] Always mark terminfo as unavailable on Windows X-Git-Tag: llvmorg-13-init~14253 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=76bf26236f6fd453343666c3cd91de8f74ffd89d;p=platform%2Fupstream%2Fllvm.git [CMake] Always mark terminfo as unavailable on Windows This addresses the issue introduced by D86134. Differential Revision: https://reviews.llvm.org/D86234 --- diff --git a/llvm/cmake/config-ix.cmake b/llvm/cmake/config-ix.cmake index 6e8f476..0ad24c7 100644 --- a/llvm/cmake/config-ix.cmake +++ b/llvm/cmake/config-ix.cmake @@ -175,6 +175,8 @@ if(NOT LLVM_USE_SANITIZER MATCHES "Memory.*") endif() endif() endif() + else() + set(LLVM_ENABLE_TERMINFO 0) endif() endif()