diff options
author | Michael Roitzsch <mroi@users.sourceforge.net> | 2004-09-06 14:01:18 +0000 |
---|---|---|
committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2004-09-06 14:01:18 +0000 |
commit | 5c0c3b40c1bf4d2380e702bd7c3fc8903e802393 (patch) | |
tree | 9dbb4d4fa25d7990fa7848a3b4cc42a21db16dc0 | |
parent | 6dce526cb8c1290d573e33a46c9fc6cbc7194e69 (diff) | |
download | xine-lib-5c0c3b40c1bf4d2380e702bd7c3fc8903e802393.tar.gz xine-lib-5c0c3b40c1bf4d2380e702bd7c3fc8903e802393.tar.bz2 |
adding an FAQ entry on the blue screen problem
CVS patchset: 6942
CVS date: 2004/09/06 14:01:18
-rw-r--r-- | doc/faq/Makefile.am | 22 | ||||
-rw-r--r-- | doc/faq/faq.sgml | 16 |
2 files changed, 28 insertions, 10 deletions
diff --git a/doc/faq/Makefile.am b/doc/faq/Makefile.am index 918c311c3..311be2615 100644 --- a/doc/faq/Makefile.am +++ b/doc/faq/Makefile.am @@ -20,40 +20,44 @@ clean-docs: test "x$(srcdir)" = x. || rm -f faq.sgml dist-hook: - @make fail_if_missing=yes docs +ifndef distcheck_lax + @$(MAKE) fail_if_missing=yes docs +else + @$(MAKE) docs +endif if HAVE_SGMLTOOLS faq.html: faq.sgml - $(MAKE) docs-prepare + @$(MAKE) docs-prepare $(SGMLTOOLS) -b onehtml faq.sgml; else faq.html: faq.sgml - $(MAKE) docs-prepare + @$(MAKE) docs-prepare if test x"$(fail_if_missing)" = x"yes"; then \ echo "Please install sgmltools-lite."; \ exit 1; \ fi - -if test x"$(fail_if_missing)" != x"yes"; then \ + if test x"$(fail_if_missing)" != x"yes"; then \ touch $@; \ sleep 1; \ - touch $^; \ + touch $(notdir $^); \ fi endif if HAVE_SGMLTOOLS faq.txt: faq.sgml - $(MAKE) docs-prepare + @$(MAKE) docs-prepare $(SGMLTOOLS) -b txt faq.sgml; else faq.txt: faq.sgml - $(MAKE) docs-prepare + @$(MAKE) docs-prepare if test x"$(fail_if_missing)" = x"yes"; then \ echo "Please install sgmltools-lite."; \ exit 1; \ fi - -if test x"$(fail_if_missing)" != x"yes"; then \ + if test x"$(fail_if_missing)" != x"yes"; then \ touch $@; \ sleep 1; \ - touch $^; \ + touch $(notdir $^); \ fi endif diff --git a/doc/faq/faq.sgml b/doc/faq/faq.sgml index b5c619b42..35a2a65c8 100644 --- a/doc/faq/faq.sgml +++ b/doc/faq/faq.sgml @@ -1444,7 +1444,21 @@ </para> <para> Another possibility is that you using a buggy Xv driver, see the next - question. + questions. + </para> + </sect2> + + <sect2 id="bluescreen"> + <title>I only see a blue (or green or black) video image most of the time.</title> + <para> + You are either watching a very boring video (just kidding) or you are + suffering from a bug in the Xorg 6.7 implementation of X11. + </para> + <para> + The workaround is to add the line + <programlisting> Option "XaaNoOffscreenPixmaps"</programlisting> + in the <varname>Device</varname> section of your X server configuration (usually + <filename>/etc/X11/xorg.conf</filename> or <filename>/etc/X11/XF86Config</filename>). </para> </sect2> |