summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorgabucino <gabucino@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-10-25 20:33:51 +0000
committergabucino <gabucino@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-10-25 20:33:51 +0000
commite7850b6cabab193402f3f87c5e9148db17c3201c (patch)
tree18d01ea7aa861e2dd731be3f0a36f0f2559e2fb5 /configure
parent623bf5f6c774a2d584bdc181f203d0acac255ba4 (diff)
downloadmpv-e7850b6cabab193402f3f87c5e9148db17c3201c.tar.bz2
mpv-e7850b6cabab193402f3f87c5e9148db17c3201c.tar.xz
finally removing pthread dependency!!
(did because default NetBSD installs without pthread AFAIK) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11264 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure11
1 files changed, 7 insertions, 4 deletions
diff --git a/configure b/configure
index ec2c17d668..6bf89b3733 100755
--- a/configure
+++ b/configure
@@ -2253,14 +2253,17 @@ else
elif ( cc_check -pthread ) ; then
_ld_pthread='-pthread'
else
- die "Static lib pthread not found (needed by Windows and networking stufff)."
+ echores "no static pthread found (v4l, vo_gl, ao_alsa, ao_nas, ao_macosx, Win32 loader disabled)"
+ _ld_pthread='' ; _nas=no ; _tv_v4l=no ; _tv_v4l=no ; _macosx=no ; _win32=no
fi
else
- die "Lib pthread not found (needed by Windows and networking stuff)."
+ echores "no (v4l, vo_gl, ao_alsa, ao_nas, ao_macosx, win32 loader disabled)"
+ _ld_pthread='' ; _nas=no ; _tv_v4l=no ; _tv_v4l=no ; _macosx=no ; _win32=no
fi
fi
-echores "yes (using $_ld_pthread)"
-
+if test "$_ld_pthread" != '' ; then
+ echores "yes (using $_ld_pthread)"
+fi
echocheck "sys/soundcard.h"
cat > $TMPC << EOF