summaryrefslogtreecommitdiffstats
path: root/waftools/fragments/pthreads.c
diff options
context:
space:
mode:
authorLaserEyess <lasereyess@users.noreply.github.com>2022-11-12 09:27:07 -0500
committerDudemanguy <random342@airmail.cc>2023-07-23 19:55:51 +0000
commitf2cce5f38f4031bf1a4b4919ec90e4e8f8c66a77 (patch)
treec5c7f21eb2e1556265655d166ea0bee258376d5b /waftools/fragments/pthreads.c
parent60a263246e03d23c894ae0ef6bbfa29a5f1855dc (diff)
downloadmpv-f2cce5f38f4031bf1a4b4919ec90e4e8f8c66a77.tar.bz2
mpv-f2cce5f38f4031bf1a4b4919ec90e4e8f8c66a77.tar.xz
waf: remove waf as a build system
Remove waf entirely in favor of meson as the only supported build system. Waf was officially deprecated in 0.36.0, and has not been preferred over meson since 0.35.0.
Diffstat (limited to 'waftools/fragments/pthreads.c')
-rw-r--r--waftools/fragments/pthreads.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/waftools/fragments/pthreads.c b/waftools/fragments/pthreads.c
deleted file mode 100644
index 84f3d087fb..0000000000
--- a/waftools/fragments/pthreads.c
+++ /dev/null
@@ -1,6 +0,0 @@
-#include <pthread.h>
-static void *func(void *arg) { return arg; }
-int main(void) {
- pthread_t tid;
- return pthread_create (&tid, 0, func, 0) != 0;
-}