From: Jorge Pereira Date: Thu, 6 Oct 2022 17:45:37 +0000 (-0300) Subject: eapol_test: Add paths for Brew on OSX/M1 (#4757) X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=47591d492b3378b1f94f110370b51ff807ce70d2;p=thirdparty%2Ffreeradius-server.git eapol_test: Add paths for Brew on OSX/M1 (#4757) Needed for the Brew running on OSX/M1 due to the new base path is in /opt/homebrew as described on https://earthly.dev/blog/homebrew-on-m1/ --- diff --git a/scripts/ci/eapol_test/config_osx b/scripts/ci/eapol_test/config_osx index 53ba5a61d4d..75cb0cd3f12 100644 --- a/scripts/ci/eapol_test/config_osx +++ b/scripts/ci/eapol_test/config_osx @@ -12,8 +12,8 @@ CFLAGS += -g3 -O0 -Wno-unknown-warning-option -Wno-error=deprecated-declarations -Wno-error=void-pointer-to-enum-cast # Use OpenSSL 1.1 for now as eapol_test doesn't support 3.0.0 (as of master HEAD 2/10/2021) -CFLAGS += -I/usr/local/opt/openssl@1.1/include -LIBS += -L/usr/local/opt/openssl@1.1/lib +CFLAGS += -I/usr/local/opt/openssl@1.1/include -I/opt/homebrew/opt/openssl@1.1/include +LIBS += -L/usr/local/opt/openssl@1.1/lib -L/opt/homebrew/opt/openssl@1.1/lib # Some Red Hat versions seem to include kerberos header files from OpenSSL, but # the kerberos files are not in the default include path. Following line can be