From b4ada541d364ba5eb6d76e4634c18267527902bd Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Tue, 31 Jan 2023 20:34:51 -0500 Subject: [PATCH] hack around issue #359 compiler regression --- simpleaudio.d | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/simpleaudio.d b/simpleaudio.d index b8f384d..4b7f010 100644 --- a/simpleaudio.d +++ b/simpleaudio.d @@ -39,11 +39,17 @@ Ditto for Macintosh, as I don't have one and don't really care about them. License: - GPL3 unless you compile with `-version=without_resampler` and do *not* use - the mp3 functions, in which case it is BSL-1.0. + GPL3 unless you compile with `-version=without_resampler` and don't use the `playEmulatedOpl3Midi`, + in which case it is BSL-1.0. */ module arsd.simpleaudio; +// hacking around https://issues.dlang.org/show_bug.cgi?id=23595 +import core.stdc.config; +version(Posix) + import core.sys.posix.sys.types; +// done with hack around compiler bug + // http://webcache.googleusercontent.com/search?q=cache:NqveBqL0AOUJ:https://www.alsa-project.org/alsa-doc/alsa-lib/group___p_c_m.html&hl=en&gl=us&strip=1&vwsrc=0 version(without_resampler) {