]> granicus.if.org Git - check/commitdiff
configure.ac: do not compile with -ansi for now
authorbrarcher <brarcher@64e312b2-a51f-0410-8e61-82d0ca0eb02a>
Mon, 21 Oct 2013 03:26:29 +0000 (03:26 +0000)
committerbrarcher <brarcher@64e312b2-a51f-0410-8e61-82d0ca0eb02a>
Mon, 21 Oct 2013 03:26:29 +0000 (03:26 +0000)
There is currently a bug on the MinGW/MinGW-w64 platforms:
   sourceforge.net/p/mingw/bugs/2024
where compiling with -ansi will not define the off64_t type,
but including unistd.h will require it to be defined else
a compile error will result.

Attempting to define a replacement in config.h also fails; config.h
will work for check's code, but the code that libtool produces
then fails, meaning unit tests fail to compile.

When the MinGW bug is resolved, we can start compiling with -ansi again.

git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@846 64e312b2-a51f-0410-8e61-82d0ca0eb02a

configure.ac

index beb2a170accb7a92efe1f33ede4e10102e133bff..ef74450b9f80888fb69b8acdda780a25b9050c65 100644 (file)
@@ -130,7 +130,7 @@ AC_PROG_LIBTOOL
 
 # add these options to CFLAGS if the compiler supports them
 AC_DEFUN([AX_CFLAGS_ADD],[AX_C_CHECK_FLAG($1, , , CFLAGS="$CFLAGS $1")])
-AX_CFLAGS_WARN_ALL_ANSI
+#AX_CFLAGS_WARN_ALL_ANSI
 AX_CFLAGS_ADD([-Wextra])
 AX_CFLAGS_ADD([-Wstrict-prototypes])
 AX_CFLAGS_ADD([-Wmissing-prototypes])