diff options
author | bellard | 2004-07-05 23:25:26 +0200 |
---|---|---|
committer | bellard | 2004-07-05 23:25:26 +0200 |
commit | 83fb7adf6c653a0285a89d51b746cb642d2859cf (patch) | |
tree | 24791ee7957dae766c687945939ef17291306b32 /configure | |
parent | forgot fclose() (diff) | |
download | qemu-83fb7adf6c653a0285a89d51b746cb642d2859cf.tar.gz qemu-83fb7adf6c653a0285a89d51b746cb642d2859cf.tar.xz qemu-83fb7adf6c653a0285a89d51b746cb642d2859cf.zip |
Darwin patch (initial patch by Pierre d'Herbemont)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@980 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 17 |
1 files changed, 15 insertions, 2 deletions
@@ -88,12 +88,18 @@ bsd="yes" OpenBSD) bsd="yes" ;; +Darwin) +bsd="yes" +darwin="yes" +;; *) ;; esac if [ "$bsd" = "yes" ] ; then - make="gmake" - target_list="i386-softmmu" + if [ ! "$darwin" = "yes" ] ; then + make="gmake" + fi + target_list="i386-softmmu ppc-softmmu" fi # find source path @@ -391,6 +397,10 @@ if test "$mingw32" = "yes" ; then elif test -f "/usr/include/byteswap.h" ; then echo "#define HAVE_BYTESWAP_H 1" >> $config_h fi +if test "$darwin" = "yes" ; then + echo "CONFIG_DARWIN=yes" >> $config_mak + echo "#define CONFIG_DARWIN 1" >> $config_h +fi if test "$gdbstub" = "yes" ; then echo "CONFIG_GDBSTUB=yes" >> $config_mak echo "#define CONFIG_GDBSTUB 1" >> $config_h @@ -417,10 +427,13 @@ echo "\"" >> $config_h echo "SRC_PATH=$source_path" >> $config_mak echo "TARGET_DIRS=$target_list" >> $config_mak +# XXX: suppress that if [ "$bsd" = "yes" ] ; then echo "#define O_LARGEFILE 0" >> $config_h echo "#define lseek64 lseek" >> $config_h + echo "#define mkstemp64 mkstemp" >> $config_h echo "#define ftruncate64 ftruncate" >> $config_h + echo "#define off64_t off_t" >> $config_h echo "#define MAP_ANONYMOUS MAP_ANON" >> $config_h echo "#define _BSD 1" >> $config_h fi |