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
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/thread.h
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/thread.h')
-rw-r--r--src/thread.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/thread.h b/src/thread.h
index b5cdc2a..93b7347 100644
--- a/src/thread.h
+++ b/src/thread.h
@@ -28,7 +28,7 @@
#ifndef __DAV1D_THREAD_H__
# define __DAV1D_THREAD_H__
-#if defined(_WIN32) && !defined(HAVE_PTHREAD_H)
+#if defined(_WIN32)
#include <windows.h>