Mailinglist Archive: opensuse-commit (2092 mails)

< Previous Next >
commit Mesa
  • From: root@xxxxxxxxxxxxxxx (h_root)
  • Date: Wed, 15 Aug 2007 20:33:13 +0200
  • Message-id: <20070815183313.E7B33678180@xxxxxxxxxxxxxxx>

Hello community,

here is the log from the commit of package Mesa
checked in at Wed Aug 15 20:33:13 CEST 2007.

--------
--- Mesa/Mesa.changes   2007-08-12 11:00:42.000000000 +0200
+++ /mounts/work_src_done/STABLE/Mesa/Mesa.changes      2007-08-13 03:07:25.654747000 +0200
@@ -1,0 +2,7 @@
+Mon Aug 13 03:06:02 CEST 2007 - sndirsch@xxxxxxx
+
+- disable-libGL-warning.diff:
+  * Just filters warnings about unsupported non-conformant visuals
+    instead of relying on the visual id. (X.Org Bug #6689)
+
+-------------------------------------------------------------------

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ Mesa.spec ++++++
--- /var/tmp/diff_new_pack.d24184/_old  2007-08-15 20:33:04.000000000 +0200
+++ /var/tmp/diff_new_pack.d24184/_new  2007-08-15 20:33:04.000000000 +0200
@@ -19,7 +19,7 @@
 Obsoletes:      xorg-x11-Mesa
 Autoreqprov:    on
 Version:        7.0.1
-Release:        4
+Release:        6
 Summary:        Mesa is a 3-D graphics library with an API which is very similar to that of OpenGL.*
 Source:         MesaLib-%{version}.tar.bz2
 Source1:        MesaDemos-%{version}.tar.bz2
@@ -276,6 +276,10 @@
 /usr/%{_lib}/libMesaGL.a
 
 %changelog
+* Mon Aug 13 2007 - sndirsch@xxxxxxx
+- disable-libGL-warning.diff:
+  * Just filters warnings about unsupported non-conformant visuals
+  instead of relying on the visual id. (X.Org Bug #6689)
 * Sun Aug 12 2007 - sndirsch@xxxxxxx
 - disable-libGL-warning.diff:
   * ignore unsupported visual 0x4b (Bug #247471, X.Org Bug #6689)

++++++ disable-libGL-warning.diff ++++++
--- /var/tmp/diff_new_pack.d24184/_old  2007-08-15 20:33:04.000000000 +0200
+++ /var/tmp/diff_new_pack.d24184/_new  2007-08-15 20:33:04.000000000 +0200
@@ -1,14 +1,15 @@
 --- src/glx/x11/glxext.c.orig  2007-08-12 10:45:15.688553249 +0200
 +++ src/glx/x11/glxext.c       2007-08-12 10:55:49.810243457 +0200
-@@ -672,8 +672,11 @@ filter_modes( __GLcontextModes ** server
+@@ -672,8 +672,12 @@ filter_modes( __GLcontextModes ** server
        if ( do_delete && (m->visualID != 0) ) {
            do_delete = GL_FALSE;
  
 -          fprintf(stderr, "libGL warning: 3D driver claims to not support "
 -                  "visual 0x%02x\n", m->visualID);
-+          /* don't warn for this visual (Novell #247471 / X.Org #6689) */
-+          if (m->visualID != 0x4b) {
-+              fprintf(stderr, "libGL warning: 3D driver claims to not "
++          /* filter warnings about unsupported non-conformant visuals
++             (Novell #247471 / X.Org #6689) */
++          if (m->visualRating != GLX_NON_CONFORMANT_CONFIG) {
++              fprintf(stderr, "libGL warning: 3D driver claims to not "
 +                      "support visual 0x%02x\n", m->visualID);
 +          }
        }





++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++



Remember to have fun...

---------------------------------------------------------------------
To unsubscribe, e-mail: opensuse-commit+unsubscribe@xxxxxxxxxxxx
For additional commands, e-mail: opensuse-commit+help@xxxxxxxxxxxx

< Previous Next >
This Thread