From e7f0d0eef13fee1682ce674385677d8b01c7b2de Mon Sep 17 00:00:00 2001 From: Ray Date: Fri, 21 Apr 2017 00:08:24 +0200 Subject: [PATCH] Corrected issue with alloca.h on GCC --- src/external/stb_vorbis.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/external/stb_vorbis.c b/src/external/stb_vorbis.c index ac8c9ca55..21638bcda 100644 --- a/src/external/stb_vorbis.c +++ b/src/external/stb_vorbis.c @@ -168,7 +168,7 @@ #include // find definition of alloca if it's not in stdlib.h: - #ifdef _MSC_VER + #if defined(_MSC_VER) || defined(__MINGW32__) #include #endif #if defined(__linux__) || defined(__linux) || defined(__EMSCRIPTEN__)