Skip to content
Snippets Groups Projects
Verified Commit 21d84125 authored by Richard Pospesel's avatar Richard Pospesel Committed by Pier Angelo Vendrame
Browse files

fixup! Bug 41459: WebRTC fails to build under mingw (Part 3)

parent afc62d14
No related branches found
No related tags found
1 merge request!609Bug 41687: Rebased alpha to 102.10
......@@ -50,14 +50,10 @@ typedef int64_t ssize_t;
#endif
/*
* Define pid_t.
* Define pid_t for MSVC builds
*/
#if defined(_WIN32)
#if defined(_MSC_VER) || !defined(_WIN64)
#if defined(_WIN32) && defined (_MSC_VER)
typedef int pid_t;
#else
typedef long long pid_t;
#endif
#endif
/*
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment