Skip to content

Commit

Permalink
getdns: try to fix OpenSSL feature detection
Browse files Browse the repository at this point in the history
  • Loading branch information
valgur committed Nov 27, 2023
1 parent 083ac47 commit 25c4f69
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions recipes/getdns/all/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ macro(custom_find_package name)
endmacro()

custom_find_package(OpenSSL)
link_directories(${OPENSSL_LIB_DIR})
if(BUILD_LIBEV)
custom_find_package(Libev)
endif()
Expand All @@ -38,3 +39,7 @@ if(WIN32)
endif()

add_subdirectory(src)

if(NOT HAVE_DSA_SIG_SET0)
message(FATAL_ERROR "OpenSSL feature detection failed, probably due to a bug in getdns recipe.")
endif()

0 comments on commit 25c4f69

Please sign in to comment.