summaryrefslogtreecommitdiffstats
path: root/libhb/ports.c
diff options
context:
space:
mode:
authorjstebbins <[email protected]>2015-01-18 17:25:51 +0000
committerjstebbins <[email protected]>2015-01-18 17:25:51 +0000
commitd972a8646edc79e7f4e373c51dc2fb77233989f2 (patch)
tree9dfa9dd68cc8d4141f2b573d726f949bdc28a8ab /libhb/ports.c
parent9250daa1b69db695007f2b43ae19ec2d66112ef9 (diff)
Work around fedora mingw pthread library requirement
Fedora mingw seems to require it's own pthread library which causes build conflicts with our pthread lib. So this patch distinguishes whether libpthread or libpthreadGC2 is already installed on the system and uses the appropriate system lib when found. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6766 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/ports.c')
-rw-r--r--libhb/ports.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/libhb/ports.c b/libhb/ports.c
index bb7c235a2..d519f593c 100644
--- a/libhb/ports.c
+++ b/libhb/ports.c
@@ -697,7 +697,11 @@ static uint64_t hb_thread_to_integer( const hb_thread_t* t )
#if defined( SYS_CYGWIN )
return (uint64_t)t->thread;
#elif defined( _WIN32 ) || defined( __MINGW32__ )
+ #if defined(PTW32_STATIC_LIB)
return (uint64_t)(ptrdiff_t)t->thread.p;
+ #else
+ return (uint64_t)t->thread;
+ #endif
#elif defined( SYS_DARWIN )
return (unsigned long)t->thread;
#else