diff options
author | burnus <burnus@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-06-13 19:29:22 +0000 |
---|---|---|
committer | burnus <burnus@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-06-13 19:29:22 +0000 |
commit | 5ccd29b1395498fb7240b0c43a98dfc59d34405c (patch) | |
tree | 873423f57dd76eaf45b3f8a0175b2fbc3b5a2c98 /libgfortran | |
parent | 6f3a07791bc11aa94f2ec093852a6578a45abc4b (diff) | |
download | gcc-5ccd29b1395498fb7240b0c43a98dfc59d34405c.tar.gz |
2008-06-13 Tobias Burnus <burnus@net-b.de>
* configure.ac (AM_CFLAGS): Remove -Werror again.
* configure: Regenerate.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@136762 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libgfortran')
-rw-r--r-- | libgfortran/ChangeLog | 27 | ||||
-rwxr-xr-x | libgfortran/configure | 2 | ||||
-rw-r--r-- | libgfortran/configure.ac | 2 |
3 files changed, 29 insertions, 2 deletions
diff --git a/libgfortran/ChangeLog b/libgfortran/ChangeLog index 6148eaf6313..5c931e61cc0 100644 --- a/libgfortran/ChangeLog +++ b/libgfortran/ChangeLog @@ -1,5 +1,32 @@ 2008-06-13 Tobias Burnus <burnus@net-b.de> + * configure.ac (AM_CFLAGS): Remove -Werror again. + * configure: Regenerate. + +2008-06-13 Tobias Burnus <burnus@net-b.de> + + PR libgfortran/36518 + * configure.ac (AM_CFLAGS): Add -Werror. + * configure: Regenerate. + * m4/ifunction_logical.m4: Cast "n" to "(int)". + * generated/any_l16.c: Regenerate. + * generated/any_l2.c: Regenerate. + * generated/all_l1.c: Regenerate. + * generated/all_l2.c: Regenerate. + * generated/all_l16.c: Regenerate. + * generated/any_l4.c: Regenerate. + * generated/count_4_l.c: Regenerate. + * generated/count_8_l.c: Regenerate. + * generated/all_l4.c: Regenerate. + * generated/count_1_l.c: Regenerate. + * generated/count_16_l.c: Regenerate. + * generated/any_l8.c: Regenerate. + * generated/count_2_l.c: Regenerate. + * generated/any_l1.c: Regenerate. + * generated/all_l8.c: Regenerate. + +2008-06-13 Tobias Burnus <burnus@net-b.de> + PR fortran/36495 * configure.ac (AM_FCFLAGS): Add "-Werror -fimplicit-none". * configure: (generated) ditto. diff --git a/libgfortran/configure b/libgfortran/configure index 2a3376efe20..a973ea28b4f 100755 --- a/libgfortran/configure +++ b/libgfortran/configure @@ -3399,7 +3399,7 @@ if test "x$GCC" = "xyes"; then AM_FCFLAGS="-I . -Wall -Werror -fimplicit-none -fno-repack-arrays -fno-underscoring" ## We like to use C99 routines when available. This makes sure that ## __STDC_VERSION__ is set such that libc includes make them available. - AM_CFLAGS="-std=gnu99 -Werror -Wall -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wextra -Wwrite-strings" + AM_CFLAGS="-std=gnu99 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wextra -Wwrite-strings" ## Compile the following tests with the same system header contents ## that we'll encounter when compiling our own source files. CFLAGS="-std=gnu99 $CFLAGS" diff --git a/libgfortran/configure.ac b/libgfortran/configure.ac index 4d01815bb9f..47d453aaf57 100644 --- a/libgfortran/configure.ac +++ b/libgfortran/configure.ac @@ -126,7 +126,7 @@ if test "x$GCC" = "xyes"; then AM_FCFLAGS="-I . -Wall -Werror -fimplicit-none -fno-repack-arrays -fno-underscoring" ## We like to use C99 routines when available. This makes sure that ## __STDC_VERSION__ is set such that libc includes make them available. - AM_CFLAGS="-std=gnu99 -Werror -Wall -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wextra -Wwrite-strings" + AM_CFLAGS="-std=gnu99 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wextra -Wwrite-strings" ## Compile the following tests with the same system header contents ## that we'll encounter when compiling our own source files. CFLAGS="-std=gnu99 $CFLAGS" |