From noreply at sourceforge.net Fri Jul 1 15:53:39 2005 From: noreply at sourceforge.net (SourceForge.net) Date: Fri, 01 Jul 2005 06:53:39 -0700 Subject: [Expat-bugs] [ expat-Bugs-1230954 ] "make all" fails for libexpat Message-ID: Bugs item #1230954, was opened at 2005-07-01 09:53 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=110127&aid=1230954&group_id=10127 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Build control Group: Platform Specific Status: Open Resolution: None Priority: 5 Submitted By: ken klein (kklein9) Assigned to: Greg Stein (gstein) Summary: "make all" fails for libexpat Initial Comment: aix 5.3 ml 02 power 5 on pSeries p570 partition. The complete output from the make all failure is below: root at f2sys1 (2133)[/home/ken/expat/expat-1.95.8]# make all /bin/sh ./libtool --silent --mode=compile gcc -g -O2 -Wall -Wmissing-prototypes -Wstrict-prototypes -fexceptions -DHAVE_EXPAT_CONF IG_H -I./lib -I. -o lib/xmlparse.lo -c lib/xmlparse.c /bin/sh ./libtool --silent --mode=compile gcc -g -O2 -Wall -Wmissing-prototypes -Wstrict-prototypes -fexceptions -DHAVE_EXPAT_CONF IG_H -I./lib -I. -o lib/xmltok.lo -c lib/xmltok.c /bin/sh ./libtool --silent --mode=compile gcc -g -O2 -Wall -Wmissing-prototypes -Wstrict-prototypes -fexceptions -DHAVE_EXPAT_CONF IG_H -I./lib -I. -o lib/xmlrole.lo -c lib/xmlrole.c /bin/sh ./libtool --silent --mode=link gcc -g -O2 -Wall -Wmissing-prototypes -Wstrict-prototypes -fexceptions -DHAVE_EXPAT_CONFIG_ H -I./lib -I. -no-undefined -version-info 5:0:5 -rpath /usr/local/lib -o libexpat.la lib/xmlparse.lo lib/xmltok.lo lib/xmlrole.lo ld: 0711-415 WARNING: Symbol _GLOBAL__F_XML_ParserCreate is already exported. ld: 0711-415 WARNING: Symbol _GLOBAL__F_XmlUtf8Encode is already exported. ld: 0711-415 WARNING: Symbol _GLOBAL__F_XmlPrologStateInit is already exported. gcc -g -O2 -Wall -Wmissing-prototypes -Wstrict-prototypes -fexceptions -DHAVE_EXPAT_CONFIG_H -I./lib -I. -o xmlwf/xmlwf.o -c xml wf/xmlwf.c gcc -g -O2 -Wall -Wmissing-prototypes -Wstrict-prototypes -fexceptions -DHAVE_EXPAT_CONFIG_H -I./lib -I. -o xmlwf/xmlfile.o -c x mlwf/xmlfile.c gcc -g -O2 -Wall -Wmissing-prototypes -Wstrict-prototypes -fexceptions -DHAVE_EXPAT_CONFIG_H -I./lib -I. -o xmlwf/codepage.o -c xmlwf/codepage.c gcc -g -O2 -Wall -Wmissing-prototypes -Wstrict-prototypes -fexceptions -DHAVE_EXPAT_CONFIG_H -I./lib -I. -o xmlwf/readfilemap.o -c xmlwf/readfilemap.c /bin/sh ./libtool --silent --mode=link gcc -g -O2 -Wall -Wmissing-prototypes -Wstrict-prototypes -fexceptions -DHAVE_EXPAT_CONFIG_ H -I./lib -I. -o xmlwf/xmlwf xmlwf/xmlwf.o xmlwf/xmlfile.o xmlwf/codepage.o xmlwf/readfilemap.o libexpat.la gcc -g -O2 -Wall -Wmissing-prototypes -Wstrict-prototypes -fexceptions -DHAVE_EXPAT_CONFIG_H -I./lib -I. -o examples/elements.o -c examples/elements.c /bin/sh ./libtool --silent --mode=link gcc -g -O2 -Wall -Wmissing-prototypes -Wstrict-prototypes -fexceptions -DHAVE_EXPAT_CONFIG_ H -I./lib -I. -o examples/elements libexpat.la ld: 0711-317 ERROR: Undefined symbol: .main ld: 0711-345 Use the -bloadmap or -bnoquiet option to obtain more information. collect2: ld returned 8 exit status make: 1254-004 The error code from the last command is 1. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=110127&aid=1230954&group_id=10127 From noreply at sourceforge.net Tue Jul 12 01:08:25 2005 From: noreply at sourceforge.net (SourceForge.net) Date: Mon, 11 Jul 2005 16:08:25 -0700 Subject: [Expat-bugs] [ expat-Bugs-1236372 ] v1.95.8 compile warnings lib/xmlparse.c Message-ID: Bugs item #1236372, was opened at 2005-07-11 16:08 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=110127&aid=1236372&group_id=10127 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None Status: Open Resolution: None Priority: 5 Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: v1.95.8 compile warnings lib/xmlparse.c Initial Comment: On Solaris 9 Sparc, using Sun CC the following warnings appear when doing a 'make' on expat v1.95.8 /bin/bash ./libtool --silent --mode=compile cc -g -DHAVE_EXPAT_CONFIG_H -I./li b -I. -o lib/xmlparse.lo -c lib/xmlparse.c "lib/xmlparse.c", line 1572: warning: enum type mismatch: op "=" "lib/xmlparse.c", line 1578: warning: enum type mismatch: op "=" "lib/xmlparse.c", line 1586: warning: enum type mismatch: op "=" "lib/xmlparse.c", line 1719: warning: enum type mismatch: op "=" "lib/xmlparse.c", line 1725: warning: enum type mismatch: op "=" "lib/xmlparse.c", line 1733: warning: enum type mismatch: op "=" The following changes appear to fix the problem ============================================ *** xmlparse.c.orig Thu Jul 22 22:02:41 2004 --- xmlparse.c Wed Jun 8 14:41:53 2005 *************** *** 1539,1545 **** XML_ParseBuffer(XML_Parser parser, int len, int isFinal) { const char *start; ! enum XML_Error result = XML_STATUS_OK; switch (parsing) { case XML_SUSPENDED: --- 1539,1545 ---- XML_ParseBuffer(XML_Parser parser, int len, int isFinal) { const char *start; ! enum XML_Status result = XML_STATUS_OK; switch (parsing) { case XML_SUSPENDED: *************** *** 1698,1704 **** enum XML_Status XMLCALL XML_ResumeParser(XML_Parser parser) { ! enum XML_Error result = XML_STATUS_OK; if (parsing != XML_SUSPENDED) { errorCode = XML_ERROR_NOT_SUSPENDED; --- 1698,1704 ---- enum XML_Status XMLCALL XML_ResumeParser(XML_Parser parser) { ! enum XML_Status result = XML_STATUS_OK; if (parsing != XML_SUSPENDED) { errorCode = XML_ERROR_NOT_SUSPENDED; ============================================ Regards, Todd Olson tco2 -a--t- cornell -d--o--t- edu ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=110127&aid=1236372&group_id=10127 From noreply at sourceforge.net Tue Jul 12 11:25:47 2005 From: noreply at sourceforge.net (SourceForge.net) Date: Tue, 12 Jul 2005 02:25:47 -0700 Subject: [Expat-bugs] [ expat-Bugs-1236372 ] v1.95.8 compile warnings lib/xmlparse.c Message-ID: Bugs item #1236372, was opened at 2005-07-11 19:08 Message generated for change (Comment added) made by kwaclaw You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=110127&aid=1236372&group_id=10127 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None Status: Open Resolution: None Priority: 5 Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: v1.95.8 compile warnings lib/xmlparse.c Initial Comment: On Solaris 9 Sparc, using Sun CC the following warnings appear when doing a 'make' on expat v1.95.8 /bin/bash ./libtool --silent --mode=compile cc -g -DHAVE_EXPAT_CONFIG_H -I./li b -I. -o lib/xmlparse.lo -c lib/xmlparse.c "lib/xmlparse.c", line 1572: warning: enum type mismatch: op "=" "lib/xmlparse.c", line 1578: warning: enum type mismatch: op "=" "lib/xmlparse.c", line 1586: warning: enum type mismatch: op "=" "lib/xmlparse.c", line 1719: warning: enum type mismatch: op "=" "lib/xmlparse.c", line 1725: warning: enum type mismatch: op "=" "lib/xmlparse.c", line 1733: warning: enum type mismatch: op "=" The following changes appear to fix the problem ============================================ *** xmlparse.c.orig Thu Jul 22 22:02:41 2004 --- xmlparse.c Wed Jun 8 14:41:53 2005 *************** *** 1539,1545 **** XML_ParseBuffer(XML_Parser parser, int len, int isFinal) { const char *start; ! enum XML_Error result = XML_STATUS_OK; switch (parsing) { case XML_SUSPENDED: --- 1539,1545 ---- XML_ParseBuffer(XML_Parser parser, int len, int isFinal) { const char *start; ! enum XML_Status result = XML_STATUS_OK; switch (parsing) { case XML_SUSPENDED: *************** *** 1698,1704 **** enum XML_Status XMLCALL XML_ResumeParser(XML_Parser parser) { ! enum XML_Error result = XML_STATUS_OK; if (parsing != XML_SUSPENDED) { errorCode = XML_ERROR_NOT_SUSPENDED; --- 1698,1704 ---- enum XML_Status XMLCALL XML_ResumeParser(XML_Parser parser) { ! enum XML_Status result = XML_STATUS_OK; if (parsing != XML_SUSPENDED) { errorCode = XML_ERROR_NOT_SUSPENDED; ============================================ Regards, Todd Olson tco2 -a--t- cornell -d--o--t- edu ---------------------------------------------------------------------- >Comment By: Karl Waclawek (kwaclaw) Date: 2005-07-12 05:25 Message: Logged In: YES user_id=290026 I believe this has been fixed in CVS a while ago. Please check it out. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=110127&aid=1236372&group_id=10127 From noreply at test.sf.net Wed Jul 13 07:22:07 2005 From: noreply at test.sf.net (SourceForge.net) Date: Tue, 12 Jul 2005 22:22:07 -0700 Subject: [Expat-bugs] [ expat-Bugs-1171906 ] expat-2005-01-28 snapshot in Mingw's msys 1.0 Message-ID: Bugs item #1171906, was opened at 03/28/05 07:41 Message generated for change (Comment added) made by nobody You can respond by visiting: https://test.sf.net/tracker/?func=detail&atid=110127&aid=1171906&group_id=10127 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Build control Group: Platform Specific >Status: Closed Resolution: None Priority: 5 Submitted By: heromyth (heromyth) Assigned to: Gerrit P. Haase (siebenschlaefer) Summary: expat-2005-01-28 snapshot in Mingw's msys 1.0 Initial Comment: When I do Make, it is almost successful. At that time, I get the shared and statice libraries. During making, it show this: /bin/sh ./libtool --silent --mode=link gcc -I./lib -I. -O2 - Wall -Wmissing-pr ototypes -Wstrict-prototypes -fexceptions - DHAVE_EXPAT_CONFIG_H -o examples/ele ments examples/elements.o libexpat.la ./libtool: .libs/lt-examples/elements.c: No such file or directory ./libtool: .libs/lt-examples/elements.c: No such file or directory ./libtool: .libs/lt-examples/elements.c: No such file or directory ./libtool: .libs/lt-examples/elements.c: No such file or directory ./libtool: .libs/lt-examples/elements.c: No such file or directory ./libtool: .libs/lt-examples/elements.c: No such file or directory gcc.exe: .libs/lt-examples/elements.c: No such file or directory gcc.exe: no input files SO I think there are some error in the file libtool. When I use another libtool of msys, it's OK. ---------------------------------------------------------------------- >Comment By: Nobody/Anonymous (nobody) Date: 07/12/05 22:22 Message: Logged In: NO This artifact has been closed automatically because no submitter feedback was received within administrator-specified timeout period. ---------------------------------------------------------------------- Comment By: Gerrit P. Haase (siebenschlaefer) Date: 03/30/05 01:46 Message: Logged In: YES user_id=76037 Older libtool releases have many bugs, for the latest expat release an older buggy libtool was used, if you get better results with newer libtool releases, then upgrade libtool for your build. Future releases probably will use a newer libtool, so probably this bug will be resolved automatically when libtool at the build machine is upgraded. Ther other question: the libraries naming scheme is: Static archive: libexpat.a Import library: libexpat.dll.a Shared library: (cyg)expat-0.dll If you want to link against the static archive please use the -static ld switch with your link command, ld takes care about it and uses the static archive to build executables independant of the shared library. Hth, Gerrit ---------------------------------------------------------------------- Comment By: Karl Waclawek (kwaclaw) Date: 03/29/05 18:41 Message: Logged In: YES user_id=290026 Assigned to our Cygwin expert - maybe he can help. ---------------------------------------------------------------------- Comment By: heromyth (heromyth) Date: 03/29/05 16:15 Message: Logged In: YES user_id=1190746 There is a another question about the expat's libraries. In msys 1.0, I get libexpat.dll.a , libexpat.a and expat-0.dll. I link my applications like this: -Ld:/some/dir/ -lexpat It always use libexpat.dll.a but not libexpat.a. So I have test it. When I rename libexpat.dll.a to libexpat-0.dll.a, now the linker use libexpat.a. ---------------------------------------------------------------------- You can respond by visiting: https://test.sf.net/tracker/?func=detail&atid=110127&aid=1171906&group_id=10127 From noreply at sourceforge.net Wed Jul 13 18:10:35 2005 From: noreply at sourceforge.net (SourceForge.net) Date: Wed, 13 Jul 2005 09:10:35 -0700 Subject: [Expat-bugs] [ expat-Bugs-1237648 ] detected recursion whilst expanding macro "XML_STATUS_ERROR" Message-ID: Bugs item #1237648, was opened at 2005-07-13 09:10 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=110127&aid=1237648&group_id=10127 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Build control Group: None Status: Open Resolution: None Priority: 5 Submitted By: Nobody/Anonymous (nobody) Assigned to: Greg Stein (gstein) Summary: detected recursion whilst expanding macro "XML_STATUS_ERROR" Initial Comment: Hi all, I got a problem in installing expat 1.95.7 on Mac os X (darwin). ./configure run ok. make gave one error: /bin/sh ./libtool --silent --mode=compile cc -g -O2 -Wall -Wmissing- prototypes -Wstrict-prototypes -fexceptions - DHAVE_EXPAT_CONFIG_H -traditional-cpp -I./lib -I. -o lib/ xmlparse.lo -c lib/xmlparse.c lib/xmlparse.c:918: error: detected recursion whilst expanding macro "XML_STATUS_ERROR" lib/xmlparse.c:924: error: detected recursion whilst expanding macro "XML_STATUS_ERROR" lib/xmlparse.c:926: error: detected recursion whilst expanding macro "XML_STATUS_OK" lib/xmlparse.c:1157: error: detected recursion whilst expanding macro "XML_STATUS_ERROR" lib/xmlparse.c:1162: error: detected recursion whilst expanding macro "XML_STATUS_OK" lib/xmlparse.c:1404: error: detected recursion whilst expanding macro "XML_STATUS_OK" lib/xmlparse.c:1408: error: detected recursion whilst expanding macro "XML_STATUS_OK" lib/xmlparse.c:1411: error: detected recursion whilst expanding macro "XML_STATUS_ERROR" lib/xmlparse.c:1466: error: detected recursion whilst expanding macro "XML_STATUS_ERROR" lib/xmlparse.c:1488: error: detected recursion whilst expanding macro "XML_STATUS_OK" lib/xmlparse.c:1493: error: detected recursion whilst expanding macro "XML_STATUS_ERROR" make: *** [lib/xmlparse.lo] Error 1 can someone give me a help. Thanks very much. chenhong ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=110127&aid=1237648&group_id=10127 From noreply at sourceforge.net Wed Jul 13 21:02:33 2005 From: noreply at sourceforge.net (SourceForge.net) Date: Wed, 13 Jul 2005 12:02:33 -0700 Subject: [Expat-bugs] [ expat-Bugs-1237648 ] detected recursion whilst expanding macro "XML_STATUS_ERROR" Message-ID: Bugs item #1237648, was opened at 2005-07-13 12:10 Message generated for change (Comment added) made by kwaclaw You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=110127&aid=1237648&group_id=10127 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Build control Group: None Status: Open Resolution: None Priority: 5 Submitted By: Nobody/Anonymous (nobody) Assigned to: Greg Stein (gstein) Summary: detected recursion whilst expanding macro "XML_STATUS_ERROR" Initial Comment: Hi all, I got a problem in installing expat 1.95.7 on Mac os X (darwin). ./configure run ok. make gave one error: /bin/sh ./libtool --silent --mode=compile cc -g -O2 -Wall -Wmissing- prototypes -Wstrict-prototypes -fexceptions - DHAVE_EXPAT_CONFIG_H -traditional-cpp -I./lib -I. -o lib/ xmlparse.lo -c lib/xmlparse.c lib/xmlparse.c:918: error: detected recursion whilst expanding macro "XML_STATUS_ERROR" lib/xmlparse.c:924: error: detected recursion whilst expanding macro "XML_STATUS_ERROR" lib/xmlparse.c:926: error: detected recursion whilst expanding macro "XML_STATUS_OK" lib/xmlparse.c:1157: error: detected recursion whilst expanding macro "XML_STATUS_ERROR" lib/xmlparse.c:1162: error: detected recursion whilst expanding macro "XML_STATUS_OK" lib/xmlparse.c:1404: error: detected recursion whilst expanding macro "XML_STATUS_OK" lib/xmlparse.c:1408: error: detected recursion whilst expanding macro "XML_STATUS_OK" lib/xmlparse.c:1411: error: detected recursion whilst expanding macro "XML_STATUS_ERROR" lib/xmlparse.c:1466: error: detected recursion whilst expanding macro "XML_STATUS_ERROR" lib/xmlparse.c:1488: error: detected recursion whilst expanding macro "XML_STATUS_OK" lib/xmlparse.c:1493: error: detected recursion whilst expanding macro "XML_STATUS_ERROR" make: *** [lib/xmlparse.lo] Error 1 can someone give me a help. Thanks very much. chenhong ---------------------------------------------------------------------- >Comment By: Karl Waclawek (kwaclaw) Date: 2005-07-13 15:02 Message: Logged In: YES user_id=290026 Does it work allright with Expat 1.95.8? ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=110127&aid=1237648&group_id=10127 From noreply at sourceforge.net Thu Jul 14 15:39:49 2005 From: noreply at sourceforge.net (SourceForge.net) Date: Thu, 14 Jul 2005 06:39:49 -0700 Subject: [Expat-bugs] [ expat-Bugs-1238204 ] Make check for expat-1.95.8 fails Message-ID: Bugs item #1238204, was opened at 2005-07-14 09:39 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=110127&aid=1238204&group_id=10127 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: www.libexpat.org Group: Test Required Status: Open Resolution: None Priority: 5 Submitted By: abhijitk (abhijitkankaria) Assigned to: Fred L. Drake, Jr. (fdrake) Summary: Make check for expat-1.95.8 fails Initial Comment: I have build expat 1.95.8 on Solaris 2.8 with the follwoing option: For UTF-16 output as wchar_t (incl. version/error strings),run: ./configure CFLAGS="-g -O2 -fshort-wchar" CPPFLAGS=-DXML_UNICODE_WCHAR_T It builds successfilly, now i want to run the test for expat it gives the following result as below: [me@:/mydir/expat-1.95.8] make check gcc -g -O2 -fshort-wchar -Wall -Wmissing-prototypes - Wstrict-prototypes -fexceptions - DHAVE_EXPAT_CONFIG_H - DXML_UNICODE_WCHAR_T -I./lib -I. -o tests/runtests.o -c tests/runtests.c tests/runtests.c: In function `_xml_failure': tests/runtests.c:57: warning: char format, different type arg (arg 3) tests/runtests.c: In function `_run_character_check': tests/runtests.c:225: warning: passing arg 1 of `strlen' from incompatible pointer type tests/runtests.c:225: warning: passing arg 2 of `XML_Parse' from incompatible pointer type tests/runtests.c: In function `_run_attribute_check': tests/runtests.c:242: warning: passing arg 1 of `strlen' from incompatible pointer type tests/runtests.c:242: warning: passing arg 2 of `XML_Parse' from incompatible pointer type tests/runtests.c: In function `test_danish_latin1': tests/runtests.c:256: warning: passing arg 1 of `_run_character_check' from incompatible pointer type tests/runtests.c:256: warning: passing arg 2 of `_run_character_check' from incompatible pointer type tests/runtests.c: In function `test_french_charref_hexidecimal': tests/runtests.c:268: warning: passing arg 1 of `_run_character_check' from incompatible pointer type tests/runtests.c:268: warning: passing arg 2 of `_run_character_check' from incompatible pointer type tests/runtests.c: In function `test_french_charref_decimal': tests/runtests.c:278: warning: passing arg 1 of `_run_character_check' from incompatible pointer type tests/runtests.c:278: warning: passing arg 2 of `_run_character_check' from incompatible pointer type tests/runtests.c: In function `test_french_latin1': tests/runtests.c:288: warning: passing arg 1 of `_run_character_check' from incompatible pointer type tests/runtests.c:288: warning: passing arg 2 of `_run_character_check' from incompatible pointer type tests/runtests.c: In function `test_french_utf8': tests/runtests.c:298: warning: passing arg 1 of `_run_character_check' from incompatible pointer type tests/runtests.c:298: warning: passing arg 2 of `_run_character_check' from incompatible pointer type tests/runtests.c: In function `test_utf8_false_rejection': tests/runtests.c:310: warning: passing arg 1 of `_run_character_check' from incompatible pointer type tests/runtests.c:310: warning: passing arg 2 of `_run_character_check' from incompatible pointer type tests/runtests.c: In function `test_latin1_umlauts': tests/runtests.c:392: warning: passing arg 1 of `_run_character_check' from incompatible pointer type tests/runtests.c:392: warning: passing arg 2 of `_run_character_check' from incompatible pointer type tests/runtests.c:394: warning: passing arg 1 of `_run_attribute_check' from incompatible pointer type tests/runtests.c:394: warning: passing arg 2 of `_run_attribute_check' from incompatible pointer type tests/runtests.c: In function `start_element_event_handler2': tests/runtests.c:444: warning: char format, different type arg (arg 3) tests/runtests.c: In function `end_element_event_handler2': tests/runtests.c:456: warning: char format, different type arg (arg 3) tests/runtests.c: In function `testhelper_is_whitespace_normalized': tests/runtests.c:645: warning: passing arg 1 of `is_whitespace_normalized' from incompatible pointer type tests/runtests.c:646: warning: passing arg 1 of `is_whitespace_normalized' from incompatible pointer type tests/runtests.c:647: warning: passing arg 1 of `is_whitespace_normalized' from incompatible pointer type tests/runtests.c:648: warning: passing arg 1 of `is_whitespace_normalized' from incompatible pointer type tests/runtests.c:649: warning: passing arg 1 of `is_whitespace_normalized' from incompatible pointer type tests/runtests.c:650: warning: passing arg 1 of `is_whitespace_normalized' from incompatible pointer type tests/runtests.c:651: warning: passing arg 1 of `is_whitespace_normalized' from incompatible pointer type tests/runtests.c:652: warning: passing arg 1 of `is_whitespace_normalized' from incompatible pointer type tests/runtests.c:653: warning: passing arg 1 of `is_whitespace_normalized' from incompatible pointer type tests/runtests.c:654: warning: passing arg 1 of `is_whitespace_normalized' from incompatible pointer type tests/runtests.c:655: warning: passing arg 1 of `is_whitespace_normalized' from incompatible pointer type tests/runtests.c:656: warning: passing arg 1 of `is_whitespace_normalized' from incompatible pointer type tests/runtests.c:657: warning: passing arg 1 of `is_whitespace_normalized' from incompatible pointer type tests/runtests.c:658: warning: passing arg 1 of `is_whitespace_normalized' from incompatible pointer type tests/runtests.c:659: warning: passing arg 1 of `is_whitespace_normalized' from incompatible pointer type tests/runtests.c:660: warning: passing arg 1 of `is_whitespace_normalized' from incompatible pointer type tests/runtests.c:661: warning: passing arg 1 of `is_whitespace_normalized' from incompatible pointer type tests/runtests.c:662: warning: passing arg 1 of `is_whitespace_normalized' from incompatible pointer type tests/runtests.c:663: warning: passing arg 1 of `is_whitespace_normalized' from incompatible pointer type tests/runtests.c: In function `check_attr_contains_normalized_whitespace': tests/runtests.c:675: warning: passing arg 2 of `strcmp' from incompatible pointer type tests/runtests.c:676: warning: passing arg 2 of `strcmp' from incompatible pointer type tests/runtests.c:677: warning: passing arg 2 of `strcmp' from incompatible pointer type tests/runtests.c:681: warning: char format, different type arg (arg 3) tests/runtests.c:681: warning: char format, different type arg (arg 4) tests/runtests.c: In function `UnknownEncodingHandler': tests/runtests.c:730: warning: passing arg 1 of `strcmp' from incompatible pointer type tests/runtests.c: In function `external_entity_loader_set_encoding': tests/runtests.c:774: warning: passing arg 2 of `XML_SetEncoding' from incompatible pointer type tests/runtests.c: In function `test_ext_entity_set_encoding': tests/runtests.c:794: warning: passing arg 1 of `_run_character_check' from incompatible pointer type tests/runtests.c:794: warning: passing arg 2 of `_run_character_check' from incompatible pointer type tests/runtests.c: In function `test_dtd_default_handling': tests/runtests.c:933: warning: passing arg 1 of `_run_character_check' from incompatible pointer type tests/runtests.c:933: warning: passing arg 2 of `_run_character_check' from incompatible pointer type tests/runtests.c: In function `triplet_start_checker': tests/runtests.c:1003: warning: passing arg 2 of `strcmp' from incompatible pointer type tests/runtests.c:1004: warning: char format, different type arg (arg 3) tests/runtests.c:1007: warning: passing arg 2 of `strcmp' from incompatible pointer type tests/runtests.c:1008: warning: char format, different type arg (arg 3) tests/runtests.c: In function `triplet_end_checker': tests/runtests.c:1021: warning: passing arg 2 of `strcmp' from incompatible pointer type tests/runtests.c:1023: warning: char format, different type arg (arg 3) tests/runtests.c: In function `main': tests/runtests.c:1427: warning: char format, different type arg (arg 2) gcc -g -O2 -fshort-wchar -Wall -Wmissing-prototypes - Wstrict-prototypes -fexceptions - DHAVE_EXPAT_CONFIG_H - DXML_UNICODE_WCHAR_T -I./lib -I. -o tests/chardata.o -c tests/chardata.c tests/chardata.c: In function `CharData_CheckString': tests/chardata.c:96: warning: char format, different type arg (arg 5) gcc -g -O2 -fshort-wchar -Wall -Wmissing-prototypes - Wstrict-prototypes -fexceptions - DHAVE_EXPAT_CONFIG_H - DXML_UNICODE_WCHAR_T -I./lib -I. -o tests/minicheck.o -c tests/minicheck.c /bin/bash ./libtool --silent --mode=link gcc -g -O2 -fshort- wchar -Wall -Wmissing-prototypes -Wstrict-prototypes - fexceptions -DHAVE_EXPAT_CONFIG_H - DXML_UNICODE_WCHAR_T -I./lib -I. -o tests/runtests tests/runtests.o tests/chardata.o tests/minicheck.o libexpatw.la tests/runtests Assertion failed: !is_whitespace_normalized(" abc def ghi", 0), file tests/runtests.c, line 649 make: *** [check] Abort (core dumped) [me@:/mydir/expat-1.95.8] ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=110127&aid=1238204&group_id=10127 From noreply at sourceforge.net Fri Jul 15 18:06:42 2005 From: noreply at sourceforge.net (SourceForge.net) Date: Fri, 15 Jul 2005 09:06:42 -0700 Subject: [Expat-bugs] [ expat-Bugs-1237648 ] detected recursion whilst expanding macro "XML_STATUS_ERROR" Message-ID: Bugs item #1237648, was opened at 2005-07-13 09:10 Message generated for change (Comment added) made by nobody You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=110127&aid=1237648&group_id=10127 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Build control Group: None Status: Open Resolution: None Priority: 5 Submitted By: Nobody/Anonymous (nobody) Assigned to: Greg Stein (gstein) Summary: detected recursion whilst expanding macro "XML_STATUS_ERROR" Initial Comment: Hi all, I got a problem in installing expat 1.95.7 on Mac os X (darwin). ./configure run ok. make gave one error: /bin/sh ./libtool --silent --mode=compile cc -g -O2 -Wall -Wmissing- prototypes -Wstrict-prototypes -fexceptions - DHAVE_EXPAT_CONFIG_H -traditional-cpp -I./lib -I. -o lib/ xmlparse.lo -c lib/xmlparse.c lib/xmlparse.c:918: error: detected recursion whilst expanding macro "XML_STATUS_ERROR" lib/xmlparse.c:924: error: detected recursion whilst expanding macro "XML_STATUS_ERROR" lib/xmlparse.c:926: error: detected recursion whilst expanding macro "XML_STATUS_OK" lib/xmlparse.c:1157: error: detected recursion whilst expanding macro "XML_STATUS_ERROR" lib/xmlparse.c:1162: error: detected recursion whilst expanding macro "XML_STATUS_OK" lib/xmlparse.c:1404: error: detected recursion whilst expanding macro "XML_STATUS_OK" lib/xmlparse.c:1408: error: detected recursion whilst expanding macro "XML_STATUS_OK" lib/xmlparse.c:1411: error: detected recursion whilst expanding macro "XML_STATUS_ERROR" lib/xmlparse.c:1466: error: detected recursion whilst expanding macro "XML_STATUS_ERROR" lib/xmlparse.c:1488: error: detected recursion whilst expanding macro "XML_STATUS_OK" lib/xmlparse.c:1493: error: detected recursion whilst expanding macro "XML_STATUS_ERROR" make: *** [lib/xmlparse.lo] Error 1 can someone give me a help. Thanks very much. chenhong ---------------------------------------------------------------------- Comment By: Nobody/Anonymous (nobody) Date: 2005-07-15 09:06 Message: Logged In: NO I got the same exact problem when building on OPTERON Any ideas will be welcome thanks ---------------------------------------------------------------------- Comment By: Karl Waclawek (kwaclaw) Date: 2005-07-13 12:02 Message: Logged In: YES user_id=290026 Does it work allright with Expat 1.95.8? ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=110127&aid=1237648&group_id=10127 From noreply at sourceforge.net Fri Jul 15 18:12:10 2005 From: noreply at sourceforge.net (SourceForge.net) Date: Fri, 15 Jul 2005 09:12:10 -0700 Subject: [Expat-bugs] [ expat-Bugs-1237648 ] detected recursion whilst expanding macro "XML_STATUS_ERROR" Message-ID: Bugs item #1237648, was opened at 2005-07-13 09:10 Message generated for change (Comment added) made by nobody You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=110127&aid=1237648&group_id=10127 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Build control Group: None Status: Open Resolution: None Priority: 5 Submitted By: Nobody/Anonymous (nobody) Assigned to: Greg Stein (gstein) Summary: detected recursion whilst expanding macro "XML_STATUS_ERROR" Initial Comment: Hi all, I got a problem in installing expat 1.95.7 on Mac os X (darwin). ./configure run ok. make gave one error: /bin/sh ./libtool --silent --mode=compile cc -g -O2 -Wall -Wmissing- prototypes -Wstrict-prototypes -fexceptions - DHAVE_EXPAT_CONFIG_H -traditional-cpp -I./lib -I. -o lib/ xmlparse.lo -c lib/xmlparse.c lib/xmlparse.c:918: error: detected recursion whilst expanding macro "XML_STATUS_ERROR" lib/xmlparse.c:924: error: detected recursion whilst expanding macro "XML_STATUS_ERROR" lib/xmlparse.c:926: error: detected recursion whilst expanding macro "XML_STATUS_OK" lib/xmlparse.c:1157: error: detected recursion whilst expanding macro "XML_STATUS_ERROR" lib/xmlparse.c:1162: error: detected recursion whilst expanding macro "XML_STATUS_OK" lib/xmlparse.c:1404: error: detected recursion whilst expanding macro "XML_STATUS_OK" lib/xmlparse.c:1408: error: detected recursion whilst expanding macro "XML_STATUS_OK" lib/xmlparse.c:1411: error: detected recursion whilst expanding macro "XML_STATUS_ERROR" lib/xmlparse.c:1466: error: detected recursion whilst expanding macro "XML_STATUS_ERROR" lib/xmlparse.c:1488: error: detected recursion whilst expanding macro "XML_STATUS_OK" lib/xmlparse.c:1493: error: detected recursion whilst expanding macro "XML_STATUS_ERROR" make: *** [lib/xmlparse.lo] Error 1 can someone give me a help. Thanks very much. chenhong ---------------------------------------------------------------------- Comment By: Nobody/Anonymous (nobody) Date: 2005-07-15 09:12 Message: Logged In: NO I actually tried with expat1.95.8 Still have the same problems thanks ---------------------------------------------------------------------- Comment By: Nobody/Anonymous (nobody) Date: 2005-07-15 09:06 Message: Logged In: NO I got the same exact problem when building on OPTERON Any ideas will be welcome thanks ---------------------------------------------------------------------- Comment By: Karl Waclawek (kwaclaw) Date: 2005-07-13 12:02 Message: Logged In: YES user_id=290026 Does it work allright with Expat 1.95.8? ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=110127&aid=1237648&group_id=10127 From noreply at sourceforge.net Fri Jul 15 18:57:11 2005 From: noreply at sourceforge.net (SourceForge.net) Date: Fri, 15 Jul 2005 09:57:11 -0700 Subject: [Expat-bugs] [ expat-Bugs-1237648 ] detected recursion whilst expanding macro "XML_STATUS_ERROR" Message-ID: Bugs item #1237648, was opened at 2005-07-13 12:10 Message generated for change (Comment added) made by kwaclaw You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=110127&aid=1237648&group_id=10127 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Build control Group: None Status: Open Resolution: None Priority: 5 Submitted By: Nobody/Anonymous (nobody) Assigned to: Greg Stein (gstein) Summary: detected recursion whilst expanding macro "XML_STATUS_ERROR" Initial Comment: Hi all, I got a problem in installing expat 1.95.7 on Mac os X (darwin). ./configure run ok. make gave one error: /bin/sh ./libtool --silent --mode=compile cc -g -O2 -Wall -Wmissing- prototypes -Wstrict-prototypes -fexceptions - DHAVE_EXPAT_CONFIG_H -traditional-cpp -I./lib -I. -o lib/ xmlparse.lo -c lib/xmlparse.c lib/xmlparse.c:918: error: detected recursion whilst expanding macro "XML_STATUS_ERROR" lib/xmlparse.c:924: error: detected recursion whilst expanding macro "XML_STATUS_ERROR" lib/xmlparse.c:926: error: detected recursion whilst expanding macro "XML_STATUS_OK" lib/xmlparse.c:1157: error: detected recursion whilst expanding macro "XML_STATUS_ERROR" lib/xmlparse.c:1162: error: detected recursion whilst expanding macro "XML_STATUS_OK" lib/xmlparse.c:1404: error: detected recursion whilst expanding macro "XML_STATUS_OK" lib/xmlparse.c:1408: error: detected recursion whilst expanding macro "XML_STATUS_OK" lib/xmlparse.c:1411: error: detected recursion whilst expanding macro "XML_STATUS_ERROR" lib/xmlparse.c:1466: error: detected recursion whilst expanding macro "XML_STATUS_ERROR" lib/xmlparse.c:1488: error: detected recursion whilst expanding macro "XML_STATUS_OK" lib/xmlparse.c:1493: error: detected recursion whilst expanding macro "XML_STATUS_ERROR" make: *** [lib/xmlparse.lo] Error 1 can someone give me a help. Thanks very much. chenhong ---------------------------------------------------------------------- >Comment By: Karl Waclawek (kwaclaw) Date: 2005-07-15 12:57 Message: Logged In: YES user_id=290026 Looks like a compiler issue. Check out bug # 1171968. Switch to gcc, if possible. ---------------------------------------------------------------------- Comment By: Nobody/Anonymous (nobody) Date: 2005-07-15 12:12 Message: Logged In: NO I actually tried with expat1.95.8 Still have the same problems thanks ---------------------------------------------------------------------- Comment By: Nobody/Anonymous (nobody) Date: 2005-07-15 12:06 Message: Logged In: NO I got the same exact problem when building on OPTERON Any ideas will be welcome thanks ---------------------------------------------------------------------- Comment By: Karl Waclawek (kwaclaw) Date: 2005-07-13 15:02 Message: Logged In: YES user_id=290026 Does it work allright with Expat 1.95.8? ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=110127&aid=1237648&group_id=10127 From noreply at sourceforge.net Fri Jul 15 18:59:14 2005 From: noreply at sourceforge.net (SourceForge.net) Date: Fri, 15 Jul 2005 09:59:14 -0700 Subject: [Expat-bugs] [ expat-Bugs-1237648 ] detected recursion whilst expanding macro "XML_STATUS_ERROR" Message-ID: Bugs item #1237648, was opened at 2005-07-13 09:10 Message generated for change (Comment added) made by nobody You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=110127&aid=1237648&group_id=10127 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Build control Group: None Status: Open Resolution: None Priority: 5 Submitted By: Nobody/Anonymous (nobody) Assigned to: Greg Stein (gstein) Summary: detected recursion whilst expanding macro "XML_STATUS_ERROR" Initial Comment: Hi all, I got a problem in installing expat 1.95.7 on Mac os X (darwin). ./configure run ok. make gave one error: /bin/sh ./libtool --silent --mode=compile cc -g -O2 -Wall -Wmissing- prototypes -Wstrict-prototypes -fexceptions - DHAVE_EXPAT_CONFIG_H -traditional-cpp -I./lib -I. -o lib/ xmlparse.lo -c lib/xmlparse.c lib/xmlparse.c:918: error: detected recursion whilst expanding macro "XML_STATUS_ERROR" lib/xmlparse.c:924: error: detected recursion whilst expanding macro "XML_STATUS_ERROR" lib/xmlparse.c:926: error: detected recursion whilst expanding macro "XML_STATUS_OK" lib/xmlparse.c:1157: error: detected recursion whilst expanding macro "XML_STATUS_ERROR" lib/xmlparse.c:1162: error: detected recursion whilst expanding macro "XML_STATUS_OK" lib/xmlparse.c:1404: error: detected recursion whilst expanding macro "XML_STATUS_OK" lib/xmlparse.c:1408: error: detected recursion whilst expanding macro "XML_STATUS_OK" lib/xmlparse.c:1411: error: detected recursion whilst expanding macro "XML_STATUS_ERROR" lib/xmlparse.c:1466: error: detected recursion whilst expanding macro "XML_STATUS_ERROR" lib/xmlparse.c:1488: error: detected recursion whilst expanding macro "XML_STATUS_OK" lib/xmlparse.c:1493: error: detected recursion whilst expanding macro "XML_STATUS_ERROR" make: *** [lib/xmlparse.lo] Error 1 can someone give me a help. Thanks very much. chenhong ---------------------------------------------------------------------- Comment By: Nobody/Anonymous (nobody) Date: 2005-07-15 09:59 Message: Logged In: NO I actually tried with expat1.95.8 Still have the same problems thanks ---------------------------------------------------------------------- Comment By: Karl Waclawek (kwaclaw) Date: 2005-07-15 09:57 Message: Logged In: YES user_id=290026 Looks like a compiler issue. Check out bug # 1171968. Switch to gcc, if possible. ---------------------------------------------------------------------- Comment By: Nobody/Anonymous (nobody) Date: 2005-07-15 09:12 Message: Logged In: NO I actually tried with expat1.95.8 Still have the same problems thanks ---------------------------------------------------------------------- Comment By: Nobody/Anonymous (nobody) Date: 2005-07-15 09:06 Message: Logged In: NO I got the same exact problem when building on OPTERON Any ideas will be welcome thanks ---------------------------------------------------------------------- Comment By: Karl Waclawek (kwaclaw) Date: 2005-07-13 12:02 Message: Logged In: YES user_id=290026 Does it work allright with Expat 1.95.8? ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=110127&aid=1237648&group_id=10127 From noreply at sourceforge.net Sat Jul 16 10:20:10 2005 From: noreply at sourceforge.net (SourceForge.net) Date: Sat, 16 Jul 2005 01:20:10 -0700 Subject: [Expat-bugs] [ expat-Bugs-1237648 ] detected recursion whilst expanding macro "XML_STATUS_ERROR" Message-ID: Bugs item #1237648, was opened at 2005-07-13 12:10 Message generated for change (Comment added) made by kwaclaw You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=110127&aid=1237648&group_id=10127 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Build control Group: None Status: Open Resolution: None Priority: 5 Submitted By: Nobody/Anonymous (nobody) Assigned to: Greg Stein (gstein) Summary: detected recursion whilst expanding macro "XML_STATUS_ERROR" Initial Comment: Hi all, I got a problem in installing expat 1.95.7 on Mac os X (darwin). ./configure run ok. make gave one error: /bin/sh ./libtool --silent --mode=compile cc -g -O2 -Wall -Wmissing- prototypes -Wstrict-prototypes -fexceptions - DHAVE_EXPAT_CONFIG_H -traditional-cpp -I./lib -I. -o lib/ xmlparse.lo -c lib/xmlparse.c lib/xmlparse.c:918: error: detected recursion whilst expanding macro "XML_STATUS_ERROR" lib/xmlparse.c:924: error: detected recursion whilst expanding macro "XML_STATUS_ERROR" lib/xmlparse.c:926: error: detected recursion whilst expanding macro "XML_STATUS_OK" lib/xmlparse.c:1157: error: detected recursion whilst expanding macro "XML_STATUS_ERROR" lib/xmlparse.c:1162: error: detected recursion whilst expanding macro "XML_STATUS_OK" lib/xmlparse.c:1404: error: detected recursion whilst expanding macro "XML_STATUS_OK" lib/xmlparse.c:1408: error: detected recursion whilst expanding macro "XML_STATUS_OK" lib/xmlparse.c:1411: error: detected recursion whilst expanding macro "XML_STATUS_ERROR" lib/xmlparse.c:1466: error: detected recursion whilst expanding macro "XML_STATUS_ERROR" lib/xmlparse.c:1488: error: detected recursion whilst expanding macro "XML_STATUS_OK" lib/xmlparse.c:1493: error: detected recursion whilst expanding macro "XML_STATUS_ERROR" make: *** [lib/xmlparse.lo] Error 1 can someone give me a help. Thanks very much. chenhong ---------------------------------------------------------------------- >Comment By: Karl Waclawek (kwaclaw) Date: 2005-07-16 04:20 Message: Logged In: YES user_id=290026 Which compiler are you using? Try to update the compiler, if possible. ---------------------------------------------------------------------- Comment By: Nobody/Anonymous (nobody) Date: 2005-07-15 12:59 Message: Logged In: NO I actually tried with expat1.95.8 Still have the same problems thanks ---------------------------------------------------------------------- Comment By: Karl Waclawek (kwaclaw) Date: 2005-07-15 12:57 Message: Logged In: YES user_id=290026 Looks like a compiler issue. Check out bug # 1171968. Switch to gcc, if possible. ---------------------------------------------------------------------- Comment By: Nobody/Anonymous (nobody) Date: 2005-07-15 12:12 Message: Logged In: NO I actually tried with expat1.95.8 Still have the same problems thanks ---------------------------------------------------------------------- Comment By: Nobody/Anonymous (nobody) Date: 2005-07-15 12:06 Message: Logged In: NO I got the same exact problem when building on OPTERON Any ideas will be welcome thanks ---------------------------------------------------------------------- Comment By: Karl Waclawek (kwaclaw) Date: 2005-07-13 15:02 Message: Logged In: YES user_id=290026 Does it work allright with Expat 1.95.8? ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=110127&aid=1237648&group_id=10127 From noreply at sourceforge.net Tue Jul 19 23:02:49 2005 From: noreply at sourceforge.net (SourceForge.net) Date: Tue, 19 Jul 2005 14:02:49 -0700 Subject: [Expat-bugs] [ expat-Bugs-1238204 ] Make check for expat-1.95.8 fails Message-ID: Bugs item #1238204, was opened at 2005-07-14 09:39 Message generated for change (Comment added) made by abhijitkankaria You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=110127&aid=1238204&group_id=10127 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: www.libexpat.org Group: Test Required Status: Open Resolution: None Priority: 5 Submitted By: abhijitk (abhijitkankaria) Assigned to: Fred L. Drake, Jr. (fdrake) Summary: Make check for expat-1.95.8 fails Initial Comment: I have build expat 1.95.8 on Solaris 2.8 with the follwoing option: For UTF-16 output as wchar_t (incl. version/error strings),run: ./configure CFLAGS="-g -O2 -fshort-wchar" CPPFLAGS=-DXML_UNICODE_WCHAR_T It builds successfilly, now i want to run the test for expat it gives the following result as below: [me@:/mydir/expat-1.95.8] make check gcc -g -O2 -fshort-wchar -Wall -Wmissing-prototypes - Wstrict-prototypes -fexceptions - DHAVE_EXPAT_CONFIG_H - DXML_UNICODE_WCHAR_T -I./lib -I. -o tests/runtests.o -c tests/runtests.c tests/runtests.c: In function `_xml_failure': tests/runtests.c:57: warning: char format, different type arg (arg 3) tests/runtests.c: In function `_run_character_check': tests/runtests.c:225: warning: passing arg 1 of `strlen' from incompatible pointer type tests/runtests.c:225: warning: passing arg 2 of `XML_Parse' from incompatible pointer type tests/runtests.c: In function `_run_attribute_check': tests/runtests.c:242: warning: passing arg 1 of `strlen' from incompatible pointer type tests/runtests.c:242: warning: passing arg 2 of `XML_Parse' from incompatible pointer type tests/runtests.c: In function `test_danish_latin1': tests/runtests.c:256: warning: passing arg 1 of `_run_character_check' from incompatible pointer type tests/runtests.c:256: warning: passing arg 2 of `_run_character_check' from incompatible pointer type tests/runtests.c: In function `test_french_charref_hexidecimal': tests/runtests.c:268: warning: passing arg 1 of `_run_character_check' from incompatible pointer type tests/runtests.c:268: warning: passing arg 2 of `_run_character_check' from incompatible pointer type tests/runtests.c: In function `test_french_charref_decimal': tests/runtests.c:278: warning: passing arg 1 of `_run_character_check' from incompatible pointer type tests/runtests.c:278: warning: passing arg 2 of `_run_character_check' from incompatible pointer type tests/runtests.c: In function `test_french_latin1': tests/runtests.c:288: warning: passing arg 1 of `_run_character_check' from incompatible pointer type tests/runtests.c:288: warning: passing arg 2 of `_run_character_check' from incompatible pointer type tests/runtests.c: In function `test_french_utf8': tests/runtests.c:298: warning: passing arg 1 of `_run_character_check' from incompatible pointer type tests/runtests.c:298: warning: passing arg 2 of `_run_character_check' from incompatible pointer type tests/runtests.c: In function `test_utf8_false_rejection': tests/runtests.c:310: warning: passing arg 1 of `_run_character_check' from incompatible pointer type tests/runtests.c:310: warning: passing arg 2 of `_run_character_check' from incompatible pointer type tests/runtests.c: In function `test_latin1_umlauts': tests/runtests.c:392: warning: passing arg 1 of `_run_character_check' from incompatible pointer type tests/runtests.c:392: warning: passing arg 2 of `_run_character_check' from incompatible pointer type tests/runtests.c:394: warning: passing arg 1 of `_run_attribute_check' from incompatible pointer type tests/runtests.c:394: warning: passing arg 2 of `_run_attribute_check' from incompatible pointer type tests/runtests.c: In function `start_element_event_handler2': tests/runtests.c:444: warning: char format, different type arg (arg 3) tests/runtests.c: In function `end_element_event_handler2': tests/runtests.c:456: warning: char format, different type arg (arg 3) tests/runtests.c: In function `testhelper_is_whitespace_normalized': tests/runtests.c:645: warning: passing arg 1 of `is_whitespace_normalized' from incompatible pointer type tests/runtests.c:646: warning: passing arg 1 of `is_whitespace_normalized' from incompatible pointer type tests/runtests.c:647: warning: passing arg 1 of `is_whitespace_normalized' from incompatible pointer type tests/runtests.c:648: warning: passing arg 1 of `is_whitespace_normalized' from incompatible pointer type tests/runtests.c:649: warning: passing arg 1 of `is_whitespace_normalized' from incompatible pointer type tests/runtests.c:650: warning: passing arg 1 of `is_whitespace_normalized' from incompatible pointer type tests/runtests.c:651: warning: passing arg 1 of `is_whitespace_normalized' from incompatible pointer type tests/runtests.c:652: warning: passing arg 1 of `is_whitespace_normalized' from incompatible pointer type tests/runtests.c:653: warning: passing arg 1 of `is_whitespace_normalized' from incompatible pointer type tests/runtests.c:654: warning: passing arg 1 of `is_whitespace_normalized' from incompatible pointer type tests/runtests.c:655: warning: passing arg 1 of `is_whitespace_normalized' from incompatible pointer type tests/runtests.c:656: warning: passing arg 1 of `is_whitespace_normalized' from incompatible pointer type tests/runtests.c:657: warning: passing arg 1 of `is_whitespace_normalized' from incompatible pointer type tests/runtests.c:658: warning: passing arg 1 of `is_whitespace_normalized' from incompatible pointer type tests/runtests.c:659: warning: passing arg 1 of `is_whitespace_normalized' from incompatible pointer type tests/runtests.c:660: warning: passing arg 1 of `is_whitespace_normalized' from incompatible pointer type tests/runtests.c:661: warning: passing arg 1 of `is_whitespace_normalized' from incompatible pointer type tests/runtests.c:662: warning: passing arg 1 of `is_whitespace_normalized' from incompatible pointer type tests/runtests.c:663: warning: passing arg 1 of `is_whitespace_normalized' from incompatible pointer type tests/runtests.c: In function `check_attr_contains_normalized_whitespace': tests/runtests.c:675: warning: passing arg 2 of `strcmp' from incompatible pointer type tests/runtests.c:676: warning: passing arg 2 of `strcmp' from incompatible pointer type tests/runtests.c:677: warning: passing arg 2 of `strcmp' from incompatible pointer type tests/runtests.c:681: warning: char format, different type arg (arg 3) tests/runtests.c:681: warning: char format, different type arg (arg 4) tests/runtests.c: In function `UnknownEncodingHandler': tests/runtests.c:730: warning: passing arg 1 of `strcmp' from incompatible pointer type tests/runtests.c: In function `external_entity_loader_set_encoding': tests/runtests.c:774: warning: passing arg 2 of `XML_SetEncoding' from incompatible pointer type tests/runtests.c: In function `test_ext_entity_set_encoding': tests/runtests.c:794: warning: passing arg 1 of `_run_character_check' from incompatible pointer type tests/runtests.c:794: warning: passing arg 2 of `_run_character_check' from incompatible pointer type tests/runtests.c: In function `test_dtd_default_handling': tests/runtests.c:933: warning: passing arg 1 of `_run_character_check' from incompatible pointer type tests/runtests.c:933: warning: passing arg 2 of `_run_character_check' from incompatible pointer type tests/runtests.c: In function `triplet_start_checker': tests/runtests.c:1003: warning: passing arg 2 of `strcmp' from incompatible pointer type tests/runtests.c:1004: warning: char format, different type arg (arg 3) tests/runtests.c:1007: warning: passing arg 2 of `strcmp' from incompatible pointer type tests/runtests.c:1008: warning: char format, different type arg (arg 3) tests/runtests.c: In function `triplet_end_checker': tests/runtests.c:1021: warning: passing arg 2 of `strcmp' from incompatible pointer type tests/runtests.c:1023: warning: char format, different type arg (arg 3) tests/runtests.c: In function `main': tests/runtests.c:1427: warning: char format, different type arg (arg 2) gcc -g -O2 -fshort-wchar -Wall -Wmissing-prototypes - Wstrict-prototypes -fexceptions - DHAVE_EXPAT_CONFIG_H - DXML_UNICODE_WCHAR_T -I./lib -I. -o tests/chardata.o -c tests/chardata.c tests/chardata.c: In function `CharData_CheckString': tests/chardata.c:96: warning: char format, different type arg (arg 5) gcc -g -O2 -fshort-wchar -Wall -Wmissing-prototypes - Wstrict-prototypes -fexceptions - DHAVE_EXPAT_CONFIG_H - DXML_UNICODE_WCHAR_T -I./lib -I. -o tests/minicheck.o -c tests/minicheck.c /bin/bash ./libtool --silent --mode=link gcc -g -O2 -fshort- wchar -Wall -Wmissing-prototypes -Wstrict-prototypes - fexceptions -DHAVE_EXPAT_CONFIG_H - DXML_UNICODE_WCHAR_T -I./lib -I. -o tests/runtests tests/runtests.o tests/chardata.o tests/minicheck.o libexpatw.la tests/runtests Assertion failed: !is_whitespace_normalized(" abc def ghi", 0), file tests/runtests.c, line 649 make: *** [check] Abort (core dumped) [me@:/mydir/expat-1.95.8] ---------------------------------------------------------------------- >Comment By: abhijitk (abhijitkankaria) Date: 2005-07-19 17:02 Message: Logged In: YES user_id=1312629 I did some study on this and my theory is that may be the test code of expat is not updated to support wchar_t, I have build the expat with -fshore_wchar and -DXML_UNICODE_WCHAR_T compiler option, but in the test code the input values to functions are passed as XML_Char i.e wchar_t in my case, infact this should be char as expat library takes input as char and not wide char. It gives a bunch of warnings while compilation like mentioned below and results in segmentation fault during execution of tests. tests/runtests.c: In function `end_element_event_handler2': tests/runtests.c:456: warning: char format, different type arg (arg 3) tests/runtests.c: In function `testhelper_is_whitespace_normalized': tests/runtests.c:645: warning: passing arg 1 of `is_whitespace_normalized' from incompatible pointer type Also when expat is build it uses the libtool to create the library (libexpatw.la) and while compiling the tests for expat using "make check" it used the object files created by gcc compiler with ext .o and library created by libtool with extension .la. According to the manual of libtool this type of combination should not compile, but in this case it does compile and result in segmentation fault while execution. I tried modifying the make file of expat to build object files with .lo using libtool for the test files instead of .o using gcc compiler, but it gives the same result of segmentation fault. 2. I modified the current test files for expat to have input as char instead of XML_Char i.e. wchar_t as per the compiler options. Now the test (tests/runtests) of expat executes with no segmentation fault but all of them are not successful. [me@:/mydir/expat-1.95.8] tests/runtests 66%: Checks: 48, Failed: 16 [me@:/mydir/expat-1.95.8] ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=110127&aid=1238204&group_id=10127 From noreply at sourceforge.net Wed Jul 20 00:59:31 2005 From: noreply at sourceforge.net (SourceForge.net) Date: Tue, 19 Jul 2005 15:59:31 -0700 Subject: [Expat-bugs] [ expat-Bugs-1241242 ] v1.95.8: expat_external.h does not get installed Message-ID: Bugs item #1241242, was opened at 2005-07-19 15:59 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=110127&aid=1241242&group_id=10127 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Build control Group: None Status: Open Resolution: None Priority: 5 Submitted By: Nobody/Anonymous (nobody) Assigned to: Greg Stein (gstein) Summary: v1.95.8: expat_external.h does not get installed Initial Comment: command executed during make install (from "make" output): conftools/install-sh -c -m 644 ./lib/expat.h ./lib/expat_external.h /apps/apache/v0.4 .5_20050518-1531/usrlocal/include Info in the first few lines of install-sh mentions that "It can only install one file at a time." File expat_external.h is not found in the destination include dir. Following changes to Makefile seem to fix (relevant lines quoted): ... APIHEADER = $(srcdir)/lib/expat.h APIHEADER2 = $(srcdir)/lib/expat_external.h ... $(INSTALL_DATA) $(APIHEADER) $(includedir) $(INSTALL_DATA) $(APIHEADER2) $(includedir) ... rm -f $(includedir)/$(APIHEADER) $(includedir)/ $(APIHEADER2) ... Build environment: Solaris 8 GCC 3.4.2 GNU make 3.80 Regards, Lieven DeBock ldb125 \a/t\ gmail /d\o/t\ com ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=110127&aid=1241242&group_id=10127 From noreply at sourceforge.net Wed Jul 20 03:06:29 2005 From: noreply at sourceforge.net (SourceForge.net) Date: Tue, 19 Jul 2005 18:06:29 -0700 Subject: [Expat-bugs] [ expat-Bugs-1241242 ] v1.95.8: expat_external.h does not get installed Message-ID: Bugs item #1241242, was opened at 2005-07-19 15:59 Message generated for change (Comment added) made by nobody You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=110127&aid=1241242&group_id=10127 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Build control Group: None Status: Open Resolution: None Priority: 5 Submitted By: Nobody/Anonymous (nobody) Assigned to: Greg Stein (gstein) Summary: v1.95.8: expat_external.h does not get installed Initial Comment: command executed during make install (from "make" output): conftools/install-sh -c -m 644 ./lib/expat.h ./lib/expat_external.h /apps/apache/v0.4 .5_20050518-1531/usrlocal/include Info in the first few lines of install-sh mentions that "It can only install one file at a time." File expat_external.h is not found in the destination include dir. Following changes to Makefile seem to fix (relevant lines quoted): ... APIHEADER = $(srcdir)/lib/expat.h APIHEADER2 = $(srcdir)/lib/expat_external.h ... $(INSTALL_DATA) $(APIHEADER) $(includedir) $(INSTALL_DATA) $(APIHEADER2) $(includedir) ... rm -f $(includedir)/$(APIHEADER) $(includedir)/ $(APIHEADER2) ... Build environment: Solaris 8 GCC 3.4.2 GNU make 3.80 Regards, Lieven DeBock ldb125 \a/t\ gmail /d\o/t\ com ---------------------------------------------------------------------- Comment By: Nobody/Anonymous (nobody) Date: 2005-07-19 18:06 Message: Logged In: NO Please disregard - duplicates 1177957 Lieven DeBock ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=110127&aid=1241242&group_id=10127 From noreply at sourceforge.net Wed Jul 20 15:08:42 2005 From: noreply at sourceforge.net (SourceForge.net) Date: Wed, 20 Jul 2005 06:08:42 -0700 Subject: [Expat-bugs] [ expat-Bugs-1241534 ] Support for special character set Message-ID: Bugs item #1241534, was opened at 2005-07-20 15:08 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=110127&aid=1241534&group_id=10127 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: Feature Request Status: Open Resolution: None Priority: 5 Submitted By: Sukender (sukender) Assigned to: Nobody/Anonymous (nobody) Summary: Support for special character set Initial Comment: I'm not sure, but I think some charcters produce errors. If you try you'll have a parsing error. Try a word with "?" and then replace it by "e" : the error disapear. It's perhaps a problem with my program but it's a strange behaviour ! ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=110127&aid=1241534&group_id=10127