Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/videolan/dav1d.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src/win32
diff options
context:
space:
mode:
authorHugo Beauzée-Luyssen <hugo@videolan.org>2018-09-27 10:49:03 +0300
committerHugo Beauzée-Luyssen <hugo@videolan.org>2018-09-27 13:51:17 +0300
commit11e93ea529505507f325b392840ddbcbc6836873 (patch)
tree8cc47968c2c9db02e3e970dfde1f87fc45d2b380 /src/win32
parent98fb45e08687e407f343f575e7d0dcf9fb72746e (diff)
Remove HAVE_PTHREAD_H config macro
Since we don't want to probe for winpthreads anymore, this macro isn't usefull anymore
Diffstat (limited to 'src/win32')
-rw-r--r--src/win32/thread.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/win32/thread.c b/src/win32/thread.c
index c3ea729..4932241 100644
--- a/src/win32/thread.c
+++ b/src/win32/thread.c
@@ -27,7 +27,7 @@
#include "config.h"
-#if defined(_WIN32) && !defined(HAVE_PTHREAD_H)
+#if defined(_WIN32)
#include <windows.h>
#include <process.h>