From: Guus Sliepen Date: Wed, 1 Apr 2026 20:32:15 +0000 (+0200) Subject: Add workarounnd for bug in LZO2 header files X-Git-Url: https://www.tinc-vpn.org/git/?a=commitdiff_plain;h=b99fd7646cbd3a1b4ec0d06c9a7bcd6dce4c2078;p=tinc 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. --- 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