From cf8d72d740c9f8b2e2f6ee5fa1c6312e20f6a43d Mon Sep 17 00:00:00 2001 From: MarioG-X <20360699+MarioG-X@users.noreply.github.com> Date: Sun, 15 Jun 2025 11:31:26 -0700 Subject: [PATCH] Update macos.yml added pkgconf Tested on empty Mac Intel and Apple Silicon. Both failed due to missing pkgconf. It is required and not auto downloaded as prerequisite to other packages. Note the name is now pkgconf on homebrew. It is the newer version of pkg-config and pkgconfig which are now aliases that point to pkgconf on homebrew. --- .github/workflows/macos.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index e4bcb539e11..a9c13d53920 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -25,7 +25,7 @@ jobs: - name: Install dependencies run: | brew update - # brew install libtiff openssl@3 pkg-config + # brew install libtiff openssl@3 brew install \ autoconf \ automake \ @@ -41,6 +41,7 @@ jobs: opus \ ossp-uuid \ pcre \ + pkgconf \ sofia-sip \ speex \ speexdsp \