build: fix dependencies for Cygwin environment

This replaces previous commit with same intentions. This time, with
proper formating (no tabs in code).
This commit is contained in:
feixm1 2017-08-08 00:00:02 +02:00 committed by wm4
parent c1bcd30b09
commit a434892208
2 changed files with 3 additions and 3 deletions

View File

@ -548,7 +548,7 @@ audio_output_features = [
}, {
'name': '--wasapi',
'desc': 'WASAPI audio output',
'deps': ['os-win32'],
'deps_any': ['os-win32', 'os-cygwin'],
'func': check_cc(fragment=load_fragment('wasapi.c')),
}
]

View File

@ -120,9 +120,9 @@ def build(ctx):
ctx(features = "ebml_definitions", target = "ebml_defs.c")
main_fn_c = ctx.pick_first_matching_dep([
( "osdep/main-fn-unix.c", "posix" ),
( "osdep/main-fn-win.c", "win32-desktop" ),
( "osdep/main-fn-cocoa.c", "cocoa" ),
( "osdep/main-fn-unix.c" ),
])
getch2_c = ctx.pick_first_matching_dep([
@ -466,12 +466,12 @@ def build(ctx):
( "osdep/path-macosx.m", "cocoa" ),
( "osdep/path-unix.c"),
( "osdep/path-win.c", "win32-desktop" ),
( "osdep/path-win.c", "os-cygwin" ),
( "osdep/path-uwp.c", "uwp" ),
( "osdep/glob-win.c", "glob-win32" ),
( "osdep/w32_keyboard.c", "os-win32" ),
( "osdep/w32_keyboard.c", "os-cygwin" ),
( "osdep/windows_utils.c", "os-win32" ),
( "osdep/windows_utils.c", "os-cygwin" ),
( "osdep/mpv.rc", "win32-executable" ),
( "osdep/win32/pthread.c", "win32-internal-pthreads"),
( "osdep/android/strnlen.c", "android"),