From b99fd7646cbd3a1b4ec0d06c9a7bcd6dce4c2078 Mon Sep 17 00:00:00 2001 From: Guus Sliepen Date: Wed, 1 Apr 2026 22:32:15 +0200 Subject: [PATCH] Add workarounnd for bug in LZO2 header files The header includes , which should have been , or the pkg-config file is wrong. This is mainly an issue on macOS when installing LZO2 via Homebrew. --- .github/workflows/test.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 00087eb0..c8741740 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -302,14 +302,14 @@ jobs: run: sh .ci/deps.sh - name: Run tests with default settings - run: sh .ci/test/run.sh default + run: CFLAGS=/opt/homebrew/include sh .ci/test/run.sh default - name: Run tests without legacy protocol - run: sh .ci/test/run.sh nolegacy + run: CFLAGS=/opt/homebrew/include sh .ci/test/run.sh nolegacy if: always() - name: Run tests with libgcrypt - run: sh .ci/test/run.sh gcrypt + run: CFLAGS=/opt/homebrew/include sh .ci/test/run.sh gcrypt if: always() - name: Upload test results -- 2.47.3