aboutsummaryrefslogtreecommitdiff
path: root/5.4.0
diff options
context:
space:
mode:
authorMatthias Maier <tamiko@gentoo.org>2017-08-06 14:51:39 +0000
committerMatthias Maier <tamiko@gentoo.org>2017-08-06 14:51:39 +0000
commit507e97634a40a14628b988e145ea3a6dbc3da0a4 (patch)
tree2168389c9c782152ca3ad83a0dce484fdf97a75c /5.4.0
parent4.9.4 gentoo patchset 1.1 (diff)
downloadgcc-patches-507e97634a40a14628b988e145ea3a6dbc3da0a4.tar.gz
gcc-patches-507e97634a40a14628b988e145ea3a6dbc3da0a4.tar.bz2
gcc-patches-507e97634a40a14628b988e145ea3a6dbc3da0a4.zip
5.4.0 gentoo patchset 1.4
Diffstat (limited to '5.4.0')
-rw-r--r--5.4.0/gentoo/91_all_compatibility_fix_with_perl_5.26.patch29
-rw-r--r--5.4.0/gentoo/README.history3
2 files changed, 32 insertions, 0 deletions
diff --git a/5.4.0/gentoo/91_all_compatibility_fix_with_perl_5.26.patch b/5.4.0/gentoo/91_all_compatibility_fix_with_perl_5.26.patch
new file mode 100644
index 0000000..1d16c2b
--- /dev/null
+++ b/5.4.0/gentoo/91_all_compatibility_fix_with_perl_5.26.patch
@@ -0,0 +1,29 @@
+https://bugs.gentoo.org/show_bug.cgi?id=620164
+
+Unescaped left brace in regex is now a fatal error.
+
+
+diff -ruN gcc-5.4.0.orig/contrib/texi2pod.pl gcc-5.4.0/contrib/texi2pod.pl
+--- gcc-5.4.0.orig/contrib/texi2pod.pl 2014-08-11 09:29:41.000000000 +0200
++++ gcc-5.4.0/contrib/texi2pod.pl 2017-05-29 20:03:29.763162185 +0200
+@@ -316,7 +316,7 @@
+ @columns = ();
+ for $column (split (/\s*\@tab\s*/, $1)) {
+ # @strong{...} is used a @headitem work-alike
+- $column =~ s/^\@strong{(.*)}$/$1/;
++ $column =~ s/^\@strong\{(.*)}$/$1/;
+ push @columns, $column;
+ }
+ $_ = "\n=item ".join (" : ", @columns)."\n";
+diff -ruN gcc-5.4.0.orig/libjava/classpath/doc/texi2pod.pl gcc-5.4.0/libjava/classpath/doc/texi2pod.pl
+--- gcc-5.4.0.orig/libjava/classpath/doc/texi2pod.pl 2007-06-04 01:18:43.000000000 +0200
++++ gcc-5.4.0/libjava/classpath/doc/texi2pod.pl 2017-05-29 20:04:45.912165337 +0200
+@@ -311,7 +311,7 @@
+ @columns = ();
+ for $column (split (/\s*\@tab\s*/, $1)) {
+ # @strong{...} is used a @headitem work-alike
+- $column =~ s/^\@strong{(.*)}$/$1/;
++ $column =~ s/^\@strong\{(.*)}$/$1/;
+ push @columns, $column;
+ }
+ $_ = "\n=item ".join (" : ", @columns)."\n";
diff --git a/5.4.0/gentoo/README.history b/5.4.0/gentoo/README.history
index 7a044bf..e7981dc 100644
--- a/5.4.0/gentoo/README.history
+++ b/5.4.0/gentoo/README.history
@@ -1,3 +1,6 @@
+1.4 06 Aug 2017
+ + 91_all_compatibility_fix_with_perl_5.26.patch
+
1.3 01 Feb 2017
+ 71_all_gcc-5-march-native-pr67310.patch
+ 78_all_gcc-5-pr71442