diff options
author | David Turner <digit@android.com> | 2010-09-09 18:04:49 +0200 |
---|---|---|
committer | David 'Digit' Turner <digit@android.com> | 2010-09-13 00:30:34 -0700 |
commit | 80dd1261df980abf963b7f4a73f43c1102848706 (patch) | |
tree | f300ac7f44d012857c44fcb356ae7a876c0cac04 /android | |
parent | d480e7f0ee7bc26dcf62db2c7afc9a57ba4f5d63 (diff) | |
download | external_qemu-80dd1261df980abf963b7f4a73f43c1102848706.zip external_qemu-80dd1261df980abf963b7f4a73f43c1102848706.tar.gz external_qemu-80dd1261df980abf963b7f4a73f43c1102848706.tar.bz2 |
Add <fnmatch.h> check to android-configure.h
Diffstat (limited to 'android')
-rw-r--r-- | android/build/common.sh | 2 | ||||
-rw-r--r-- | android/config/darwin-x86/config-host.h | 1 | ||||
-rw-r--r-- | android/config/freebsd-x86/config-host.h | 1 | ||||
-rw-r--r-- | android/config/linux-x86/config-host.h | 1 |
4 files changed, 4 insertions, 1 deletions
diff --git a/android/build/common.sh b/android/build/common.sh index 6c62977..b053b97 100644 --- a/android/build/common.sh +++ b/android/build/common.sh @@ -413,7 +413,7 @@ feature_check_link () feature_check_header () { local result_ch - log2 "HeaderChk : $2" + log "HeaderCheck: $2" echo "#include $2" > $TMPC cat >> $TMPC <<EOF int main(void) { return 0; } diff --git a/android/config/darwin-x86/config-host.h b/android/config/darwin-x86/config-host.h index f02a109..1f5352b 100644 --- a/android/config/darwin-x86/config-host.h +++ b/android/config/darwin-x86/config-host.h @@ -2,6 +2,7 @@ #define CONFIG_QEMU_SHAREDIR "/usr/local/share/qemu" #define HOST_I386 1 #define HOST_LONG_BITS 32 +#define CONFIG_FNMATCH 1 #define CONFIG_DARWIN 1 #define CONFIG_GDBSTUB 1 #define CONFIG_SLIRP 1 diff --git a/android/config/freebsd-x86/config-host.h b/android/config/freebsd-x86/config-host.h index 844698a..b5a7f72 100644 --- a/android/config/freebsd-x86/config-host.h +++ b/android/config/freebsd-x86/config-host.h @@ -2,6 +2,7 @@ #define CONFIG_QEMU_SHAREDIR "/usr/local/share/qemu" #define HOST_I386 1 #define HOST_LONG_BITS 32 +#define CONFIG_FNMATCH 1 #define CONFIG_GDBSTUB 1 #define CONFIG_SLIRP 1 #define CONFIG_OSS 1 diff --git a/android/config/linux-x86/config-host.h b/android/config/linux-x86/config-host.h index 1a86213..df63ac8 100644 --- a/android/config/linux-x86/config-host.h +++ b/android/config/linux-x86/config-host.h @@ -3,6 +3,7 @@ #define HOST_I386 1 #define HOST_LONG_BITS 32 #define HAVE_BYTESWAP_H 1 +#define CONFIG_FNMATCH 1 #define CONFIG_GDBSTUB 1 #define CONFIG_SLIRP 1 #define QEMU_VERSION "0.10.50" |