mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
unbound: fix type checking
This commit is contained in:
parent
d43a20f8f4
commit
4b6515cfb5
1 changed files with 2 additions and 2 deletions
4
external/unbound/configure_checks.cmake
vendored
4
external/unbound/configure_checks.cmake
vendored
|
@ -104,10 +104,10 @@ function (check_type_exists type variable header default)
|
|||
set(CMAKE_EXTRA_INCLUDE_FILES "${header}")
|
||||
check_type_size("${type}" "${variable}")
|
||||
|
||||
if (${variable} STREQUAL "")
|
||||
if (NOT HAVE_${type})
|
||||
set("${variable}" "${default}" PARENT_SCOPE)
|
||||
else ()
|
||||
set("${variable}" "" PARENT_SCOPE)
|
||||
set("${variable}" "FALSE" PARENT_SCOPE)
|
||||
endif ()
|
||||
endfunction ()
|
||||
|
||||
|
|
Loading…
Reference in a new issue