From: Wolfgang Bangerth Date: Mon, 1 Mar 2010 03:06:29 +0000 (+0000) Subject: Fix odd placement of parentheses. X-Git-Tag: v8.0.0~6387 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=319520fdc2c8ed41e27f449ad051e2c59b6eb1a0;p=dealii.git Fix odd placement of parentheses. git-svn-id: https://svn.dealii.org/trunk@20715 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/configure.in b/deal.II/configure.in index a752aa6b7e..d7f7a459ab 100644 --- a/deal.II/configure.in +++ b/deal.II/configure.in @@ -693,15 +693,15 @@ AH_BOTTOM( */ #define DEAL_II_PETSC_VERSION_LT(major,minor,subminor) \ ((PETSC_VERSION_MAJOR * 10000 + \ - PETSC_VERSION_MINOR * 100) + \ - PETSC_VERSION_SUBMINOR \ + PETSC_VERSION_MINOR * 100 + \ + PETSC_VERSION_SUBMINOR) \ < \ major*10000 + minor*100 + subminor) #define DEAL_II_PETSC_VERSION_GE(major,minor,subminor) \ ((PETSC_VERSION_MAJOR * 10000 + \ - PETSC_VERSION_MINOR * 100) + \ - PETSC_VERSION_SUBMINOR \ + PETSC_VERSION_MINOR * 100 + \ + PETSC_VERSION_SUBMINOR) \ >= \ (major)*10000 + (minor)*100 + (subminor))