On Fri, May 2, 2025 at 11:52 AM Tom Lane <t...@sss.pgh.pa.us> wrote: > $ pkg-config --cflags libcurl > -I/opt/local/include -I/opt/local/libexec/openssl3/include > -I/opt/local/include > > I bet Homebrew's libcurl packaging doesn't do that.
Nope, Homebrew breaks them out into smaller pieces: % PKG_CONFIG_PATH=/opt/homebrew/opt/curl/lib/pkgconfig pkg-config --cflags libcurl -I/opt/homebrew/Cellar/curl/8.13.0/include -I/opt/homebrew/Cellar/brotli/1.1.0/include -I/opt/homebrew/opt/zstd/include -I/opt/homebrew/Cellar/libssh2/1.11.1/include -I/opt/homebrew/Cellar/rtmpdump/2.4-20151223_3/include -I/opt/homebrew/Cellar/openssl@3/3.5.0/include -I/opt/homebrew/Cellar/libnghttp2/1.65.0/include --Jacob