diff options
| author | Piotr Sikora <piotr@aviatrix.com> | 2024-02-26 20:00:43 +0000 |
|---|---|---|
| committer | Piotr Sikora <piotr@aviatrix.com> | 2024-02-26 20:00:43 +0000 |
| commit | 2deded362ee052564e7359d53c81973c16b18e72 (patch) | |
| tree | fa183de106df991e189659fefc04ff872e0e4014 /auto/lib/pcre | |
| parent | 6b1bb998c96278a56d767bc23520c385ab9f3038 (diff) | |
| download | nginx-2deded362ee052564e7359d53c81973c16b18e72.tar.gz nginx-2deded362ee052564e7359d53c81973c16b18e72.tar.bz2 | |
Configure: added support for Homebrew on Apple Silicon.
Signed-off-by: Piotr Sikora <piotr@aviatrix.com>
Diffstat (limited to 'auto/lib/pcre')
| -rw-r--r-- | auto/lib/pcre/conf | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/auto/lib/pcre/conf b/auto/lib/pcre/conf index 20c1cafbe..cdf1809f5 100644 --- a/auto/lib/pcre/conf +++ b/auto/lib/pcre/conf @@ -182,6 +182,22 @@ else . auto/feature fi + if [ $ngx_found = no ]; then + + # Homebrew on Apple Silicon + + ngx_feature="PCRE library in /opt/homebrew/" + ngx_feature_path="/opt/homebrew/include" + + if [ $NGX_RPATH = YES ]; then + ngx_feature_libs="-R/opt/homebrew/lib -L/opt/homebrew/lib -lpcre" + else + ngx_feature_libs="-L/opt/homebrew/lib -lpcre" + fi + + . auto/feature + fi + if [ $ngx_found = yes ]; then CORE_INCS="$CORE_INCS $ngx_feature_path" CORE_LIBS="$CORE_LIBS $ngx_feature_libs" |
