Skip to content

Commit

Permalink
getdns: check that OpenSSL configuration has not failed
Browse files Browse the repository at this point in the history
  • Loading branch information
valgur committed Jan 19, 2024
1 parent f8327ab commit 423eac2
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions recipes/getdns/all/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
cmake_minimum_required(VERSION 3.15)
project(cmake_wrapper)

# Wrapper for find_package() that sets variables in the format expected by the project
macro(custom_find_package name)
find_package(${name} REQUIRED CONFIG
# Allow only Conan packages
Expand Down Expand Up @@ -38,3 +39,8 @@ if(WIN32)
endif()

add_subdirectory(src)

if(NOT HAVE_DSA_SIG_SET0)
# This should have been found for OpenSSL from CCI
message(FATAL_ERROR "OpenSSL feature detection failed, probably due to a bug in getdns recipe.")
endif()

0 comments on commit 423eac2

Please sign in to comment.