Mercurial > hg > octave-jordi
changeset 5194:cb213ce19827
[project @ 2005-03-04 19:38:21 by jwe]
author | jwe |
---|---|
date | Fri, 04 Mar 2005 19:38:21 +0000 |
parents | 40d1282dda33 |
children | 5208182e2e62 |
files | ChangeLog configure.in |
diffstat | 2 files changed, 8 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2005-03-04 John W. Eaton <jwe@octave.org> + + * configure.in (GXX_PICKY_FLAGS): Don't include + -Wmissing-prototypes or -Wstrict-prototypes. + 2005-03-02 John W. Eaton <jwe@octave.org> * aclocal.m4 (OCTAVE_CC_FLAG, OCTAVE_CXX_FLAG, OCTAVE_F77_FLAG):
--- a/configure.in +++ b/configure.in @@ -29,7 +29,7 @@ EXTERN_CXXFLAGS="$CXXFLAGS" AC_INIT -AC_REVISION($Revision: 1.463 $) +AC_REVISION($Revision: 1.464 $) AC_PREREQ(2.57) AC_CONFIG_SRCDIR([src/octave.cc]) AC_CONFIG_HEADER(config.h) @@ -1292,7 +1292,8 @@ GCC_PICKY_FLAGS="-Wcast-align -Wcast-qual -Wmissing-prototypes \ -Wpointer-arith -Wstrict-prototypes -Wwrite-strings" -GXX_PICKY_FLAGS="$GCC_PICKY_FLAGS -Weffc++ -Wenum-clash" +GXX_PICKY_FLAGS="-Wcast-align -Wcast-qual -Wpointer-arith \ + -Wwrite-strings -Weffc++ -Wenum-clash" AC_ARG_ENABLE(picky-flags, [ --enable-picky-flags add picky options to CFLAGS, CXXFLAGS, FFLAGS],