/[qemu]/qemu/configure
ViewVC logotype

Diff of /qemu/configure

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.19 by bellard, Wed Oct 1 00:13:48 2003 UTC revision 1.20 by bellard, Mon Oct 27 21:10:39 2003 UTC
# Line 27  ar="ar" Line 27  ar="ar"
27  make="make"  make="make"
28  strip="strip"  strip="strip"
29  cpu=`uname -m`  cpu=`uname -m`
30  target_list="i386 i386-softmmu arm sparc"  target_list="i386-user i386 i386-softmmu arm-user sparc-user"
31  case "$cpu" in  case "$cpu" in
32    i386|i486|i586|i686|i86pc|BePC)    i386|i486|i586|i686|i86pc|BePC)
33      cpu="i386"      cpu="i386"
# Line 324  target_softmmu="no" Line 324  target_softmmu="no"
324  if expr $target : '.*-softmmu' > /dev/null ; then  if expr $target : '.*-softmmu' > /dev/null ; then
325    target_softmmu="yes"    target_softmmu="yes"
326  fi  fi
327    target_user_only="no"
328    if expr $target : '.*-user' > /dev/null ; then
329      target_user_only="yes"
330    fi
331    
332  echo "Creating $config_mak, $config_h and $target_dir/Makefile"  echo "Creating $config_mak, $config_h and $target_dir/Makefile"
333    
# Line 364  if test "$target_softmmu" = "yes" ; then Line 368  if test "$target_softmmu" = "yes" ; then
368    echo "CONFIG_SOFTMMU=yes" >> $config_mak    echo "CONFIG_SOFTMMU=yes" >> $config_mak
369    echo "#define CONFIG_SOFTMMU 1" >> $config_h    echo "#define CONFIG_SOFTMMU 1" >> $config_h
370  fi  fi
371    if test "$target_user_only" = "yes" ; then
372      echo "CONFIG_USER_ONLY=yes" >> $config_mak
373      echo "#define CONFIG_USER_ONLY 1" >> $config_h
374    fi
375    
376  done # for target in $targets  done # for target in $targets
377    

Legend:
Removed from v.1.19  
changed lines
  Added in v.1.20

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26