mirror of https://github.com/mpv-player/mpv
build: fix typo
This commit is contained in:
parent
e568299c2c
commit
b467df073e
|
@ -1358,7 +1358,7 @@ else
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if test "$_atomic" = no && test "$_sync" = no ; then
|
if test "$_atomic" = no && test "$_sync" = no ; then
|
||||||
die "your compiler must support either __atomic or __aync bult-ins."
|
die "your compiler must support either __atomic or __sync built-ins."
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if test "$_pthreads" = yes ; then
|
if test "$_pthreads" = yes ; then
|
||||||
|
|
2
wscript
2
wscript
|
@ -118,7 +118,7 @@ main_dependencies = [
|
||||||
'func': check_true,
|
'func': check_true,
|
||||||
'deps_any': ['atomic-builtins', 'sync-builtins'],
|
'deps_any': ['atomic-builtins', 'sync-builtins'],
|
||||||
'req': True,
|
'req': True,
|
||||||
'fmsg': 'your compiler must support either __atomic or __aync bult-ins',
|
'fmsg': 'your compiler must support either __atomic or __sync built-ins',
|
||||||
}, {
|
}, {
|
||||||
'name': 'librt',
|
'name': 'librt',
|
||||||
'desc': 'linking with -lrt',
|
'desc': 'linking with -lrt',
|
||||||
|
|
Loading…
Reference in New Issue