try remove libncurses5

This commit is contained in:
ruanshudong 2020-04-01 20:47:52 +08:00
parent 750ee9e6fd
commit 794a44e8ff

View File

@ -19,19 +19,19 @@ ENDIF(UNIX)
if (TARS_MYSQL) if (TARS_MYSQL)
add_definitions(-DTARS_MYSQL=1) add_definitions(-DTARS_MYSQL=1)
IF(UNIX AND NOT APPLE) # IF(UNIX AND NOT APPLE)
FIND_PACKAGE(Curses) # FIND_PACKAGE(Curses)
IF(NOT CURSES_FOUND) # IF(NOT CURSES_FOUND)
SET(ERRORMSG "Curses library not found. Please install appropriate package, # SET(ERRORMSG "Curses library not found. Please install appropriate package,
remove CMakeCache.txt and rerun cmake.") # remove CMakeCache.txt and rerun cmake.")
IF(CMAKE_SYSTEM_NAME MATCHES "Linux") # IF(CMAKE_SYSTEM_NAME MATCHES "Linux")
SET(ERRORMSG ${ERRORMSG} # SET(ERRORMSG ${ERRORMSG}
"On Debian/Ubuntu, package name is libncurses5-dev(apt-get install libncurses5-dev), on Redhat/Centos and derivates " # "On Debian/Ubuntu, package name is libncurses5-dev(apt-get install libncurses5-dev), on Redhat/Centos and derivates "
"it is ncurses-devel (yum install ncurses-devel).") # "it is ncurses-devel (yum install ncurses-devel).")
ENDIF() # ENDIF()
MESSAGE(FATAL_ERROR ${ERRORMSG}) # MESSAGE(FATAL_ERROR ${ERRORMSG})
ENDIF() # ENDIF()
ENDIF() # ENDIF()
endif () endif ()