Skip to content

Commit

Permalink
Do not build wasapi into SDL2.
Browse files Browse the repository at this point in the history
This is because, at least on wine, playback of audio via wasapi
doesn't work. The directsound path that had been used works
fine, so we go back to it.
  • Loading branch information
renpytom committed Dec 18, 2019
1 parent c16e2f0 commit 304cbf9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tasks/sdl2.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ def build(c):
c.var("version", version)
c.chdir("SDL2-{{version}}")

c.run("""./configure {{ cross_config }} --disable-shared --disable-dependency-tracking --prefix="{{ install }}" """)
c.run("""./configure {{ cross_config }} --disable-shared --disable-dependency-tracking --disable-wasapi --prefix="{{ install }}" """)
c.run("""{{ make }}""")
c.run("""make install""")

0 comments on commit 304cbf9

Please sign in to comment.