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.7.1/gentoo: 15_all_libgfortran-Werror.patch README.history
Date: Thu, 27 Sep 2012 21:01:53
Message-Id: 20120927210049.50F882160D@flycatcher.gentoo.org
1 vapier 12/09/27 21:00:49
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.6 src/patchsets/gcc/4.7.1/gentoo/README.history
10
11 file : http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.7.1/gentoo/README.history?rev=1.6&view=markup
12 plain: http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.7.1/gentoo/README.history?rev=1.6&content-type=text/plain
13 diff : http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.7.1/gentoo/README.history?r1=1.5&r2=1.6
14
15 Index: README.history
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo/src/patchsets/gcc/4.7.1/gentoo/README.history,v
18 retrieving revision 1.5
19 retrieving revision 1.6
20 diff -u -r1.5 -r1.6
21 --- README.history 19 Aug 2012 01:25:21 -0000 1.5
22 +++ README.history 27 Sep 2012 21:00:49 -0000 1.6
23 @@ -1,3 +1,6 @@
24 +1.4 27 Sep 2012
25 + + 15_all_libgfortran-Werror.patch
26 +
27 1.3 18 Aug 2012
28 U 10_all_default-fortify-source.patch
29 + 67_all_gcc-poison-system-directories.patch
30
31
32
33 1.1 src/patchsets/gcc/4.7.1/gentoo/15_all_libgfortran-Werror.patch
34
35 file : http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.7.1/gentoo/15_all_libgfortran-Werror.patch?rev=1.1&view=markup
36 plain: http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.7.1/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"