summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChí-Thanh Christopher Nguyễn <chithanh@gentoo.org>2010-10-22 06:58:45 +0000
committerChí-Thanh Christopher Nguyễn <chithanh@gentoo.org>2010-10-22 06:58:45 +0000
commita75fe666abf5b708ed38ef0ca4fcba8e4dd48556 (patch)
treed92cfa8409661d029f6e5ff8d53c2cf0b3cbd683 /x11-libs
parentDrop local sound USE flag description, not used anymore. (diff)
downloadgentoo-2-a75fe666abf5b708ed38ef0ca4fcba8e4dd48556.tar.gz
gentoo-2-a75fe666abf5b708ed38ef0ca4fcba8e4dd48556.tar.bz2
gentoo-2-a75fe666abf5b708ed38ef0ca4fcba8e4dd48556.zip
Re-add patch which is required for libdrm-2.4.20-r1, bug #342117
(Portage version: 2.2_rc98/cvs/Linux x86_64)
Diffstat (limited to 'x11-libs')
-rw-r--r--x11-libs/libdrm/ChangeLog6
-rw-r--r--x11-libs/libdrm/files/2.4.18-0001-datatypes.patch21
2 files changed, 26 insertions, 1 deletions
diff --git a/x11-libs/libdrm/ChangeLog b/x11-libs/libdrm/ChangeLog
index 135d0b1a8928..d4662be39336 100644
--- a/x11-libs/libdrm/ChangeLog
+++ b/x11-libs/libdrm/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for x11-libs/libdrm
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/libdrm/ChangeLog,v 1.134 2010/10/21 14:08:38 scarabeus Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/libdrm/ChangeLog,v 1.135 2010/10/22 06:58:45 chithanh Exp $
+
+ 22 Oct 2010; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
+ +files/2.4.18-0001-datatypes.patch:
+ Re-add patch which is required for libdrm-2.4.20-r1, bug #342117
21 Oct 2010; Tomáš Chvátal <scarabeus@gentoo.org>
-files/2.4.18-0001-datatypes.patch, -libdrm-2.4.18_pre20100211-r1.ebuild,
diff --git a/x11-libs/libdrm/files/2.4.18-0001-datatypes.patch b/x11-libs/libdrm/files/2.4.18-0001-datatypes.patch
new file mode 100644
index 000000000000..6a1bfafcbb1b
--- /dev/null
+++ b/x11-libs/libdrm/files/2.4.18-0001-datatypes.patch
@@ -0,0 +1,21 @@
+diff --git a/include/drm/drm_mode.h b/include/drm/drm_mode.h
+index dfc390e..49b3b54 100644
+--- a/include/drm/drm_mode.h
++++ b/include/drm/drm_mode.h
+@@ -308,11 +308,11 @@ struct drm_mode_crtc_lut {
+ #define DRM_MODE_PAGE_FLIP_FLAGS DRM_MODE_PAGE_FLIP_EVENT
+
+ struct drm_mode_crtc_page_flip {
+- uint32_t crtc_id;
+- uint32_t fb_id;
+- uint32_t flags;
+- uint32_t reserved;
+- uint64_t user_data;
++ __u32 crtc_id;
++ __u32 fb_id;
++ __u32 flags;
++ __u32 reserved;
++ __u64 user_data;
+ };
+
+ #endif