Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/zvbi/files: zvbi-0.2.33-glibc212.patch
Date: Fri, 20 Aug 2010 13:46:41
Message-Id: 20100820134636.4F8922004C@flycatcher.gentoo.org
1 ssuominen 10/08/20 13:46:36
2
3 Added: zvbi-0.2.33-glibc212.patch
4 Log:
5 Fix building with recent glibc wrt #333621 by Charlie Gehlin.
6 (Portage version: 2.2_rc67/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.1 media-libs/zvbi/files/zvbi-0.2.33-glibc212.patch
10
11 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/zvbi/files/zvbi-0.2.33-glibc212.patch?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/zvbi/files/zvbi-0.2.33-glibc212.patch?rev=1.1&content-type=text/plain
13
14 Index: zvbi-0.2.33-glibc212.patch
15 ===================================================================
16 http://bugs.gentoo.org/333621
17
18 --- contrib/ntsc-cc.c
19 +++ contrib/ntsc-cc.c
20 @@ -34,6 +34,7 @@
21 #include <locale.h>
22 #include <sys/ioctl.h>
23 #include <sys/types.h>
24 +#include <sys/stat.h>
25 #include <sys/time.h>
26 #ifdef HAVE_GETOPT_LONG
27 # include <getopt.h>
28 --- src/io-dvb.c
29 +++ src/io-dvb.c
30 @@ -29,6 +29,7 @@
31 #include <errno.h>
32 #include <sys/select.h>
33 #include <sys/ioctl.h>
34 +#include <sys/stat.h>
35
36 #ifndef HAVE_S64_U64
37 /* Linux 2.6.x asm/types.h defines __s64 and __u64 only
38 --- src/io-v4l.c
39 +++ src/io-v4l.c
40 @@ -42,6 +42,7 @@
41 #include <assert.h>
42 #include <sys/time.h> /* timeval */
43 #include <sys/types.h> /* fd_set, uid_t */
44 +#include <sys/stat.h>
45 #include <sys/ioctl.h> /* for (_)videodev.h */
46 #include <pthread.h>