From 93af744d988642bce3b925222bca0b8869b9a9b1 Mon Sep 17 00:00:00 2001 From: ormorph Date: Tue, 16 Jul 2024 21:34:55 +0300 Subject: [PATCH] Fixed build problem with ncurses library Signed-off-by: ormorph (cherry picked from commit 66e7f28191f30c6b270a8791153ff4d14c1689e6) --- ConfigureChecks.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ConfigureChecks.cmake b/ConfigureChecks.cmake index 517c99f..769b797 100644 --- a/ConfigureChecks.cmake +++ b/ConfigureChecks.cmake @@ -99,7 +99,7 @@ check_c_source_compiles(" BUILD_READLINE_STANDALONE ) if( NOT BUILD_READLINE_STANDALONE ) - find_package( curses ) + find_package( Curses ) if( NOT CURSES_FOUND ) tde_message_fatal( "(n)curses is required but was not found on your system" ) endif()