From 7818e21350bc24b7aa8ef15748aadab5d3c102ae Mon Sep 17 00:00:00 2001 From: Matt Borgerson Date: Sun, 18 Apr 2021 22:53:55 -0700 Subject: [PATCH] build: Remove --disable-opengl flag for Windows builds --- build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sh b/build.sh index 0de398793e..6dcd891ba8 100755 --- a/build.sh +++ b/build.sh @@ -168,7 +168,7 @@ case "$(uname -s)" in # Adjust compilation options based on platform CYGWIN*|MINGW*|MSYS*) echo 'Compiling for Windows...' sys_cflags='-Wno-error' - sys_opts='--python=python3 --disable-cocoa --disable-opengl --disable-fortify-source' + sys_opts='--python=python3 --disable-cocoa --disable-fortify-source' postbuild='package_windows' # set the above function to be called after build ;; *)