- Added check for CXX compiler to configure.in, to make the tests compile
- Fixed invalid pointer cast (on 64bit systems) in runtests.c
This commit is contained in:
parent
78344f1740
commit
62649c54c3
@ -51,7 +51,6 @@ LIBAGE=6
|
||||
|
||||
AC_CONFIG_HEADER(expat_config.h)
|
||||
|
||||
sinclude(conftools/libtool.m4)
|
||||
sinclude(conftools/ac_c_bigendian_cross.m4)
|
||||
|
||||
AC_LIBTOOL_WIN32_DLL
|
||||
@ -63,6 +62,7 @@ AC_SUBST(LIBAGE)
|
||||
|
||||
dnl Checks for programs.
|
||||
AC_PROG_CC
|
||||
AC_PROG_CXX
|
||||
AC_PROG_INSTALL
|
||||
|
||||
if test "$GCC" = yes ; then
|
||||
|
@ -12,6 +12,7 @@
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
#include <stdint.h>
|
||||
|
||||
#include "expat.h"
|
||||
#include "chardata.h"
|
||||
@ -1254,7 +1255,7 @@ external_entity_handler(XML_Parser parser,
|
||||
const XML_Char *systemId,
|
||||
const XML_Char *publicId)
|
||||
{
|
||||
long callno = 1 + (long)XML_GetUserData(parser);
|
||||
intptr_t callno = 1 + (intptr_t)XML_GetUserData(parser);
|
||||
char *text;
|
||||
XML_Parser p2;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user