From: Stefan Krah Date: Tue, 26 Apr 2016 14:48:48 +0000 (+0200) Subject: Issue #26854: Android has a different include path for soundcard.h. X-Git-Tag: v3.6.0a1~108 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=fa935c4727da6e34e42643fe54fe291e87f00ace;p=thirdparty%2FPython%2Fcpython.git Issue #26854: Android has a different include path for soundcard.h. --- diff --git a/Modules/ossaudiodev.c b/Modules/ossaudiodev.c index d2fd5c81d1be..2b7d71f64f19 100644 --- a/Modules/ossaudiodev.c +++ b/Modules/ossaudiodev.c @@ -31,7 +31,11 @@ #endif #include +#ifdef __ANDROID__ +#include +#else #include +#endif #if defined(linux)