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