mirror of
https://github.com/mpv-player/mpv
synced 2025-01-01 04:36:24 +01:00
When setting HAVE_PTHREADS, set HAVE_THREADS also to avoid linking problems with lavc (because utils.c defines a stub otherwise)
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14226 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
aa5f7dea07
commit
1b231d2d49
5
configure
vendored
5
configure
vendored
@ -2668,6 +2668,7 @@ echores "$_dynamic_plugins"
|
||||
#fi
|
||||
#echores "using $_ld_dl_dynamic"
|
||||
|
||||
_def_threads='#undef HAVE_THREADS'
|
||||
|
||||
echocheck "pthread"
|
||||
cat > $TMPC << EOF
|
||||
@ -2703,6 +2704,7 @@ if test "$_ld_pthread" != '' ; then
|
||||
echores "yes (using $_ld_pthread)"
|
||||
_pthreads='yes'
|
||||
_def_pthreads='#define HAVE_PTHREADS 1'
|
||||
_def_threads='#define HAVE_THREADS 1'
|
||||
else
|
||||
echores "no"
|
||||
_pthreads=''
|
||||
@ -6944,6 +6946,9 @@ $_def_glob
|
||||
/* Define this if your system has pthreads */
|
||||
$_def_pthreads
|
||||
|
||||
/* Define this if you enabled thread support for libavcodec */
|
||||
$_def_threads
|
||||
|
||||
/* LIRC (remote control, see www.lirc.org) support: */
|
||||
$_def_lirc
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user