From: Ian Jackson Date: Tue, 22 Jul 2008 15:23:47 +0000 (+0100) Subject: Pass --disable-gfx-check to allow VNC-only builds. X-Git-Tag: xen-3.3.0-rc1~13 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=67f85e58d7622cdc9297bf6a216526fac28281ed;p=qemu-xen-3.3-testing.git Pass --disable-gfx-check to allow VNC-only builds. Qemu upstream inexplicably falls over during configuration if you will be forced to use VNC for graphics, as if that were somehow an unreasonable thing to do. So hit that check on the head. Thanks to Christoph Egger for the report. Signed-off-by: Ian Jackson --- diff --git a/xen-setup b/xen-setup index b0eda894..2638e1eb 100755 --- a/xen-setup +++ b/xen-setup @@ -9,7 +9,7 @@ rm -f config-host.mak if test -f config-host.h; then mv config-host.h config-host.h~; fi -./configure --disable-gcc-check --disable-curses --disable-slirp "$@" --prefix=/usr +./configure --disable-gfx-check --disable-gcc-check --disable-curses --disable-slirp "$@" --prefix=/usr target=i386-dm