mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
Use the default OpenSSL version for MacOS to match libs
This seems like an issue that might be potentially causing issues like GH-12901. The problem is that libs like libcurl, libldap and others use the default OpenSSL version so this might result in linking issues. The fact that OpenSSL 1.1.1 was actually good that we were able to have it in the pipeline but this is just not right setup so we should find another way how to test it at least in nightly. Closes GH-19472
This commit is contained in:
2
.github/actions/configure-macos/action.yml
vendored
2
.github/actions/configure-macos/action.yml
vendored
@@ -11,7 +11,7 @@ runs:
|
||||
set -x
|
||||
BREW_OPT="$(brew --prefix)"/opt
|
||||
export PATH="$BREW_OPT/bison/bin:$PATH"
|
||||
export PKG_CONFIG_PATH="$PKG_CONFIG_PATH:$BREW_OPT/openssl@1.1/lib/pkgconfig"
|
||||
export PKG_CONFIG_PATH="$PKG_CONFIG_PATH:$BREW_OPT/openssl/lib/pkgconfig"
|
||||
export PKG_CONFIG_PATH="$PKG_CONFIG_PATH:$BREW_OPT/curl/lib/pkgconfig"
|
||||
export PKG_CONFIG_PATH="$PKG_CONFIG_PATH:$BREW_OPT/krb5/lib/pkgconfig"
|
||||
export PKG_CONFIG_PATH="$PKG_CONFIG_PATH:$BREW_OPT/libffi/lib/pkgconfig"
|
||||
|
||||
Reference in New Issue
Block a user