diff options
author | Nicolas Dufresne <nicolas.dufresne@collabora.com> | 2016-07-04 17:54:45 -0400 |
---|---|---|
committer | Arun Raghavan <arun@arunraghavan.net> | 2016-07-14 12:57:43 +0900 |
commit | db2f422578140ba6aaf7a2a1d54caacf832fbee2 (patch) | |
tree | feb3a81d9c4d51b62a4a3441792e297ee0026985 | |
parent | bf6b9de143edfe45ec6f40845510bdb655f866aa (diff) |
build: Define MSVC _WIN32 so we can build on mingw
https://bugs.freedesktop.org/show_bug.cgi?id=96754
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 92706e7..5ec8517 100644 --- a/configure.ac +++ b/configure.ac @@ -71,7 +71,7 @@ AS_CASE(["${host}"], ], [*-mingw32*], [ - PLATFORM_CFLAGS="-DWEBRTC_WIN -U__STRICT_ANSI__" + PLATFORM_CFLAGS="-DWEBRTC_WIN -D_WIN32 -U__STRICT_ANSI__" HAVE_WIN=1 ] ) |