We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b5cefb commit 2788b42Copy full SHA for 2788b42
.github/workflows/linux_and_macos.yml
@@ -84,6 +84,15 @@ jobs:
84
portaudio \
85
sdl12-compat
86
87
+ # Find and patch ax_check_gl.m4 as needed
88
+ # https://github.com/Homebrew/homebrew-core/issues/202234
89
+ set -x -o pipefail
90
+ ax_check_gl_m4=/usr/local/Cellar/autoconf-archive/2024.10.16/share/aclocal/ax_check_gl.m4
91
+ if [[ -e "${ax_check_gl_m4}" ]] && ! grep -qF '[m4_fatal' "${ax_check_gl_m4}" ; then
92
+ wget -O- https://github.com/autoconf-archive/autoconf-archive/commit/427e226a2fe3980388abffd6de25ed6b9591cce3.patch \
93
+ | sudo patch -N "${ax_check_gl_m4}"
94
+ fi
95
+
96
- name: Setting dynamic environment variables
97
run: |-
98
set -x
0 commit comments