diff options
author | Sven Wegener <swegener@gentoo.org> | 2004-08-22 17:48:59 +0000 |
---|---|---|
committer | Sven Wegener <swegener@gentoo.org> | 2004-08-22 17:48:59 +0000 |
commit | 8e6b98ef8096052eb217ac3bb267e676b4386b8d (patch) | |
tree | ffacf0f7e1952c2696b7550bf70f422de6cee3fa /eclass/virtualx.eclass | |
parent | Stable on alpha. (diff) | |
download | historical-8e6b98ef8096052eb217ac3bb267e676b4386b8d.tar.gz historical-8e6b98ef8096052eb217ac3bb267e676b4386b8d.tar.bz2 historical-8e6b98ef8096052eb217ac3bb267e676b4386b8d.zip |
Changed the mode from 800x600x32 to 800x600x24 because the mfb support has been dropped in Xvfb in
the xorg-x11 pre-releases. For now only depths up to 24-bit are supported.
Diffstat (limited to 'eclass/virtualx.eclass')
-rw-r--r-- | eclass/virtualx.eclass | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/eclass/virtualx.eclass b/eclass/virtualx.eclass index ef97638e8de2..a05deadcdfbe 100644 --- a/eclass/virtualx.eclass +++ b/eclass/virtualx.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/virtualx.eclass,v 1.16 2004/06/25 00:39:48 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/virtualx.eclass,v 1.17 2004/08/22 17:48:59 swegener Exp $ # # Author: Martin Schlemmer <azarah@gentoo.org> # @@ -41,7 +41,13 @@ virtualmake() { # # Azarah - 5 May 2002 # - /usr/X11R6/bin/Xvfb :${XDISPLAY} -screen 0 800x600x32 &>/dev/null & + # Changed the mode from 800x600x32 to 800x600x24 because the mfb + # support has been dropped in Xvfb in the xorg-x11 pre-releases. + # For now only depths up to 24-bit are supported. + # + # Sven Wegener <swegener@gentoo.org> - 22 Aug 2004 + # + /usr/X11R6/bin/Xvfb :${XDISPLAY} -screen 0 800x600x24 &>/dev/null & sleep 2 local start=${XDISPLAY} @@ -53,9 +59,9 @@ virtualmake() { eerror "" eerror "Unable to start Xvfb." eerror "" - eerror "'/usr/X11R6/bin/Xvfb :${XDISPLAY} -screen 0 800x600x32' returns:" + eerror "'/usr/X11R6/bin/Xvfb :${XDISPLAY} -screen 0 800x600x24' returns:" eerror "" - /usr/X11R6/bin/Xvfb :${XDISPLAY} -screen 0 800x600x32 + /usr/X11R6/bin/Xvfb :${XDISPLAY} -screen 0 800x600x24 eerror "" eerror "If possible, correct the above error and try your emerge again." eerror "" @@ -63,7 +69,7 @@ virtualmake() { fi XDISPLAY=$((${XDISPLAY}+1)) - /usr/X11R6/bin/Xvfb :${XDISPLAY} -screen 0 800x600x32 &>/dev/null & + /usr/X11R6/bin/Xvfb :${XDISPLAY} -screen 0 800x600x24 &>/dev/null & sleep 2 done |