Fix BinMemInputStream test.
authorScott Cantor <cantor.2@osu.edu>
Wed, 31 Dec 2008 18:15:40 +0000 (18:15 +0000)
committerScott Cantor <cantor.2@osu.edu>
Wed, 31 Dec 2008 18:15:40 +0000 (18:15 +0000)
configure.ac

index c00d6d0..7c7d1a1 100644 (file)
@@ -179,9 +179,9 @@ AC_TRY_COMPILE([#include <xercesc/framework/MemBufInputSource.hpp>],
     [AC_MSG_RESULT([no])])
 
 AC_MSG_CHECKING([whether Xerces BinInputStream requires getContentType])
-AC_TRY_COMPILE([#include <xercesc/framework/MemBufInputSource.hpp>],
+AC_TRY_COMPILE([#include <xercesc/util/BinMemInputStream.hpp>],
     [using namespace XERCES_CPP_NAMESPACE;
-      char buf[1024];
+      XMLByte buf[1024];
       BinMemInputStream in(buf,1024);
       in.getContentType();
     ],