Skip to content

Commit

Permalink
BSD fix + ppc-softmmu support for win32
Browse files Browse the repository at this point in the history
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@834 c046a42c-6fe2-441c-8c8c-71466251a162
  • Loading branch information
bellard committed May 20, 2004
1 parent d157e20 commit 4300304
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion configure
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ ar="${cross_prefix}${ar}"
strip="${cross_prefix}${strip}"

if test "$mingw32" = "yes" ; then
target_list="i386-softmmu"
target_list="i386-softmmu ppc-softmmu"
EXESUF=".exe"
gdbstub="no"
fi
Expand Down Expand Up @@ -417,6 +417,10 @@ echo "SRC_PATH=$source_path" >> $config_mak
echo "TARGET_DIRS=$target_list" >> $config_mak

if [ "$bsd" = "yes" ] ; then
echo "#define O_LARGEFILE 0" >> $config_h
echo "#define lseek64 lseek" >> $config_h
echo "#define ftruncate64 ftruncate" >> $config_h
echo "#define MAP_ANONYMOUS MAP_ANON" >> $config_h
echo "#define _BSD 1" >> $config_h
fi

Expand Down

0 comments on commit 4300304

Please sign in to comment.