- two more CMake checks that are not needed anymore.

Neither of these function is in use so we do not need to check for them.
This commit is contained in:
Christoph Oelckers 2022-10-20 21:19:01 +02:00
parent 9e76faff1f
commit 0ba5803111

View file

@ -302,16 +302,6 @@ endif()
# Check for functions that may or may not exist.
CHECK_FUNCTION_EXISTS( filelength FILELENGTH_EXISTS )
if( FILELENGTH_EXISTS )
add_definitions( -DHAVE_FILELENGTH=1 )
endif()
CHECK_FUNCTION_EXISTS( strupr STRUPR_EXISTS )
if( NOT STRUPR_EXISTS )
add_definitions( -DNEED_STRUPR=1 )
endif()
require_stricmp()
require_strnicmp()