summaryrefslogtreecommitdiffstats
path: root/audio
diff options
context:
space:
mode:
authorJames Ross-Gowan <rossymiles@gmail.com>2016-05-01 01:49:38 +1000
committerJames Ross-Gowan <rossymiles@gmail.com>2016-05-01 21:10:24 +1000
commit622bcb0e37f39f2a542b42587ca442c6600b7414 (patch)
treef259c4decae00ab80e047031beabec4c03635e55 /audio
parent9fda504d18bb8363353c82642f0a84ad0c94dec8 (diff)
downloadmpv-622bcb0e37f39f2a542b42587ca442c6600b7414.tar.bz2
mpv-622bcb0e37f39f2a542b42587ca442c6600b7414.tar.xz
win32: replace libuuid.a usage with initguid.h
Including initguid.h at the top of a file that uses references to GUIDs causes the GUIDs to be declared globally with __declspec(selectany). The 'selectany' attribute tells the linker to consolidate multiple definitions of each GUID, which would be great except that, in Cygwin and MinGW GCC 6.1, this method of linking makes the GUIDs conflict with the ones declared in libuuid.a. Since initguid.h obsoletes libuuid.a in modern compilers that support __declspec(selectany), add initguid.h to all files that use GUIDs and remove libuuid.a from the build. Fixes #3097
Diffstat (limited to 'audio')
-rw-r--r--audio/out/ao_wasapi_changenotify.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/audio/out/ao_wasapi_changenotify.c b/audio/out/ao_wasapi_changenotify.c
index 661e957bcc..e3ca4e4936 100644
--- a/audio/out/ao_wasapi_changenotify.c
+++ b/audio/out/ao_wasapi_changenotify.c
@@ -17,6 +17,7 @@
* License along with mpv. If not, see <http://www.gnu.org/licenses/>.
*/
+#include <initguid.h>
#include <wchar.h>
#include "ao_wasapi.h"