mirror of
https://github.com/taglib/taglib.git
synced 2025-05-27 13:10:26 -04:00
Revert "Add and fix some comments in ConfigureChecks.cmake."
This reverts commit fa6f33e552
.
This commit is contained in:
parent
030e177640
commit
70f8fb1bae
@ -164,7 +164,7 @@ if(NOT HAVE_GCC_BYTESWAP)
|
||||
endif()
|
||||
endif()
|
||||
|
||||
# Check if your compiler supports some safer version of vsprintf.
|
||||
# Determine whether your compiler supports some safer version of vsprintf.
|
||||
|
||||
check_cxx_source_compiles("
|
||||
#include <cstdio>
|
||||
@ -190,15 +190,17 @@ if(NOT HAVE_VSNPRINTF)
|
||||
" HAVE_VSPRINTF_S)
|
||||
endif()
|
||||
|
||||
# Check if zlib is installed.
|
||||
# Check for libz using the cmake supplied FindZLIB.cmake
|
||||
|
||||
if(NOT ZLIB_SOURCE)
|
||||
find_package(ZLIB)
|
||||
set(HAVE_ZLIB ZLIB_FOUND)
|
||||
if(ZLIB_FOUND)
|
||||
set(HAVE_ZLIB 1)
|
||||
else()
|
||||
set(HAVE_ZLIB 0)
|
||||
endif()
|
||||
endif()
|
||||
|
||||
# Check if CppUnit is installed.
|
||||
|
||||
if(BUILD_TESTS)
|
||||
find_package(CppUnit)
|
||||
if(NOT CppUnit_FOUND)
|
||||
|
Loading…
Reference in New Issue
Block a user