Gentoo Archives: gentoo-commits

From: "Daniel Pielmeier (billie)" <billie@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-video/mjpegtools/files: mjpegtools-2.1.0-pic.patch
Date: Sat, 30 Nov 2013 14:47:08
Message-Id: 20131130144702.EDF442004B@flycatcher.gentoo.org
1 billie 13/11/30 14:47:02
2
3 Added: mjpegtools-2.1.0-pic.patch
4 Log:
5 Disable -fno_PIC. This fixes bug #267829. Thanks to a_tevelev for the report.
6
7 (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 215AD14D)
8
9 Revision Changes Path
10 1.1 media-video/mjpegtools/files/mjpegtools-2.1.0-pic.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/mjpegtools/files/mjpegtools-2.1.0-pic.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/mjpegtools/files/mjpegtools-2.1.0-pic.patch?rev=1.1&content-type=text/plain
14
15 Index: mjpegtools-2.1.0-pic.patch
16 ===================================================================
17 Index: y4mdenoise/Makefile.am
18 ===================================================================
19 RCS file: /cvsroot/mjpeg/mjpeg_play/y4mdenoise/Makefile.am,v
20 retrieving revision 1.12
21 retrieving revision 1.13
22 diff -u -r1.12 -r1.13
23 --- y4mdenoise/Makefile.am 1 Apr 2012 08:44:49 -0000 1.12
24 +++ y4mdenoise/Makefile.am 28 Nov 2013 22:39:41 -0000 1.13
25 @@ -4,8 +4,8 @@
26
27 EXTRA_DIST = implementation.html
28
29 -AM_CFLAGS = -DNDEBUG -finline-functions @PROGRAM_NOPIC@
30 -AM_CXXFLAGS = -DNDEBUG -finline-functions @PROGRAM_NOPIC@
31 +AM_CFLAGS = -DNDEBUG -finline-functions
32 +AM_CXXFLAGS = -DNDEBUG -finline-functions
33
34 INCLUDES = -I$(top_srcdir) -I$(top_srcdir)/utils
35
36 Index: y4munsharp/Makefile.am
37 ===================================================================
38 RCS file: /cvsroot/mjpeg/mjpeg_play/y4munsharp/Makefile.am,v
39 retrieving revision 1.2
40 retrieving revision 1.3
41 diff -u -r1.2 -r1.3
42 --- y4munsharp/Makefile.am 16 Jun 2005 17:09:38 -0000 1.2
43 +++ y4munsharp/Makefile.am 28 Nov 2013 22:39:41 -0000 1.3
44 @@ -4,7 +4,7 @@
45
46 INCLUDES = -I $(top_srcdir)/utils -I $(top_srcdir)
47
48 -y4munharp_CFLAGS=@PROGRAM_NOPIC@
49 +y4munharp_CFLAGS=
50
51 bin_PROGRAMS = y4munsharp
52
53 Index: y4mutils/Makefile.am
54 ===================================================================
55 RCS file: /cvsroot/mjpeg/mjpeg_play/y4mutils/Makefile.am,v
56 retrieving revision 1.7
57 retrieving revision 1.8
58 diff -u -r1.7 -r1.8
59 --- y4mutils/Makefile.am 1 Apr 2012 08:44:49 -0000 1.7
60 +++ y4mutils/Makefile.am 28 Nov 2013 22:39:41 -0000 1.8
61 @@ -2,7 +2,7 @@
62
63 MAINTAINERCLEANFILES = Makefile.in
64
65 -AM_CFLAGS = @PROGRAM_NOPIC@
66 +AM_CFLAGS =
67 AM_CPPFLAGS = -I$(top_srcdir) -I$(top_srcdir)/utils
68
69 LIBMJPEGUTILS = $(top_builddir)/utils/libmjpegutils.la
70 Index: yuvscaler/Makefile.am
71 ===================================================================
72 RCS file: /cvsroot/mjpeg/mjpeg_play/yuvscaler/Makefile.am,v
73 retrieving revision 1.5
74 retrieving revision 1.6
75 diff -u -r1.5 -r1.6
76 --- yuvscaler/Makefile.am 1 Apr 2012 08:44:49 -0000 1.5
77 +++ yuvscaler/Makefile.am 28 Nov 2013 22:39:41 -0000 1.6
78 @@ -18,6 +18,6 @@
79
80 EXTRA_DIST = yuvscaler_implementation.txt
81
82 -yuvscaler_CFLAGS=@PROGRAM_NOPIC@
83 +yuvscaler_CFLAGS=
84 yuvscaler_SOURCES = yuvscaler.c yuvscaler_resample.c yuvscaler_bicubic.c
85 yuvscaler_LDADD = $(LIBMJPEGUTILS) $(LIBM_LIBS)