Fixed problem with macroexpansion in acinclude.m4
authorJuanjo Garcia-Ripoll <jjgarcia@users.sourcerforge.net>
Wed, 9 Oct 2013 10:12:59 +0000 (12:12 +0200)
committerJuanjo Garcia-Ripoll <jjgarcia@users.sourcerforge.net>
Wed, 9 Oct 2013 10:12:59 +0000 (12:12 +0200)
src/gmp/acinclude.m4
src/gmp/configure

index d053228..1492cd0 100644 (file)
@@ -3768,7 +3768,7 @@ AC_CACHE_CHECK([whether build system compiler is ANSI],
                gmp_cv_c_for_build_ansi,
 [cat >conftest.c <<EOF
 int
-main (int argc, char *argv[])
+main (int argc, char **argv)
 {
   exit(0);
 }
index b35f3f3..41c0736 100755 (executable)
@@ -9209,7 +9209,7 @@ if ${gmp_cv_c_for_build_ansi+:} false; then :
 else
   cat >conftest.c <<EOF
 int
-main (int argc, char *argv)
+main (int argc, char **argv)
 {
   exit(0);
 }