summaryrefslogtreecommitdiffstats
path: root/make/configure.py
diff options
context:
space:
mode:
authorjstebbins <[email protected]>2015-01-19 17:09:39 +0000
committerjstebbins <[email protected]>2015-01-19 17:09:39 +0000
commit03806044c2982cf163b758a5205bef49777dfc26 (patch)
tree4196140ebdaad446fc186f14217fdd25f73ef95c /make/configure.py
parent2e7330affab701fb1443fec449e2b04690b32e33 (diff)
build: fix mingw Jenkins builds
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6773 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'make/configure.py')
-rw-r--r--make/configure.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/make/configure.py b/make/configure.py
index e1e8e4d66..5f155fd70 100644
--- a/make/configure.py
+++ b/make/configure.py
@@ -1732,10 +1732,10 @@ int main()
doc.addBlank()
if not dlfcn.fail:
doc.add( 'HAS.dlfcn', 1 )
- if not pthread.fail:
- doc.add( 'HAS.pthread', 1 )
if not pthreadGC2.fail:
doc.add( 'HAS.pthreadGC2', 1 )
+ elif not pthread.fail:
+ doc.add( 'HAS.pthread', 1 )
if not bz2.fail:
doc.add( 'HAS.bz2', 1 )
if not libz.fail: