10l to myself for breaking mingws dll codec support when libpthread is not installed

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@15822 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
faust3 2005-06-26 17:32:59 +00:00
parent 226ac28fff
commit 514ba2fd51
1 changed files with 7 additions and 5 deletions

12
configure vendored
View File

@ -2821,12 +2821,10 @@ else
elif ( cc_check -pthread ) ; then
_ld_pthread='-pthread'
else
echores "no static pthread found (v4l, vo_gl, ao_alsa, ao_nas, ao_macosx, Win32 loader disabled)"
_ld_pthread='' ; _nas=no ; _tv_v4l=no ; _macosx=no ; _win32=no
_ld_pthread=''
fi
else
echores "no (v4l, vo_gl, ao_alsa, ao_nas, ao_macosx, win32 loader disabled)"
_ld_pthread='' ; _nas=no ; _tv_v4l=no ; _macosx=no ; _win32=no
_ld_pthread=''
fi
fi
fi
@ -2836,9 +2834,13 @@ if test "$_ld_pthread" != '' ; then
_def_pthreads='#define HAVE_PTHREADS 1'
_def_threads='#define HAVE_THREADS 1'
else
echores "no"
echores "no (v4l, vo_gl, ao_alsa, ao_nas, ao_macosx, win32 loader disabled)"
_pthreads=''
_def_pthreads='#undef HAVE_PTHREADS'
_nas=no ; _tv_v4l=no ; _macosx=no
if not mingw32 ; then
_win32=no
fi
fi