From 4245f2a02b15ea787f3713fb5065fc5527788c44 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Wed, 2 Dec 2015 15:07:33 +0100 Subject: fix pthread-windows semaphore detection --- wscript | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/wscript b/wscript index 041b12ecba..d28739a134 100644 --- a/wscript +++ b/wscript @@ -963,8 +963,20 @@ int main () { int x = SFC_RF64_AUTO_DOWNGRADE; return 0; } conf.env.append_value('CXXFLAGS', '-DUSE_CAIRO_IMAGE_SURFACE') conf.define ('WINDOWS', 1) - if os.path.isfile (user_gtk_root + 'include/semaphore.h'): - conf.define ('USE_PTW32_SEMAPHORE', 1) + have_ptw_semaphore = conf.check_cc(fragment = ''' +#include +#include +int main () { return 0; } +''', + features = 'c', + mandatory = False, + execute = False, + msg = 'Checking for pthread posix semaphore', + okmsg = 'Found', + errmsg = 'Not found, falling back to Windows Semaphore.') + + if have_ptw_semaphore: + conf.define('USE_PTW32_SEMAPHORE', 1) conf.env.append_value('CFLAGS', '-DUSE_PTW32_SEMAPHORE') conf.env.append_value('CXXFLAGS', '-DUSE_PTW32_SEMAPHORE') -- cgit v1.2.3