Skip to content
Snippets Groups Projects
Commit e39cb949 authored by Sébastien Villemot's avatar Sébastien Villemot
Browse files

Build system: remove warning about parentheses (we know the priority rules of...

Build system: remove warning about parentheses (we know the priority rules of C++, no need to be reminded)
parent 572f7188
No related branches found
No related tags found
No related merge requests found
dnl Process this file with autoconf to produce a configure script. dnl Process this file with autoconf to produce a configure script.
dnl Copyright (C) 2009-2010 Dynare Team dnl Copyright (C) 2009-2011 Dynare Team
dnl dnl
dnl This file is part of Dynare. dnl This file is part of Dynare.
dnl dnl
...@@ -47,7 +47,7 @@ esac ...@@ -47,7 +47,7 @@ esac
# Use C++ for testing headers # Use C++ for testing headers
AC_LANG([C++]) AC_LANG([C++])
CXXFLAGS="$CXXFLAGS -Wall" CXXFLAGS="$CXXFLAGS -Wall -Wno-parentheses"
AC_PROG_RANLIB AC_PROG_RANLIB
......
dnl Process this file with autoconf to produce a configure script. dnl Process this file with autoconf to produce a configure script.
dnl Copyright (C) 2009-2010 Dynare Team dnl Copyright (C) 2009-2011 Dynare Team
dnl dnl
dnl This file is part of Dynare. dnl This file is part of Dynare.
dnl dnl
...@@ -49,9 +49,9 @@ case ${host_os} in ...@@ -49,9 +49,9 @@ case ${host_os} in
;; ;;
esac esac
CFLAGS="$CFLAGS -Wall" CFLAGS="$CFLAGS -Wall -Wno-parentheses"
FFLAGS="$FFLAGS -Wall" FFLAGS="$FFLAGS -Wall"
CXXFLAGS="$CXXFLAGS -Wall" CXXFLAGS="$CXXFLAGS -Wall -Wno-parentheses"
AC_PROG_F77 AC_PROG_F77
AM_CONDITIONAL([HAVE_FORT], [test "x$F77" != "x"]) AM_CONDITIONAL([HAVE_FORT], [test "x$F77" != "x"])
......
dnl Process this file with autoconf to produce a configure script. dnl Process this file with autoconf to produce a configure script.
dnl Copyright (C) 2009-2010 Dynare Team dnl Copyright (C) 2009-2011 Dynare Team
dnl dnl
dnl This file is part of Dynare. dnl This file is part of Dynare.
dnl dnl
...@@ -32,9 +32,9 @@ if test "x$MKOCTFILE" != "x"; then ...@@ -32,9 +32,9 @@ if test "x$MKOCTFILE" != "x"; then
CXXFLAGS=`$MKOCTFILE -p CXXFLAGS` CXXFLAGS=`$MKOCTFILE -p CXXFLAGS`
fi fi
CFLAGS="$CFLAGS -Wall" CFLAGS="$CFLAGS -Wall -Wno-parentheses"
FFLAGS="$FFLAGS -Wall" FFLAGS="$FFLAGS -Wall"
CXXFLAGS="$CXXFLAGS -Wall" CXXFLAGS="$CXXFLAGS -Wall -Wno-parentheses"
AC_PROG_F77 AC_PROG_F77
AM_CONDITIONAL([HAVE_FORT], [test "x$F77" != "x"]) AM_CONDITIONAL([HAVE_FORT], [test "x$F77" != "x"])
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment