Alexandre Julliard : krnl386: Don't attempt direct I/ O port access on Android.

Alexandre Julliard julliard at winehq.org
Tue Jul 30 14:14:21 CDT 2013


Module: wine
Branch: master
Commit: fa0a73963f63eb7e7b9d85104ff346e2e0e492f9
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=fa0a73963f63eb7e7b9d85104ff346e2e0e492f9

Author: Alexandre Julliard <julliard at winehq.org>
Date:   Mon Jul 29 22:45:00 2013 +0200

krnl386: Don't attempt direct I/O port access on Android.

---

 dlls/krnl386.exe16/ioports.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/krnl386.exe16/ioports.c b/dlls/krnl386.exe16/ioports.c
index 457c64d..a3e7342 100644
--- a/dlls/krnl386.exe16/ioports.c
+++ b/dlls/krnl386.exe16/ioports.c
@@ -60,7 +60,7 @@
 
 WINE_DEFAULT_DEBUG_CHANNEL(int);
 
-#ifdef linux
+#if defined(linux) && !defined(__ANDROID__)
 # define DIRECT_IO_ACCESS
 #else
 # undef DIRECT_IO_ACCESS




More information about the wine-cvs mailing list