Gentoo Archives: gentoo-commits

From: "Ryan Hill (dirtyepic)" <dirtyepic@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo commit in src/patchsets/gcc/4.6.2/gentoo: 76_all_4.7.0_c-family-headers.patch README.history
Date: Sat, 31 Dec 2011 21:12:54
Message-Id: 20111231211245.07BD72004B@flycatcher.gentoo.org
1 dirtyepic 11/12/31 21:12:45
2
3 Modified: README.history
4 Added: 76_all_4.7.0_c-family-headers.patch
5 Log:
6 Patch added for bug #396005.
7
8 Revision Changes Path
9 1.9 src/patchsets/gcc/4.6.2/gentoo/README.history
10
11 file : http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.6.2/gentoo/README.history?rev=1.9&view=markup
12 plain: http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.6.2/gentoo/README.history?rev=1.9&content-type=text/plain
13 diff : http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.6.2/gentoo/README.history?r1=1.8&r2=1.9
14
15 Index: README.history
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo/src/patchsets/gcc/4.6.2/gentoo/README.history,v
18 retrieving revision 1.8
19 retrieving revision 1.9
20 diff -u -r1.8 -r1.9
21 --- README.history 8 Dec 2011 18:10:52 -0000 1.8
22 +++ README.history 31 Dec 2011 21:12:44 -0000 1.9
23 @@ -1,3 +1,6 @@
24 +1.4
25 + + 76_all_4.7.0_c-family-headers.patch
26 +
27 1.3 08 Dec 2011
28 U 80_all_gcc-4.6-x32.patch
29
30
31
32
33 1.1 src/patchsets/gcc/4.6.2/gentoo/76_all_4.7.0_c-family-headers.patch
34
35 file : http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.6.2/gentoo/76_all_4.7.0_c-family-headers.patch?rev=1.1&view=markup
36 plain: http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.6.2/gentoo/76_all_4.7.0_c-family-headers.patch?rev=1.1&content-type=text/plain
37
38 Index: 76_all_4.7.0_c-family-headers.patch
39 ===================================================================
40 https://bugs.gentoo.org/396005
41
42
43 2011-07-22 Romain Geissler <romain.geissler@×××××.com>
44
45 PR plugins/45348
46 PR plugins/48425
47 PR plugins/46577
48 * Makefile.in: Do not flatten c-family directory when installing
49 plugin headers.
50
51
52 2011-07-25 Romain Geissler <romain.geissler@×××××.com>
53
54 * c-pretty-print.h: Search c-common.h in c-family.
55
56
57 --- gcc/c-family/c-pretty-print.h
58 +++ gcc/c-family/c-pretty-print.h
59 @@ -23,7 +23,7 @@
60 #define GCC_C_PRETTY_PRINTER
61
62 #include "tree.h"
63 -#include "c-common.h"
64 +#include "c-family/c-common.h"
65 #include "pretty-print.h"
66
67
68 --- gcc/Makefile.in
69 +++ gcc/Makefile.in
70 @@ -4602,8 +4602,8 @@
71
72 # Install the headers needed to build a plugin.
73 install-plugin: installdirs lang.install-plugin s-header-vars
74 -# We keep the directory structure for files in config and .def files. All
75 -# other files are flattened to a single directory.
76 +# We keep the directory structure for files in config or c-family and .def
77 +# files. All other files are flattened to a single directory.
78 $(mkinstalldirs) $(DESTDIR)$(plugin_includedir)
79 headers=`echo $(PLUGIN_HEADERS) | tr ' ' '\012' | sort -u`; \
80 srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`; \
81 @@ -4615,7 +4615,7 @@
82 else continue; \
83 fi; \
84 case $$path in \
85 - "$(srcdir)"/config/* | "$(srcdir)"/*.def ) \
86 + "$(srcdir)"/config/* | "$(srcdir)"/c-family/* | "$(srcdir)"/*.def ) \
87 base=`echo "$$path" | sed -e "s|$$srcdirstrip/||"`;; \
88 *) base=`basename $$path` ;; \
89 esac; \