You are viewing a plain text version of this content. The canonical link for it is here.
Posted to c-dev@xerces.apache.org by Andy Heninger <an...@jtcsv.com> on 2000/05/02 05:33:47 UTC

Re: xerces-c problems on solaris7/SPARC/gcc

Here's the solution to this problem, as reported by earlier
Benjamin Geer
> > benjamin.geer@btinternet.com
> >

We are way overdue for a fresh release - there's a lot of good stuff
in cvs that is not in 1.1.0, including this fix.

-- Andy

-------------------------------------------------------------------------

> I found the problem: it's a small bug in IconvTransService.cpp.  It reads:
>
> #if defined (XML_GNUG)
> #include <wctype.h>
> #endif
>
> It should read:
>
> #if defined (XML_GCC)
> #include <wctype.h>
> #endif
>
> With that change, everything compiles.
>
> Ben

----- Original Message -----
From: "Levi" <le...@top.monad.net>
To: <xe...@xml.apache.org>
Sent: Sunday, April 30, 2000 4:26 PM
Subject: Build errors


> While attempting to compile Xerces-C 1.1.0 on linux (Debian Woody) with
> the recomended stand-alone options to runConfigure, I get the following
> errors:
>
> ) IconvTransService.cpp: In method `int
> ) IconvTransService::compareIString(const XMLCh *, const XMLCh *)':
> ) IconvTransService.cpp:187: implicit declaration of function `int
> ) towupper(...)'
> ) IconvTransService.cpp: In method `bool
> ) IconvTransService::isSpace(__wchar_t) const':
> ) IconvTransService.cpp:230: implicit declaration of function `int
> ) iswspace(...)'
> ) make[2]: *** [IconvTransService.o] Error 1
>
> I tried to find a referance to these errors in the mailing list archives,
but
> was unable to find enough information to make my build come out
> succesfully.
>
> -Levi
>
>