summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorfaust3 <faust3@b3059339-0415-0410-9bf9-f77b7e298cf2>2005-06-26 17:32:59 +0000
committerfaust3 <faust3@b3059339-0415-0410-9bf9-f77b7e298cf2>2005-06-26 17:32:59 +0000
commit514ba2fd51e36f24560d554b81846d40e1f47a45 (patch)
treec7f93fdde94dbb663b182a2f4ad899f32b485c02 /configure
parent226ac28fff0a995d6ec23367e6bab2714a382ed7 (diff)
downloadmpv-514ba2fd51e36f24560d554b81846d40e1f47a45.tar.bz2
mpv-514ba2fd51e36f24560d554b81846d40e1f47a45.tar.xz
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
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure12
1 files changed, 7 insertions, 5 deletions
diff --git a/configure b/configure
index 5f0565ec7a..6cb7dce12b 100755
--- a/configure
+++ b/configure
@@ -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