Hello community,

here is the log from the commit of package Mesa for openSUSE:Factory checked in 
at 2014-07-31 10:04:00
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/Mesa (Old)
 and      /work/SRC/openSUSE:Factory/.Mesa.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "Mesa"

Changes:
--------
--- /work/SRC/openSUSE:Factory/Mesa/Mesa.changes        2014-07-29 
21:21:51.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.Mesa.new/Mesa.changes   2014-07-31 
10:04:08.000000000 +0200
@@ -1,0 +2,6 @@
+Tue Jul 29 16:58:23 CEST 2014 - ti...@suse.de
+
+- Reduce error log level for annoying dlopen messages (bnc#889391)
+  U_mesa-glx-Reduce-error-log-level.patch
+
+-------------------------------------------------------------------

New:
----
  U_mesa-glx-Reduce-error-log-level.patch

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

Other differences:
------------------
++++++ Mesa.spec ++++++
--- /var/tmp/diff_new_pack.nQeNxR/_old  2014-07-31 10:04:10.000000000 +0200
+++ /var/tmp/diff_new_pack.nQeNxR/_new  2014-07-31 10:04:10.000000000 +0200
@@ -149,6 +149,7 @@
 Patch13:        u_mesa-8.0.1-fix-16bpp.patch
 # Patch from Fedora, use shmget when available, under llvmpipe
 Patch15:        u_mesa-8.0-llvmpipe-shmget.patch
+Patch16:        U_mesa-glx-Reduce-error-log-level.patch
 
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 
@@ -514,6 +515,7 @@
 #%patch15 -p1
 #%patch13 -p1
 ###
+%patch16 -p1
 
 %build
 rm -f src/mesa/depend

++++++ U_mesa-glx-Reduce-error-log-level.patch ++++++
>From 0406f59eebb77e537b50f5cac3a20355686d2a4d Mon Sep 17 00:00:00 2001
From: Courtney Goeltzenleuchter <court...@lunarg.com>
Date: Wed, 26 Feb 2014 14:27:08 -0700
Subject: [PATCH] mesa: glx: Reduce error log level
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

The code that parses LIBGL_DRIVERS_PATH was printing an
error for every attempted dlopen. It's not an error to
have to check multiple items in the path, only an error if
no suitable library is found. Reduced the load error to
a warning to match behavior of dynamic linker.

Signed-off-by: Courtney Goeltzenleuchter <court...@lunarg.com>
Reviewed-by: Kristian Høgsberg <k...@bitplanet.net>
---
 src/glx/dri_common.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/glx/dri_common.c b/src/glx/dri_common.c
index 8bf47054a325..63c8de38c7c3 100644
--- a/src/glx/dri_common.c
+++ b/src/glx/dri_common.c
@@ -140,7 +140,7 @@ driOpenDriver(const char *driverName)
       if (handle != NULL)
          break;
       else
-         ErrorMessageF("dlopen %s failed (%s)\n", realDriverName, dlerror());
+         InfoMessageF("dlopen %s failed (%s)\n", realDriverName, dlerror());
    }
 
    if (!handle)
-- 
2.0.1

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org

Reply via email to