From: Wolfgang Bangerth Date: Mon, 25 Aug 2008 16:33:05 +0000 (+0000) Subject: Fix test to not reference arguments to main(). X-Git-Tag: v8.0.0~8779 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7e0b0477a5d38d1250c8c823d2e605640fe0feaf;p=dealii.git Fix test to not reference arguments to main(). git-svn-id: https://svn.dealii.org/trunk@16665 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/aclocal.m4 b/deal.II/aclocal.m4 index 5c585705ee..f408da09f6 100644 --- a/deal.II/aclocal.m4 +++ b/deal.II/aclocal.m4 @@ -392,7 +392,7 @@ AC_DEFUN(DEAL_II_DETERMINE_IF_SUPPORTS_MPI, dnl #include ], [ - MPI_Init (&argc,&argv); + MPI_Init (0,0); ], [ AC_MSG_RESULT(yes) diff --git a/deal.II/configure b/deal.II/configure index a4ee0ab9a7..8ad1f89639 100755 --- a/deal.II/configure +++ b/deal.II/configure @@ -3895,7 +3895,7 @@ int main () { - MPI_Init (&argc,&argv); + MPI_Init (0,0); ; return 0;