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 fcbbbf0 commit a0df828Copy full SHA for a0df828
.github/workflows/linux_and_macos.yml
@@ -101,6 +101,15 @@ jobs:
101
portaudio \
102
sdl12-compat
103
104
+ # Patch ax_check_gl.m4 of autoconf-archive 2024.10.16 as needed
105
+ # https://github.com/Homebrew/homebrew-core/issues/202234
106
+ set -x -o pipefail
107
+ ax_check_gl_m4=/usr/local/Cellar/autoconf-archive/2024.10.16/share/aclocal/ax_check_gl.m4
108
+ if [[ -e "${ax_check_gl_m4}" ]] && ! grep -qF '[m4_fatal' "${ax_check_gl_m4}" ; then
109
+ wget -O- https://github.com/autoconf-archive/autoconf-archive/commit/427e226a2fe3980388abffd6de25ed6b9591cce3.patch \
110
+ | sudo patch -N "${ax_check_gl_m4}"
111
+ fi
112
+
113
- name: Setting dynamic environment variables
114
run: |-
115
set -x
0 commit comments