From noreply at sourceforge.net Thu Sep 8 03:01:20 2005 From: noreply at sourceforge.net (SourceForge.net) Date: Wed, 07 Sep 2005 18:01:20 -0700 Subject: [Expat-bugs] [ expat-Bugs-1284386 ] Byte count in large XML files fails Message-ID: Bugs item #1284386, was opened at 2005-09-08 01:01 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=1284386&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: Rolf Ade (pointsman) Assigned to: Nobody/Anonymous (nobody) Summary: Byte count in large XML files fails Initial Comment: XML_GetCurrentByteIndex(XML_Parser parser) returns a long, which is at least on the most 32 bit Systems 32 bit long. That means, for XML input larger than 2 GByte file size, XML_GetCurrentByteIndex() returns does not return the right number. Sure, such big XML files will be parsed in chunks, so it is possbile, to keep track about the nr of overflows by self, but come on. It's surely a limbo dance by its own to introcude long long in a source, so portable as expat, but that would be it. If you switch to long long if avaliable for this, please consider also XML_GetCurrentLineNumber() and XML_GetCurrentColumnNumber(). They return an int, which is on most 32-byte systems 2 Gig. Though, I'm not stumbled over this two limits in real life, as I in fact did with XML_GetCurrentByteIndex(). ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=110127&aid=1284386&group_id=10127 From noreply at sourceforge.net Thu Sep 8 22:25:57 2005 From: noreply at sourceforge.net (SourceForge.net) Date: Thu, 08 Sep 2005 13:25:57 -0700 Subject: [Expat-bugs] [ expat-Bugs-1285336 ] Build from IIDE Visual 7.0 7.1 Message-ID: Bugs item #1285336, was opened at 2005-09-08 13:25 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=1285336&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: Build from IIDE Visual 7.0 7.1 Initial Comment: 1) In IDE project elements sample is incorrectly constructed as DLL. 2) for subproject expatw_static In Project/Properties/ C++/ Preprocessor/Preprocessor Definitions XML_UNICODE_WCHAR_T is not set. As a result static library for unicode does not buit properly ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=110127&aid=1285336&group_id=10127 From noreply at sourceforge.net Fri Sep 9 00:38:15 2005 From: noreply at sourceforge.net (SourceForge.net) Date: Thu, 08 Sep 2005 15:38:15 -0700 Subject: [Expat-bugs] [ expat-Bugs-1285336 ] Build from IIDE Visual 7.0 7.1 Message-ID: Bugs item #1285336, was opened at 2005-09-08 16:25 Message generated for change (Comment added) made by kwaclaw You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=110127&aid=1285336&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: Karl Waclawek (kwaclaw) Summary: Build from IIDE Visual 7.0 7.1 Initial Comment: 1) In IDE project elements sample is incorrectly constructed as DLL. 2) for subproject expatw_static In Project/Properties/ C++/ Preprocessor/Preprocessor Definitions XML_UNICODE_WCHAR_T is not set. As a result static library for unicode does not buit properly ---------------------------------------------------------------------- >Comment By: Karl Waclawek (kwaclaw) Date: 2005-09-08 18:38 Message: Logged In: YES user_id=290026 The actual project files in CVS are for VS 6.0. I checked - opening the expat workspace in VS 6.0 - and the project settings are correct there. I therefore assume that the import into VS 7 was faulty. Try refreshing from CVS and re-importing the workspace. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=110127&aid=1285336&group_id=10127 From jason.byrne at ucr.edu Thu Sep 22 00:32:24 2005 From: jason.byrne at ucr.edu (Jason Byrne) Date: Wed, 21 Sep 2005 15:32:24 -0700 Subject: [Expat-bugs] expat 1.95.8 Makefile.in patch (installib, APIHEADER related) Message-ID: <20050921223224.GA21196@helike.ucr.edu> Hello, I just compiled/installed expat-1.95.8 on Solaris 9, and noticed what I believe is an install-sh issue... single file install functionality vs. multiple file APIHEADER expansion. Patch attached... Thanks, - Jason -------------- next part -------------- --- Makefile.in.dist Wed Sep 21 15:05:24 2005 +++ Makefile.in Wed Sep 21 15:10:44 2005 @@ -80,7 +80,9 @@ installlib: $(LIBRARY) $(APIHEADER) $(mkinstalldirs) $(libdir) $(includedir) $(LIBTOOL) --mode=install $(INSTALL) $(LIBRARY) $(libdir)/$(LIBRARY) - $(INSTALL_DATA) $(APIHEADER) $(includedir) + @for f in $(APIHEADER); do \ + $(INSTALL_DATA) $$f $(includedir) ; \ + done uninstall: uninstalllib $(LIBTOOL) --mode=uninstall rm -f $(bindir)/xmlwf