From e060da55697162d52dd34a9b1536e9b194e54732 Mon Sep 17 00:00:00 2001 From: Ian Lynagh Date: Mon, 15 Jun 2009 21:48:50 +0000 Subject: [PATCH] Fix warnings in configure script --- aclocal.m4 | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/aclocal.m4 b/aclocal.m4 index 211ba92..615cbe1 100644 --- a/aclocal.m4 +++ b/aclocal.m4 @@ -145,7 +145,7 @@ int main(void) { if (((testing)((int)((testing)1.4))) == ((testing)1.4)) { fprintf(f, "%s%d\n", ((testing)(-1) < (testing)0) ? "Int" : "Word", - sizeof(testing)*8); + (int)(sizeof(testing)*8)); } else { fprintf(f,"%s\n", (sizeof(testing) > sizeof(double)) ? "LDouble" : @@ -179,6 +179,8 @@ AC_DEFUN([FP_READDIR_EOF_ERRNO], [AC_RUN_IFELSE([AC_LANG_SOURCE([[#include #include #include +#include + int main(argc, argv) int argc; -- 1.7.10.4