commit libdrm for openSUSE:Factory
Hello community, here is the log from the commit of package libdrm for openSUSE:Factory checked in at 2014-04-26 17:01:56 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/libdrm (Old) and /work/SRC/openSUSE:Factory/.libdrm.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Package is "libdrm" Changes: -------- --- /work/SRC/openSUSE:Factory/libdrm/libdrm.changes 2014-04-15 07:35:32.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.libdrm.new/libdrm.changes 2014-04-26 17:01:58.000000000 +0200 @@ -1,0 +2,8 @@ +Thu Apr 24 09:46:48 UTC 2014 - sndirsch@suse.com + +- u_No-longer-hardcode-path-for-drm.h-include-in-qxl_drm.patch: + * No longer hardcode path for drm.h include in qxl_drm.h, i.e. + handle it the same as in other <driver>_drm.h files; change + required for KMS support in xf86-video-qxl (bnc#870501) + +------------------------------------------------------------------- New: ---- u_No-longer-hardcode-path-for-drm.h-include-in-qxl_drm.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ libdrm.spec ++++++ --- /var/tmp/diff_new_pack.ud3Y6c/_old 2014-04-26 17:01:59.000000000 +0200 +++ /var/tmp/diff_new_pack.ud3Y6c/_new 2014-04-26 17:01:59.000000000 +0200 @@ -40,6 +40,7 @@ # PATCH-FIX-UPSTREAM libdrm-implicit-defs.diff fdo#48599 -- Fix compiler warnings in tests/radeon/radeon_ttm.c Patch1: libdrm-implicit-defs.diff Patch2: u_Fix-compilation-on-systems-that-don-t-provide-O_CLOE.patch +Patch3: u_No-longer-hardcode-path-for-drm.h-include-in-qxl_drm.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRequires: autoconf >= 2.63 @@ -165,6 +166,7 @@ %setup -q %patch1 -p1 %patch2 -p1 +%patch3 -p1 %build export CFLAGS="$RPM_OPT_FLAGS -fno-strict-aliasing" ++++++ u_No-longer-hardcode-path-for-drm.h-include-in-qxl_drm.patch ++++++
From ef61a3e62f87443a7384883b87cc01ec488e4823 Mon Sep 17 00:00:00 2001 From: Stefan Dirsch <sndirsch@suse.de> Date: Wed, 23 Apr 2014 16:35:19 +0200 Subject: [PATCH] No longer hardcode path for drm.h include in qxl_drm.h.
\#include "drm/drm.h" --> #include "drm.h" (same as in other <driver>_drm.h files) --- include/drm/qxl_drm.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/drm/qxl_drm.h b/include/drm/qxl_drm.h index 5d7de70..1e331a8 100644 --- a/include/drm/qxl_drm.h +++ b/include/drm/qxl_drm.h @@ -25,7 +25,7 @@ #define QXL_DRM_H #include <stddef.h> -#include "drm/drm.h" +#include "drm.h" /* Please note that modifications to all structs defined here are * subject to backwards-compatibility constraints. -- 1.8.4.5 -- To unsubscribe, e-mail: opensuse-commit+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-commit+help@opensuse.org
participants (1)
-
root@hilbert.suse.de