From: Tomek Mrugalski Date: Mon, 28 May 2018 11:37:50 +0000 (+0200) Subject: [master] Added path to OpenSSL from homebrew X-Git-Tag: trac5382a_base X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=02287c3c3d3a0d42e4e5e917785bff4b35f239e2;p=thirdparty%2Fkea.git [master] Added path to OpenSSL from homebrew - this makes configure to work out of the box on Mac OS (no more --with-openssl=... needed if you use OpenSSL from homebrew) --- diff --git a/m4macros/ax_crypto.m4 b/m4macros/ax_crypto.m4 index dd4a81fa41..622ee68166 100644 --- a/m4macros/ax_crypto.m4 +++ b/m4macros/ax_crypto.m4 @@ -293,7 +293,7 @@ else use_openssl="yes" fi if test "${use_openssl}" = "yes" ; then - for d in /usr /usr/local /usr/local/ssl /usr/pkg /usr/sfw; do + for d in /usr /usr/local /usr/local/ssl /usr/local/opt/openssl /usr/pkg /usr/sfw; do if test -f $d/include/openssl/opensslv.h; then use_openssl=$d; break fi