Fix BinMemInputStream test.
authorcantor <cantor@de75baf8-a10c-0410-a50a-987c0e22f00f>
Wed, 31 Dec 2008 18:15:40 +0000 (18:15 +0000)
committercantor <cantor@de75baf8-a10c-0410-a50a-987c0e22f00f>
Wed, 31 Dec 2008 18:15:40 +0000 (18:15 +0000)
git-svn-id: https://svn.middleware.georgetown.edu/cpp-xmltooling/branches/REL_1@555 de75baf8-a10c-0410-a50a-987c0e22f00f

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();
     ],