Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-fs/udisks/files: udisks-1.0.1-linux-headers-2.6.36.patch
Date: Sat, 29 Jan 2011 17:11:51
Message-Id: 20110129171137.CF3A620054@flycatcher.gentoo.org
1 ssuominen 11/01/29 17:11:37
2
3 Added: udisks-1.0.1-linux-headers-2.6.36.patch
4 Log:
5 Fix building with Linux >= 2.6.36 wrt #352335.
6
7 (Portage version: 2.2.0_alpha19/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.1 sys-fs/udisks/files/udisks-1.0.1-linux-headers-2.6.36.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/udisks/files/udisks-1.0.1-linux-headers-2.6.36.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/udisks/files/udisks-1.0.1-linux-headers-2.6.36.patch?rev=1.1&content-type=text/plain
14
15 Index: udisks-1.0.1-linux-headers-2.6.36.patch
16 ===================================================================
17 http://cgit.freedesktop.org/udisks/commit/?id=1f97cf90f30a6184486cee8877494eb828a34da4
18
19 --- src/device.c
20 +++ src/device.c
21 @@ -36,6 +36,7 @@
22 #include <fcntl.h>
23 #include <pwd.h>
24 #include <grp.h>
25 +#include <stdint.h>
26 #include <linux/fs.h>
27 #include <sys/ioctl.h>
28 #include <linux/cdrom.h>
29 --- src/helpers/job-drive-benchmark.c
30 +++ src/helpers/job-drive-benchmark.c
31 @@ -28,6 +28,7 @@
32 #include <sys/types.h>
33 #include <sys/stat.h>
34 #include <sys/ioctl.h>
35 +#include <stdint.h>
36 #include <linux/fs.h>
37 #include <fcntl.h>
38 #include <string.h>
39 --- src/helpers/job-shared.h
40 +++ src/helpers/job-shared.h
41 @@ -30,6 +30,7 @@
42 #include <sys/stat.h>
43 #include <fcntl.h>
44 #include <sys/ioctl.h>
45 +#include <stdint.h>
46 #include <linux/fs.h>
47
48 #include <glib.h>
49 --- src/helpers/partutil.c
50 +++ src/helpers/partutil.c
51 @@ -34,6 +34,7 @@
52 #include <errno.h>
53 #include <sys/ioctl.h>
54 #include <ctype.h>
55 +#include <stdint.h>
56 #include <linux/fs.h>
57
58 #include <linux/hdreg.h>