summaryrefslogtreecommitdiffstats
path: root/osdep
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2017-06-27 12:37:47 +0200
committerwm4 <wm4@nowhere>2017-06-29 10:30:13 +0200
commit70a70b9da347d7ef25a9862af83731b9b0a0d3f1 (patch)
tree541ad35c45560d81498fe246de1a6f70f5a8265f /osdep
parent0b77f6fd229f537a309f1d5b37469392e65d279e (diff)
downloadmpv-70a70b9da347d7ef25a9862af83731b9b0a0d3f1.tar.bz2
mpv-70a70b9da347d7ef25a9862af83731b9b0a0d3f1.tar.xz
build: replace glob() check and assume it's always in POSIX
POSIX requires glob(), so no need to check for it. Together with the fact that we can emulate glob() on Windows, glob() is always available.
Diffstat (limited to 'osdep')
-rw-r--r--osdep/io.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/osdep/io.h b/osdep/io.h
index 01c7c8bfdf..61d2a4af55 100644
--- a/osdep/io.h
+++ b/osdep/io.h
@@ -28,7 +28,7 @@
#include <sys/stat.h>
#include <fcntl.h>
-#if HAVE_GLOB
+#if HAVE_POSIX
#include <glob.h>
#endif