summaryrefslogtreecommitdiffstats
path: root/DOCS/compile-windows.md
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2015-12-20 11:18:02 +0100
committerwm4 <wm4@nowhere>2015-12-20 11:18:02 +0100
commit7f313afd0862d11f719e0422040fe0cf783aec16 (patch)
tree74a7af94492d1da558c8d4b68432bf56ecdb3735 /DOCS/compile-windows.md
parent7558d1ed7b86dbd23504f743d27973556ed68dff (diff)
downloadmpv-7f313afd0862d11f719e0422040fe0cf783aec16.tar.bz2
mpv-7f313afd0862d11f719e0422040fe0cf783aec16.tar.xz
DOCS/compile-windows: pthreads is not needed anymore
Both mpv and ffmpeg have their own internal pthreads wrappers. The mpv one has been recently enabled by default as well. (It didn't work on XP, but we dropped XP support.)
Diffstat (limited to 'DOCS/compile-windows.md')
-rw-r--r--DOCS/compile-windows.md17
1 files changed, 1 insertions, 16 deletions
diff --git a/DOCS/compile-windows.md b/DOCS/compile-windows.md
index a0e27baf4b..6e08d78ed7 100644
--- a/DOCS/compile-windows.md
+++ b/DOCS/compile-windows.md
@@ -68,7 +68,7 @@ echo "MXE_TARGETS := i686-w64-mingw32.static" >> settings.mk
# Build required packages. The following provide a minimum required to build
# a reasonable mpv binary (though not an absolute minimum).
-make gcc ffmpeg libass jpeg pthreads lua
+make gcc ffmpeg libass jpeg lua
# Add MXE binaries to $PATH
export PATH=/opt/mxe/usr/bin/:$PATH
@@ -173,18 +173,3 @@ mv -f /mingw64/bin/libmpv.dll.a /mingw64/lib/
sed -i 's_/mingw64/bin_/mingw64/lib_' /mingw64/lib/pkgconfig/mpv.pc
rmdir /mingw64/bin/pkgconfig
```
-
-Additional dependencies
-=======================
-
-pthreads
---------
-
-mpv will use a pthreads wrapper by default. Either pthreads-win32 or
-winpthreads should work. The latter is packaged with most MinGW-w64
-environments, including MSYS2, so it shouldn't be a problem. If you don't have
-a pthreads wrapper or you want to build mpv without one, configure with:
-
-```bash
-./waf configure --enable-win32-internal-pthreads
-```