Fix build issues on MinGW

pull/306/head
Jonathan G Rennison 3 years ago
parent b65b4d558e
commit 8113b4bdbf

@ -18,6 +18,9 @@
#include "thread.h"
#include <array>
#include <mutex>
#if defined(__MINGW32__)
#include "3rdparty/mingw-std-threads/mingw.mutex.h"
#endif
#if defined(_WIN32)
#include "os/windows/win32.h"

@ -16,6 +16,9 @@
#include <fluidsynth.h>
#include "../mixer.h"
#include <mutex>
#if defined(__MINGW32__)
#include "3rdparty/mingw-std-threads/mingw.mutex.h"
#endif
static struct {
fluid_settings_t *settings; ///< FluidSynth settings handle

Loading…
Cancel
Save