diff options
author | Theo Buehler <tb@openbsd.org> | 2024-11-30 12:09:01 +0100 |
---|---|---|
committer | Theo Buehler <tb@openbsd.org> | 2024-11-30 12:09:01 +0100 |
commit | f843a3441b2ffb662474cb3a7c17889423bcad99 (patch) | |
tree | da333f8ccc78f8e5ed065952145d36a72574b5ad | |
parent | a6d8cddefe8949a71bae391f9ec31f56f3df7841 (diff) | |
parent | b06265cf55d748d20d01c0eb27eba2ebbc4deb1f (diff) | |
download | portable-f843a3441b2ffb662474cb3a7c17889423bcad99.tar.gz portable-f843a3441b2ffb662474cb3a7c17889423bcad99.tar.bz2 portable-f843a3441b2ffb662474cb3a7c17889423bcad99.zip |
Land #1126 - hint for homebrew install destination
-rw-r--r-- | FindLibreSSL.cmake | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/FindLibreSSL.cmake b/FindLibreSSL.cmake index 6bdc069..6779371 100644 --- a/FindLibreSSL.cmake +++ b/FindLibreSSL.cmake | |||
@@ -81,6 +81,11 @@ if (WIN32) | |||
81 | "${_programfiles}/LibreSSL" | 81 | "${_programfiles}/LibreSSL" |
82 | ) | 82 | ) |
83 | unset(_programfiles) | 83 | unset(_programfiles) |
84 | elseif(APPLE) | ||
85 | # Homebrew installs LibreSSL here | ||
86 | set(_LIBRESSL_ROOT_PATHS | ||
87 | "/usr/local/opt/libressl" | ||
88 | ) | ||
84 | else() | 89 | else() |
85 | set(_LIBRESSL_ROOT_PATHS | 90 | set(_LIBRESSL_ROOT_PATHS |
86 | "/usr/local/" | 91 | "/usr/local/" |