Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo commit in src/patchsets/gcc/4.6.1/gentoo: 15_all_libgfortran-Werror.patch README.history
Date: Thu, 27 Sep 2012 21:03:34
Message-Id: 20120927210048.AB50821603@flycatcher.gentoo.org
1 vapier 12/09/27 21:00:48
2
3 Modified: README.history
4 Added: 15_all_libgfortran-Werror.patch
5 Log:
6 drop -Werror from libgfortran builds
7
8 Revision Changes Path
9 1.10 src/patchsets/gcc/4.6.1/gentoo/README.history
10
11 file : http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.6.1/gentoo/README.history?rev=1.10&view=markup
12 plain: http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.6.1/gentoo/README.history?rev=1.10&content-type=text/plain
13 diff : http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.6.1/gentoo/README.history?r1=1.9&r2=1.10
14
15 Index: README.history
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo/src/patchsets/gcc/4.6.1/gentoo/README.history,v
18 retrieving revision 1.9
19 retrieving revision 1.10
20 diff -u -r1.9 -r1.10
21 --- README.history 11 Aug 2012 17:11:51 -0000 1.9
22 +++ README.history 27 Sep 2012 21:00:48 -0000 1.10
23 @@ -1,6 +1,7 @@
24 -1.1 [pending]
25 +1.1 27 Sep 2011
26 + 05_all_gcc-4.6.x-siginfo.patch
27 - 08_all_cross-compile.patch
28 + + 15_all_libgfortran-Werror.patch
29 + 16_all_libgo-Werror-pr53679.patch
30 + 27_all_gcj-glibc-2.15-pr50888.patch
31 + 33_all_armhf.patch
32
33
34
35 1.1 src/patchsets/gcc/4.6.1/gentoo/15_all_libgfortran-Werror.patch
36
37 file : http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.6.1/gentoo/15_all_libgfortran-Werror.patch?rev=1.1&view=markup
38 plain: http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.6.1/gentoo/15_all_libgfortran-Werror.patch?rev=1.1&content-type=text/plain
39
40 Index: 15_all_libgfortran-Werror.patch
41 ===================================================================
42 libgfortran does not respect --disable-werror
43
44 https://bugs.gentoo.org/433435
45 http://gcc.gnu.org/PR54724
46
47 --- a/libgfortran/configure
48 +++ b/libgfortran/configure
49 @@ -5551,7 +5551,7 @@ fi
50
51 # Add -Wall -fno-repack-arrays -fno-underscoring if we are using GCC.
52 if test "x$GCC" = "xyes"; then
53 - AM_FCFLAGS="-I . -Wall -Werror -fimplicit-none -fno-repack-arrays -fno-underscoring"
54 + AM_FCFLAGS="-I . -Wall -fimplicit-none -fno-repack-arrays -fno-underscoring"
55 ## We like to use C99 routines when available. This makes sure that
56 ## __STDC_VERSION__ is set such that libc includes make them available.
57 AM_CFLAGS="-std=gnu99 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wextra -Wwrite-strings"