aboutsummaryrefslogtreecommitdiffstats
path: root/elff
diff options
context:
space:
mode:
authorRaphael <raphael@google.com>2010-04-14 12:16:28 -0700
committerRaphael <raphael@google.com>2010-04-14 12:16:28 -0700
commitaea1b87e31b952a733fe6cc6a0be4493a78ea961 (patch)
treea5098d8468ea918a640ab43cb80409f4a2ca276b /elff
parent555d73444f8f053323828e354f446ccee41439d5 (diff)
downloadexternal_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 'elff')
-rw-r--r--elff/elff-common.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/elff/elff-common.h b/elff/elff-common.h
index 922de10..8729736 100644
--- a/elff/elff-common.h
+++ b/elff/elff-common.h
@@ -23,7 +23,7 @@
#include "memory.h"
#include "errno.h"
#ifdef WIN32
-#include "Windows.h"
+#include "windows.h"
#else // WIN32
#include <sys/mman.h>
#include <sys/stat.h>