diff options
Diffstat (limited to 'src/plugins/tlspicotls/CMakeLists.txt')
-rw-r--r-- | src/plugins/tlspicotls/CMakeLists.txt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/plugins/tlspicotls/CMakeLists.txt b/src/plugins/tlspicotls/CMakeLists.txt index c8f7c64126b..e60a0e0ebd4 100644 --- a/src/plugins/tlspicotls/CMakeLists.txt +++ b/src/plugins/tlspicotls/CMakeLists.txt @@ -1,5 +1,10 @@ include (CheckFunctionExists) +if(NOT OPENSSL_FOUND) + message(WARNING "OpenSSL not found - tlspicotls plugin disabled") + return() +endif() + # We should rely on a picotls specific version, but as # we expect dependancies to be built with vpp-ext-deps # it's reasonable to make this check to avoid breaking |