build: fix missing windows libraries

This commit is contained in:
Kevin Mitchell 2015-03-16 15:29:22 -07:00
parent d96fad04be
commit 70a190af04
1 changed files with 2 additions and 2 deletions

View File

@ -129,8 +129,8 @@ main_dependencies = [
}, {
'name': 'win32',
'desc': 'win32',
'deps': [ 'os-win32' ],
'func': check_libs(['gdi32', 'winmm', 'ole32', 'uuid'], check_true),
'deps_any': [ 'os-win32', 'os-cygwin' ],
'func': check_cc(lib=['winmm', 'gdi32', 'ole32', 'uuid']),
}, {
'name': '--win32-internal-pthreads',
'desc': 'internal pthread wrapper for win32 (Vista+)',