diff options
author | Raphael <raphael@google.com> | 2010-04-14 12:16:28 -0700 |
---|---|---|
committer | Raphael <raphael@google.com> | 2010-04-14 12:16:28 -0700 |
commit | aea1b87e31b952a733fe6cc6a0be4493a78ea961 (patch) | |
tree | a5098d8468ea918a640ab43cb80409f4a2ca276b /android/utils | |
parent | 555d73444f8f053323828e354f446ccee41439d5 (diff) | |
download | external_qemu-aea1b87e31b952a733fe6cc6a0be4493a78ea961.zip external_qemu-aea1b87e31b952a733fe6cc6a0be4493a78ea961.tar.gz external_qemu-aea1b87e31b952a733fe6cc6a0be4493a78ea961.tar.bz2 |
Changes to build Windows emulator under Linux/MinGW
- Linux being case-sensitve, include "windows.h" instead of "Windows.h" is important.
- Use MinGW's windres.
- No pthread needed.
Change-Id: Ib4ce944bb55a8b1d870e230f269c89cb7df0b3f2
Diffstat (limited to 'android/utils')
-rw-r--r-- | android/utils/mapfile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/android/utils/mapfile.c b/android/utils/mapfile.c index f964d38..c8ba8e5 100644 --- a/android/utils/mapfile.c +++ b/android/utils/mapfile.c @@ -19,7 +19,7 @@ #include "sys/types.h" #include "errno.h" #ifdef WIN32 -#include "Windows.h" +#include "windows.h" #else // WIN32 #include <sys/mman.h> #endif // WIN32 |