| delorie.com/archives/browse.cgi | search |
| Mailing-List: | contact cygwin-help AT sourceware DOT cygnus DOT com; run by ezmlm |
| List-Subscribe: | <mailto:cygwin-subscribe AT sources DOT redhat DOT com> |
| List-Archive: | <http://sources.redhat.com/ml/cygwin/> |
| List-Post: | <mailto:cygwin AT sources DOT redhat DOT com> |
| List-Help: | <mailto:cygwin-help AT sources DOT redhat DOT com>, <http://sources.redhat.com/ml/#faqs> |
| Sender: | cygwin-owner AT sources DOT redhat DOT com |
| Delivered-To: | mailing list cygwin AT sources DOT redhat DOT com |
| Date: | Wed, 14 Nov 2001 02:23:02 +0100 |
| From: | "Gerrit P. Haase" <gp AT familiehaase DOT de> |
| X-Mailer: | The Bat! (v1.53t) Business |
| Reply-To: | "Gerrit P. Haase" <cygwin AT cygwin DOT com> |
| Organization: | Esse keine toten Tiere |
| X-Priority: | 3 (Normal) |
| Message-ID: | <17701200342.20011114022302@familiehaase.de> |
| To: | "Gerrit P. Haase" <cygwin AT cygwin DOT com> |
| Subject: | Re: need help to build xerces |
| In-Reply-To: | <93127483090.20011113225111@familiehaase.de> |
| References: | <93127483090 DOT 20011113225111 AT familiehaase DOT de> |
| MIME-Version: | 1.0 |
| X-Hops: | 1 |
Hallo Gerrit,
Am 2001-11-13 um 22:51 schriebst du:
> Hallo Cygwinners,
> I get every sourcefile compiled but one.
> The compiler (g++) doesn't want to build it because of this error:
> In file included from IconvTransService.cpp:68:
> /usr/include/wchar.h:24: syntax error before `('
> make[2]: *** [IconvTransService.o] Error 1
I found the problem, size_t isn't defined?
I patched the file and now it compiles:
> #ifndef _WCHAR_H
> #define _WCHAR_H
> #include <sys/cdefs.h>
> /* Get wchar_t and wint_t from <stddef.h>. */
> #define __need_wchar_t
> #define __need_wint_t
#define __need_size_t
> #include <stddef.h>
> __BEGIN_DECLS
> int wcscmp (const wchar_t *__s1, const wchar_t *__s2);
> size_t wcslen (const wchar_t *__s1); <--------- line 24 is here
> __END_DECLS
> #endif /* _WCHAR_H */
But all the tests that are included with xerces fail;(
All are stackdumping. I don't like this package...
Ciao,
Gerrit P. Haase mailto:gp AT familiehaase DOT de
--
=^..^=
--
Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple
Bug reporting: http://cygwin.com/bugs.html
Documentation: http://cygwin.com/docs.html
FAQ: http://cygwin.com/faq/
| webmaster | delorie software privacy |
| Copyright © 2019 by DJ Delorie | Updated Jul 2019 |