diff options
author | David 'Digit' Turner <digit@android.com> | 2010-05-10 18:29:40 -0700 |
---|---|---|
committer | David 'Digit' Turner <digit@android.com> | 2010-05-10 18:29:40 -0700 |
commit | 1368f99ba2c6f29a97ba057d30d4a0235c83a441 (patch) | |
tree | 47f3c2ed607ff4e337525f4cf34ac7b9c3490d19 | |
parent | 2c538c86c15d597cc875dc926e4e39285c5625df (diff) | |
download | external_qemu-1368f99ba2c6f29a97ba057d30d4a0235c83a441.zip external_qemu-1368f99ba2c6f29a97ba057d30d4a0235c83a441.tar.gz external_qemu-1368f99ba2c6f29a97ba057d30d4a0235c83a441.tar.bz2 |
Fix emulator OS X build when using the Android build system.
Change-Id: Ia19b4e14b84c12edc040a70144a97b5ca9474b00
-rw-r--r-- | android/config/darwin-x86/config-host.h | 2 | ||||
-rw-r--r-- | android/config/freebsd-x86/config-host.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/android/config/darwin-x86/config-host.h b/android/config/darwin-x86/config-host.h index 23ccb13..f72cf17 100644 --- a/android/config/darwin-x86/config-host.h +++ b/android/config/darwin-x86/config-host.h @@ -10,6 +10,6 @@ #define O_LARGEFILE 0 #define MAP_ANONYMOUS MAP_ANON #define HAVE_IOVEC 1 -#define _BSD 1 +#define CONFIG_BSD 1 #define CONFIG_SKINS 1 #define CONFIG_UNAME_RELEASE "" diff --git a/android/config/freebsd-x86/config-host.h b/android/config/freebsd-x86/config-host.h index 8a08339..805e5de 100644 --- a/android/config/freebsd-x86/config-host.h +++ b/android/config/freebsd-x86/config-host.h @@ -8,6 +8,6 @@ #define QEMU_VERSION "0.8.2" #define O_LARGEFILE 0 #define MAP_ANONYMOUS MAP_ANON -#define _BSD 1 +#define CONFIG_BSD 1 #define CONFIG_UNAME_RELEASE "" #define CONFIG_SKINS 1 |