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.5.2/gentoo: 15_all_libgfortran-Werror.patch README.history
Date: Thu, 27 Sep 2012 21:03:03
Message-Id: 20120927210048.02D912160A@flycatcher.gentoo.org
1 vapier 12/09/27 21:00:47
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.20 src/patchsets/gcc/4.5.2/gentoo/README.history
10
11 file : http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.5.2/gentoo/README.history?rev=1.20&view=markup
12 plain: http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.5.2/gentoo/README.history?rev=1.20&content-type=text/plain
13 diff : http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.5.2/gentoo/README.history?r1=1.19&r2=1.20
14
15 Index: README.history
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo/src/patchsets/gcc/4.5.2/gentoo/README.history,v
18 retrieving revision 1.19
19 retrieving revision 1.20
20 diff -u -r1.19 -r1.20
21 --- README.history 23 Jul 2012 15:06:57 -0000 1.19
22 +++ README.history 27 Sep 2012 21:00:47 -0000 1.20
23 @@ -1,5 +1,6 @@
24 1.2 [pending]
25 + 05_all_gcc-4.5.x-siginfo.patch
26 + + 15_all_libgfortran-Werror.patch
27 + 24_all_4.5.2_pr43653_clang_ICE.patch
28 + 27_all_gcj-glibc-2.15-pr50888.patch
29 + 30_all_gcc-4.5-ppc-msingle-pic-base.patch
30
31
32
33 1.1 src/patchsets/gcc/4.5.2/gentoo/15_all_libgfortran-Werror.patch
34
35 file : http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.5.2/gentoo/15_all_libgfortran-Werror.patch?rev=1.1&view=markup
36 plain: http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.5.2/gentoo/15_all_libgfortran-Werror.patch?rev=1.1&content-type=text/plain
37
38 Index: 15_all_libgfortran-Werror.patch
39 ===================================================================
40 libgfortran does not respect --disable-werror
41
42 https://bugs.gentoo.org/433435
43 http://gcc.gnu.org/PR54724
44
45 --- a/libgfortran/configure
46 +++ b/libgfortran/configure
47 @@ -5551,7 +5551,7 @@ fi
48
49 # Add -Wall -fno-repack-arrays -fno-underscoring if we are using GCC.
50 if test "x$GCC" = "xyes"; then
51 - AM_FCFLAGS="-I . -Wall -Werror -fimplicit-none -fno-repack-arrays -fno-underscoring"
52 + AM_FCFLAGS="-I . -Wall -fimplicit-none -fno-repack-arrays -fno-underscoring"
53 ## We like to use C99 routines when available. This makes sure that
54 ## __STDC_VERSION__ is set such that libc includes make them available.
55 AM_CFLAGS="-std=gnu99 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wextra -Wwrite-strings"