Remove AC_C_CONST
authorIan Lynagh <igloo@earth.li>
Mon, 15 Jun 2009 20:32:40 +0000 (20:32 +0000)
committerIan Lynagh <igloo@earth.li>
Mon, 15 Jun 2009 20:32:40 +0000 (20:32 +0000)
commit3c8810e93e25864e629a1d2328918fed3bf5297d
tree0ac04b31b315b511ccce8cfe66aaededc5f247a8
parenteac35b58c9201fad4083e4ec4ef0f5721d719dce
Remove AC_C_CONST
It was breaking the build on Windows. The problem was that we included
stdio.h which gave a prototype for some functions (e.g. remove), then
the AC_C_CONST meant that we did
    /* Define to empty if `const' does not conform to ANSI C. */
    #define const /**/
and then we included io.h which gave prototypes that, due to const
being removed, conflicted with the earlier prototypes.
configure.ac