summaryrefslogtreecommitdiffstats
path: root/osdep/posix-spawn.h
diff options
context:
space:
mode:
authorTom Yan <tom.ty89@gmail.com>2018-07-21 16:39:11 +0800
committersfan5 <sfan5@live.de>2018-08-20 17:16:22 +0200
commitd4bbfb8453f2161fd21e6f3c00023edf43cc88fc (patch)
treecf08e1c64d498892e5a8cf129064d8ab78781531 /osdep/posix-spawn.h
parentd48786f68264ed23f8c3aa847e672a24d1cf4944 (diff)
downloadmpv-d4bbfb8453f2161fd21e6f3c00023edf43cc88fc.tar.bz2
mpv-d4bbfb8453f2161fd21e6f3c00023edf43cc88fc.tar.xz
osdep: make use of HAVE_ANDROID
Diffstat (limited to 'osdep/posix-spawn.h')
-rw-r--r--osdep/posix-spawn.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/osdep/posix-spawn.h b/osdep/posix-spawn.h
index d8bf874c98..fdba50149c 100644
--- a/osdep/posix-spawn.h
+++ b/osdep/posix-spawn.h
@@ -19,7 +19,9 @@
#pragma once
-#ifdef __ANDROID__
+#include "config.h"
+
+#if HAVE_ANDROID
// posix_spawn(p) does not exist at all on Android
#include "osdep/android/posix-spawn.h"
#else