Skip to content
Snippets Groups Projects
Commit e247c93c authored by Richard Pospesel's avatar Richard Pospesel
Browse files

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

parent 0a233469
1 merge request!581Bug 41678: Correct the typedef for pid_t in WebRTC for Windows
......@@ -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.
Please to comment