Revision 4b1c11fd

b/configure
217 217
opengl=""
218 218
zlib="yes"
219 219
guest_agent="yes"
220
want_tools="yes"
220 221
libiscsi=""
221 222
coroutine=""
222 223
seccomp=""
......
868 869
  ;;
869 870
  --disable-guest-agent) guest_agent="no"
870 871
  ;;
872
  --enable-tools) want_tools="yes"
873
  ;;
874
  --disable-tools) want_tools="no"
875
  ;;
871 876
  --enable-seccomp) seccomp="yes"
872 877
  ;;
873 878
  --disable-seccomp) seccomp="no"
......
3043 3048
qemu_confdir=$sysconfdir$confsuffix
3044 3049
qemu_datadir=$datadir$confsuffix
3045 3050

  
3046
tools=
3047
if test "$softmmu" = yes ; then
3051
tools=""
3052
if test "$want_tools" = "yes" ; then
3048 3053
  tools="qemu-img\$(EXESUF) qemu-io\$(EXESUF) $tools"
3054
  if [ "$linux" = "yes" -o "$bsd" = "yes" -o "$solaris" = "yes" ] ; then
3055
    tools="qemu-nbd\$(EXESUF) $tools"
3056
  fi
3057
fi
3058
if test "$softmmu" = yes ; then
3049 3059
  if test "$virtfs" != no ; then
3050 3060
    if test "$cap" = yes && test "$linux" = yes && test "$attr" = yes ; then
3051 3061
      virtfs=yes
......
3059 3069
    fi
3060 3070
  fi
3061 3071
  if [ "$linux" = "yes" -o "$bsd" = "yes" -o "$solaris" = "yes" ] ; then
3062
      tools="qemu-nbd\$(EXESUF) $tools"
3063 3072
    if [ "$guest_agent" = "yes" ]; then
3064 3073
      tools="qemu-ga\$(EXESUF) $tools"
3065 3074
    fi
3066 3075
  fi
3067
fi
3068
if test "$smartcard_nss" = "yes" ; then
3069
  tools="vscclient\$(EXESUF) $tools"
3076
  if test "$smartcard_nss" = "yes" ; then
3077
    tools="vscclient\$(EXESUF) $tools"
3078
  fi
3070 3079
fi
3071 3080

  
3072 3081
# Mac OS X ships with a broken assembler

Also available in: Unified diff