From: Carlo Marcelo Arenas Belon <carenas@sajinet.com.pe>
To: qemu-devel@nongnu.org
Subject: [Qemu-devel] [RFC/PATCH] remove $check_gfx from configure
Date: Mon, 22 Oct 2007 20:09:52 -0500 [thread overview]
Message-ID: <20071023010952.GA28795@tapir> (raw)
The following patch removes check_gfx from qemu's configure as the check it
was trying to enforce is no longer valid.
If neither sdl or cocoa are available, the video output for the console will
be still available from the vnc server (which can't be disabled).
Carlo
---
Index: configure
===================================================================
RCS file: /sources/qemu/qemu/configure,v
retrieving revision 1.165
diff -u -r1.165 configure
--- configure 18 Oct 2007 20:51:48 -0000 1.165
+++ configure 23 Oct 2007 01:01:50 -0000
@@ -98,7 +98,6 @@
kqemu="no"
profiler="no"
cocoa="no"
-check_gfx="yes"
check_gcc="yes"
softmmu="yes"
linux_user="no"
@@ -276,8 +275,6 @@
;;
--enable-cocoa) cocoa="yes" ; coreaudio="yes" ; sdl="no"
;;
- --disable-gfx-check) check_gfx="no"
- ;;
--disable-gcc-check) check_gcc="no"
;;
--disable-system) softmmu="no"
@@ -966,12 +963,10 @@
;;
esac
-if test "$target_user_only" = "no" -a "$check_gfx" = "yes" \
- -a "$sdl" = "no" -a "$cocoa" = "no" ; then
- echo "ERROR: QEMU requires SDL or Cocoa for graphical output"
- echo "To build QEMU without graphical output configure with --disable-gfx-check"
- echo "Note that this will disable all output from the virtual graphics card."
- exit 1;
+if test "$target_user_only" = "no" -a "$sdl" = "no" -a "$cocoa" = "no" ; then
+ echo "WARNING: QEMU requires SDL or Cocoa for graphical output"
+ echo "Note that in order to be able to attach to the console you'll"
+ echo "need to start qemu's vncserver with --vnc and use a vnc client."
fi
#echo "Creating $config_mak, $config_h and $target_dir/Makefile"
next reply other threads:[~2007-10-23 1:06 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-10-23 1:09 Carlo Marcelo Arenas Belon [this message]
2007-10-23 9:04 ` [Qemu-devel] [RFC/PATCH] remove $check_gfx from configure J. Mayer
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20071023010952.GA28795@tapir \
--to=carenas@sajinet.com.pe \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).