mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-21 07:47:32 +09:00
Add support for compiling under MinGW + fix Windows compiling in general
This commit is contained in:
parent
e3a45c193c
commit
a5cf494890
56 changed files with 243 additions and 76 deletions
|
|
@ -1 +1,13 @@
|
|||
// Intentionally left blank
|
||||
/*
|
||||
* Stagefright's win32 include path shadows the toolchain <pthread.h>.
|
||||
* On MinGW we need the real pthread declarations for libstdc++ gthr.
|
||||
*/
|
||||
|
||||
#ifndef stagefright_win32_pthread_h
|
||||
#define stagefright_win32_pthread_h
|
||||
|
||||
#if defined(__MINGW32__)
|
||||
# include_next <pthread.h>
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue