mirror of
https://git.proxmox.com/git/qemu
synced 2025-08-15 06:14:52 +00:00
move feature variables to the top
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com> Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
This commit is contained in:
parent
0db4a06759
commit
377529c009
164
configure
vendored
164
configure
vendored
@ -86,6 +86,88 @@ audio_pt_int=""
|
|||||||
audio_win_int=""
|
audio_win_int=""
|
||||||
cc_i386=i386-pc-linux-gnu-gcc
|
cc_i386=i386-pc-linux-gnu-gcc
|
||||||
|
|
||||||
|
target_list=""
|
||||||
|
|
||||||
|
# Default value for a variable defining feature "foo".
|
||||||
|
# * foo="no" feature will only be used if --enable-foo arg is given
|
||||||
|
# * foo="" feature will be searched for, and if found, will be used
|
||||||
|
# unless --disable-foo is given
|
||||||
|
# * foo="yes" this value will only be set by --enable-foo flag.
|
||||||
|
# feature will searched for,
|
||||||
|
# if not found, configure exits with error
|
||||||
|
#
|
||||||
|
# Always add --enable-foo and --disable-foo command line args.
|
||||||
|
# Distributions want to ensure that several features are compiled in, and it
|
||||||
|
# is impossible without a --enable-foo that exits if a feature is not found.
|
||||||
|
|
||||||
|
bluez=""
|
||||||
|
brlapi=""
|
||||||
|
curl=""
|
||||||
|
curses=""
|
||||||
|
docs=""
|
||||||
|
fdt=""
|
||||||
|
kvm=""
|
||||||
|
kvm_para=""
|
||||||
|
nptl=""
|
||||||
|
sdl=""
|
||||||
|
sparse="no"
|
||||||
|
uuid=""
|
||||||
|
vde=""
|
||||||
|
vnc_tls=""
|
||||||
|
vnc_sasl=""
|
||||||
|
vnc_jpeg=""
|
||||||
|
vnc_png=""
|
||||||
|
vnc_thread="no"
|
||||||
|
xen=""
|
||||||
|
linux_aio=""
|
||||||
|
attr=""
|
||||||
|
vhost_net=""
|
||||||
|
xfs=""
|
||||||
|
|
||||||
|
gprof="no"
|
||||||
|
debug_tcg="no"
|
||||||
|
debug_mon="no"
|
||||||
|
debug="no"
|
||||||
|
strip_opt="yes"
|
||||||
|
bigendian="no"
|
||||||
|
mingw32="no"
|
||||||
|
EXESUF=""
|
||||||
|
prefix="/usr/local"
|
||||||
|
mandir="\${prefix}/share/man"
|
||||||
|
datadir="\${prefix}/share/qemu"
|
||||||
|
docdir="\${prefix}/share/doc/qemu"
|
||||||
|
bindir="\${prefix}/bin"
|
||||||
|
sysconfdir="\${prefix}/etc"
|
||||||
|
confsuffix="/qemu"
|
||||||
|
slirp="yes"
|
||||||
|
fmod_lib=""
|
||||||
|
fmod_inc=""
|
||||||
|
oss_lib=""
|
||||||
|
bsd="no"
|
||||||
|
linux="no"
|
||||||
|
solaris="no"
|
||||||
|
profiler="no"
|
||||||
|
cocoa="no"
|
||||||
|
softmmu="yes"
|
||||||
|
linux_user="no"
|
||||||
|
darwin_user="no"
|
||||||
|
bsd_user="no"
|
||||||
|
guest_base=""
|
||||||
|
uname_release=""
|
||||||
|
io_thread="no"
|
||||||
|
mixemu="no"
|
||||||
|
kerneldir=""
|
||||||
|
aix="no"
|
||||||
|
blobs="yes"
|
||||||
|
pkgversion=""
|
||||||
|
check_utests="no"
|
||||||
|
user_pie="no"
|
||||||
|
zero_malloc=""
|
||||||
|
trace_backend="nop"
|
||||||
|
trace_file="trace"
|
||||||
|
spice=""
|
||||||
|
rbd=""
|
||||||
|
|
||||||
# parse CC options first
|
# parse CC options first
|
||||||
for opt do
|
for opt do
|
||||||
optarg=`expr "x$opt" : 'x[^=]*=\(.*\)'`
|
optarg=`expr "x$opt" : 'x[^=]*=\(.*\)'`
|
||||||
@ -208,7 +290,6 @@ else
|
|||||||
cpu=`uname -m`
|
cpu=`uname -m`
|
||||||
fi
|
fi
|
||||||
|
|
||||||
target_list=""
|
|
||||||
case "$cpu" in
|
case "$cpu" in
|
||||||
alpha|cris|ia64|m68k|microblaze|ppc|ppc64|sparc64)
|
alpha|cris|ia64|m68k|microblaze|ppc|ppc64|sparc64)
|
||||||
cpu="$cpu"
|
cpu="$cpu"
|
||||||
@ -246,87 +327,6 @@ case "$cpu" in
|
|||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
# Default value for a variable defining feature "foo".
|
|
||||||
# * foo="no" feature will only be used if --enable-foo arg is given
|
|
||||||
# * foo="" feature will be searched for, and if found, will be used
|
|
||||||
# unless --disable-foo is given
|
|
||||||
# * foo="yes" this value will only be set by --enable-foo flag.
|
|
||||||
# feature will searched for,
|
|
||||||
# if not found, configure exits with error
|
|
||||||
#
|
|
||||||
# Always add --enable-foo and --disable-foo command line args.
|
|
||||||
# Distributions want to ensure that several features are compiled in, and it
|
|
||||||
# is impossible without a --enable-foo that exits if a feature is not found.
|
|
||||||
|
|
||||||
bluez=""
|
|
||||||
brlapi=""
|
|
||||||
curl=""
|
|
||||||
curses=""
|
|
||||||
docs=""
|
|
||||||
fdt=""
|
|
||||||
kvm=""
|
|
||||||
kvm_para=""
|
|
||||||
nptl=""
|
|
||||||
sdl=""
|
|
||||||
sparse="no"
|
|
||||||
uuid=""
|
|
||||||
vde=""
|
|
||||||
vnc_tls=""
|
|
||||||
vnc_sasl=""
|
|
||||||
vnc_jpeg=""
|
|
||||||
vnc_png=""
|
|
||||||
vnc_thread="no"
|
|
||||||
xen=""
|
|
||||||
linux_aio=""
|
|
||||||
attr=""
|
|
||||||
vhost_net=""
|
|
||||||
xfs=""
|
|
||||||
|
|
||||||
gprof="no"
|
|
||||||
debug_tcg="no"
|
|
||||||
debug_mon="no"
|
|
||||||
debug="no"
|
|
||||||
strip_opt="yes"
|
|
||||||
bigendian="no"
|
|
||||||
mingw32="no"
|
|
||||||
EXESUF=""
|
|
||||||
prefix="/usr/local"
|
|
||||||
mandir="\${prefix}/share/man"
|
|
||||||
datadir="\${prefix}/share/qemu"
|
|
||||||
docdir="\${prefix}/share/doc/qemu"
|
|
||||||
bindir="\${prefix}/bin"
|
|
||||||
sysconfdir="\${prefix}/etc"
|
|
||||||
confsuffix="/qemu"
|
|
||||||
slirp="yes"
|
|
||||||
fmod_lib=""
|
|
||||||
fmod_inc=""
|
|
||||||
oss_lib=""
|
|
||||||
bsd="no"
|
|
||||||
linux="no"
|
|
||||||
solaris="no"
|
|
||||||
profiler="no"
|
|
||||||
cocoa="no"
|
|
||||||
softmmu="yes"
|
|
||||||
linux_user="no"
|
|
||||||
darwin_user="no"
|
|
||||||
bsd_user="no"
|
|
||||||
guest_base=""
|
|
||||||
uname_release=""
|
|
||||||
io_thread="no"
|
|
||||||
mixemu="no"
|
|
||||||
kerneldir=""
|
|
||||||
aix="no"
|
|
||||||
haiku="no"
|
|
||||||
blobs="yes"
|
|
||||||
pkgversion=""
|
|
||||||
check_utests="no"
|
|
||||||
user_pie="no"
|
|
||||||
zero_malloc=""
|
|
||||||
trace_backend="nop"
|
|
||||||
trace_file="trace"
|
|
||||||
spice=""
|
|
||||||
rbd=""
|
|
||||||
|
|
||||||
# OS specific
|
# OS specific
|
||||||
if check_define __linux__ ; then
|
if check_define __linux__ ; then
|
||||||
targetos="Linux"
|
targetos="Linux"
|
||||||
|
Loading…
Reference in New Issue
Block a user