From dwinkler@virtual-ink.com Thu Feb 1 23:10:26 2001 From: dwinkler@virtual-ink.com (Dan Winkler) Date: Thu, 1 Feb 2001 18:10:26 -0500 Subject: [Expat-discuss] expat on the Mac Message-ID: <64AFC0D37B2ED411BAB300508B6D90A019AC02@mail.virtual-ink.com> I'm trying to port the source to the macintosh OSX. Was wondering if anyone has done this before with metrowerks Codewarrior? Any info on this would be appreciated. Thanks -Dan Winkler From fdrake@acm.org Fri Feb 2 04:16:26 2001 From: fdrake@acm.org (Fred L. Drake, Jr.) Date: Thu, 1 Feb 2001 23:16:26 -0500 (EST) Subject: [Expat-discuss] expat on the Mac In-Reply-To: <64AFC0D37B2ED411BAB300508B6D90A019AC02@mail.virtual-ink.com> References: <64AFC0D37B2ED411BAB300508B6D90A019AC02@mail.virtual-ink.com> Message-ID: <14970.13466.995960.773068@cj42289-a.reston1.va.home.com> Dan Winkler writes: > I'm trying to port the source to the macintosh OSX. Was wondering if anyone > has done this before with metrowerks Codewarrior? Any info on this would be > appreciated. Thanks Alas, I've no access to a MacOS box of any flavor, including MacOSX. If someone can send me the hardware, beta version of the OS, and development tools, I'll be glad to give it a whirl. ;-) -Fred -- Fred L. Drake, Jr. PythonLabs at Digital Creations From dev@humph.com Fri Feb 2 11:17:06 2001 From: dev@humph.com (Giuliano Gavazzi) Date: Fri, 2 Feb 2001 11:17:06 +0000 Subject: [Expat-discuss] expat on the Mac In-Reply-To: <64AFC0D37B2ED411BAB300508B6D90A019AC02@mail.virtual-ink.com> References: <64AFC0D37B2ED411BAB300508B6D90A019AC02@mail.virtual-ink.com> Message-ID: At 6:10 pm -0500 2001/02/01, Dan Winkler wrote: >I'm trying to port the source to the macintosh OSX. Was wondering if anyone >has done this before with metrowerks Codewarrior? Any info on this would be >appreciated. Thanks the list archives are very dodgy, they have completely erased traces of my message "expat on MacOS Classic and X" that I sent on the 18th of December. Here is my old message (with some editing), note that I did not use codewarrior, but since I also have a CW Mac Classic project, the step to a multitarget project is small: Hi all, [...] Well, expat_1.95.1 compiles fine and seems to run fine on X Beta as long as you install autoconf (required by the build process). Just do: autoconf ./configure make make install I tested outline.c and it works fine on a couple of test xml. I then wanted to see if it worked also on MacOS Classic (for the moment just PPC, but of course should also work on Carbon, as there should be no differences in standard C). [I tested a Carbon version too]. It compiles with some warnings and it produces a working library, again tested compiling outline.c. This requires a few modifications as there is no Makefile involved (I used CodeWarrior). Also outline.c required a few changes, mainly because I had no time to see how to make stdin to work properly in this particular case. I read the input from a file instead of stdin and the parsing worked as expected. [...] Thanks for the attention Giuliano -- H U M P H || ||| software development of: Java & C++ Server/Client/Human Interface applications on MacOS - MacOS X http://www.humph.com/ From sam@uchicago.edu Fri Feb 2 17:10:44 2001 From: sam@uchicago.edu (Sam TH) Date: Fri, 2 Feb 2001 11:10:44 -0600 Subject: [Expat-discuss] Lots of Patches Message-ID: <20010202111044.A23394@uchicago.edu> ---------------------- multipart/signed attachment --vkogqOf2sHV7VnPd Well, I had a little spare time, so I fixed the non-platform specific bugs listed in the bug tracker, and made everything compile (including the three applications). =20 Attached are a number of files. =20 beos.diff fixes expat.h so that you can compile on BeOS systems. makefile.diff changes several Makefiles to build properly configure.diff changes the configure script so that it only builds makefile for the directories that exist, and so that it builds makefiles for all the necessary directories. 12367.diff is an untested bugfix for that bug. It's just using the diff from the webpage. If anyone has a way to test this, I would be grateful. Makefile.in is for the samples/ directory. If people have questions or comments, I'm happy to hear them. =20 =20 sam th =20 sam@uchicago.edu http://www.abisource.com/~sam/ GnuPG Key: =20 http://www.abisource.com/~sam/key --vkogqOf2sHV7VnPd Index: lib/xmltok.c =================================================================== RCS file: /cvsroot/expat/expat/lib/xmltok.c,v retrieving revision 1.5 diff -u -r1.5 xmltok.c --- lib/xmltok.c 2000/10/22 19:20:23 1.5 +++ lib/xmltok.c 2001/02/02 17:05:43 @@ -1500,6 +1500,7 @@ if (ptr + 2 == end) return XML_TOK_PARTIAL; if ((unsigned char)ptr[2] == 0xBF) { + *nextTokPtr = ptr + 3; *encPtr = encodingTable[UTF_8_ENC]; return XML_TOK_BOM; } --vkogqOf2sHV7VnPd ################################################################ # Process this file with top-level configure script to produce Makefile # # Copyright 2000 Clark Cooper # # This file is part of EXPAT. # # EXPAT is free software; you can redistribute it and/or modify it # under the terms of the License (based on the MIT/X license) contained # in the file COPYING that comes with this distribution. # # EXPAT IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. # IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY # CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, # TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE # SOFTWARE OR THE USE OR OTHER DEALINGS IN EXPAT. # LIBDIR =3D ../lib/.libs INCDIR =3D ../lib LDFLAGS =3D @LDFLAGS@ -static=20 LIBS =3D -L$(LIBDIR) -lexpat CFLAGS =3D @CFLAGS@ -I$(INCDIR) srcdir =3D @srcdir@ top_srcdir =3D @top_srcdir@ VPATH =3D @srcdir@ all: elements elements: elements.o $(CC) -o elements elements.o $(LDFLAGS) $(LIBS) clean: rm -f elements core *.o --vkogqOf2sHV7VnPd Index: lib/expat.h =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /cvsroot/expat/expat/lib/expat.h,v retrieving revision 1.11 diff -u -r1.11 expat.h --- lib/expat.h 2001/01/24 19:37:36 1.11 +++ lib/expat.h 2001/02/02 17:06:00 @@ -9,7 +9,7 @@ #include =20 #ifndef XMLPARSEAPI -# ifdef __declspec +# if def(__declspec) && !defined(__BEOS__) # define XMLPARSEAPI __declspec(dllimport) # else # define XMLPARSEAPI /* nothing */ --vkogqOf2sHV7VnPd Index: configure.in =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /cvsroot/expat/expat/configure.in,v retrieving revision 1.10 diff -u -r1.10 configure.in --- configure.in 2001/01/24 19:42:05 1.10 +++ configure.in 2001/02/02 17:07:13 @@ -87,4 +87,18 @@ =20 AC_CHECK_FUNCS(memmove bcopy) =20 -AC_OUTPUT(Makefile lib/Makefile lib/expat.h xmlwf/Makefile examples/Makefi= le) +OUTPUT=3D"Makefile lib/Makefile lib/expat.h" + +if test -d xmlwf; then +OUTPUT=3D$OUTPUT" xmlwf/Makefile" +fi + +if test -d sample; then +OUTPUT=3D$OUTPUT" sample/Makefile" +fi + +if test -d examples; then +OUTPUT=3D$OUTPUT" examples/Makefile" +fi + +AC_OUTPUT($OUTPUT) --vkogqOf2sHV7VnPd Index: sample/elements.c =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /cvsroot/expat/expat/sample/elements.c,v retrieving revision 1.3 diff -u -r1.3 elements.c --- sample/elements.c 2000/04/21 04:20:31 1.3 +++ sample/elements.c 2001/02/02 17:06:43 @@ -4,7 +4,7 @@ one tab stop more than their parent element. */ =20 #include -#include "xmlparse.h" +#include "expat.h" =20 void startElement(void *userData, const char *name, const char **atts) { Index: Makefile.in =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /cvsroot/expat/expat/Makefile.in,v retrieving revision 1.6 diff -u -r1.6 Makefile.in --- Makefile.in 2000/12/27 18:08:15 1.6 +++ Makefile.in 2001/02/02 17:06:43 @@ -76,13 +76,15 @@ RANLIB =3D @RANLIB@ VERSION =3D @VERSION@ =20 -SUBDIRS =3D lib +SUBDIRS =3D lib examples sample xmlwf ACLOCAL_M4 =3D $(top_srcdir)/aclocal.m4 CONFIG_HEADERS =3D config.h:config.hin =20 DISTDIR =3D $(PACKAGE)-$(VERSION) DISTRIBUTION =3D $(DISTDIR).tar.gz =20 +buildlib: lib + all: $(SUBDIRS) =20 .PHONY: all $(SUBDIRS) clean distclean maintainer-clean dist install \ @@ -119,7 +121,7 @@ @list=3D'$(SUBDIRS)'; for dir in $$list; do \ cd $$dir; $(MAKE) distclean; cd ..; \ done - rm -f config.h config.status config.log libtool examples/Makefile xmlwf/M= akefile + rm -f config.h config.status config.log libtool examples/Makefile xmlwf/M= akefile sample/Makefile=20 =20 maintainer-clean: distclean rm -f $(DISTRIBUTION) Index: examples/Makefile.in =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /cvsroot/expat/expat/examples/Makefile.in,v retrieving revision 1.1 diff -u -r1.1 Makefile.in --- examples/Makefile.in 2000/09/18 16:26:21 1.1 +++ examples/Makefile.in 2001/02/02 17:06:43 @@ -18,12 +18,23 @@ # SOFTWARE OR THE USE OR OTHER DEALINGS IN EXPAT. # =20 +LIBDIR =3D ../lib/.libs +INCDIR =3D ../lib + CPPFLAGS =3D @CPPFLAGS@ -LDFLAGS =3D @LDFLAGS@ -LIBS =3D -lexpat -CFLAGS =3D @CFLAGS@ +LDFLAGS =3D @LDFLAGS@ -static +LIBS =3D -L$(LIBDIR) -lexpat=20 +CFLAGS =3D @CFLAGS@ -I$(INCDIR) + +srcdir =3D @srcdir@ +top_srcdir =3D @top_srcdir@ +VPATH =3D @srcdir@ =20 + all: outline =20 outline: outline.o - $(CC) -o outline outline.o $(LDFLAGS) $(LIBS) \ No newline at end of file + $(CC) -o outline outline.o $(LDFLAGS) $(LIBS) + +clean: + rm -f outline core *.o Index: xmlwf/Makefile.in =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /cvsroot/expat/expat/xmlwf/Makefile.in,v retrieving revision 1.2 diff -u -r1.2 Makefile.in --- xmlwf/Makefile.in 2000/09/28 19:47:34 1.2 +++ xmlwf/Makefile.in 2001/02/02 17:06:43 @@ -1,15 +1,41 @@ +################################################################ +# Process this file with top-level configure script to produce Makefile +# +# Copyright 2000 Clark Cooper +# +# This file is part of EXPAT. +# +# EXPAT is free software; you can redistribute it and/or modify it +# under the terms of the License (based on the MIT/X license) contained +# in the file COPYING that comes with this distribution. +# +# EXPAT IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +# IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +# CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +# TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +# SOFTWARE OR THE USE OR OTHER DEALINGS IN EXPAT. +# + LIBDIR=3D ../lib/.libs INCDIR=3D ../lib =20 -LDFLAGS=3D @LDFLAGS@ +LDFLAGS=3D @LDFLAGS@ -static CFLAGS=3D @CFLAGS@ -I$(INCDIR) =20 FILEMAP_OBJ=3D @FILEMAP_OBJ@ OBJS=3D xmlwf.o xmlfile.o codepage.o $(FILEMAP_OBJ) LIBS=3D -L$(LIBDIR) -lexpat =20 +srcdir =3D @srcdir@ +top_srcdir =3D @top_srcdir@ +VPATH =3D @srcdir@ + + xmlwf: $(OBJS) $(CC) -o xmlwf $(LDFLAGS) $(OBJS) $(LIBS) =20 clean: - rm -f xmlwf core *.o \ No newline at end of file + rm -f xmlwf core *.o + --vkogqOf2sHV7VnPd-- ---------------------- multipart/signed attachment A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 232 bytes Desc: not available Url : http://mail.libexpat.org/pipermail-21/expat-discuss/attachments/20010202/47da376d/attachment.bin ---------------------- multipart/signed attachment-- From sam@uchicago.edu Sat Feb 3 08:03:01 2001 From: sam@uchicago.edu (Sam TH) Date: Sat, 3 Feb 2001 02:03:01 -0600 Subject: [Expat-discuss] Patch to remove GCC-specific dependency generation Message-ID: <20010203020301.A32752@uchicago.edu> ---------------------- multipart/signed attachment The following patch removed GCC-specific dependency generation from the lib/Makefile.in. This will allow expat to be compiled with non-gcc compilers. =20 Index: lib/Makefile.in =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /cvsroot/expat/expat/lib/Makefile.in,v retrieving revision 1.10 diff -u -r1.10 Makefile.in --- lib/Makefile.in 2001/01/24 19:41:12 1.10 +++ lib/Makefile.in 2001/02/03 08:00:36 @@ -107,24 +107,10 @@ .PHONY: all clean distclean maintainer-clean =20 .c.o: - @echo '$(COMPILE) -c $<'; \ - $(COMPILE) -Wp,-MD,.deps/$(*F).pp -c $< - @-cp .deps/$(*F).pp .deps/$(*F).P; \ - tr ' ' '\012' < .deps/$(*F).pp \ - | sed -e 's/^\\$$//' -e '/^$$/ d' -e '/:$$/ d' -e 's/$$/ :/' \ - >> .deps/$(*F).P; \ - rm .deps/$(*F).pp + $(COMPILE) -c $< =20 .c.lo: - @echo '$(LTCOMPILE) -c $<'; \ - test -d .deps || mkdir .deps ; \ - $(LTCOMPILE) -Wp,-MD,.deps/$(*F).pp -c $< - @-sed -e 's/^\([^:]*\)\.o[ ]*:/\1.lo \1.o :/' \ - < .deps/$(*F).pp > .deps/$(*F).P; \ - tr ' ' '\012' < .deps/$(*F).pp \ - | sed -e 's/^\\$$//' -e '/^$$/ d' -e '/:$$/ d' -e 's/$$/ :/' \ - >> .deps/$(*F).P; \ - rm -f .deps/$(*F).pp + $(LTCOMPILE) -c $< =20 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status cd $(top_builddir) \ =20 sam th =20 sam@uchicago.edu http://www.abisource.com/~sam/ GnuPG Key: =20 http://www.abisource.com/~sam/key ---------------------- multipart/signed attachment A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 232 bytes Desc: not available Url : http://mail.libexpat.org/pipermail-21/expat-discuss/attachments/20010203/3aeb87a9/attachment.bin ---------------------- multipart/signed attachment-- From fdrake@acm.org Sat Feb 3 19:16:24 2001 From: fdrake@acm.org (Fred L. Drake, Jr.) Date: Sat, 3 Feb 2001 14:16:24 -0500 (EST) Subject: [Expat-discuss] Lots of Patches In-Reply-To: <20010202111044.A23394@uchicago.edu> References: <20010202111044.A23394@uchicago.edu> Message-ID: <14972.22792.375166.376805@cj42289-a.reston1.va.home.com> Sam TH writes: > Well, I had a little spare time, so I fixed the non-platform specific > bugs listed in the bug tracker, and made everything compile (including > the three applications). Sam, I've been a little swamped lately from the Python 2.1 alpha release, and will be out of town this coming week. If Clark doesn't get a chance to look at your patches this week, I'll take a look at them when I get back (not sure at what priority). In the meanwhile, it would really help if you could submit these patches using the SourceForge patch manager for Expat: http://sourceforge.net/patch/?group_id=10127 That will make it much harder for us to lose patches in our inboxes. ;) If you don't already have a SourceForge login, this would be an excellent time to get one. I'd really like to get all the build-related issues taken care of; there's no reason for Expat to be difficult to build. (Especially since we try and really take care with Python in that department!) I really appreciate your help in fixing these problems! -Fred -- Fred L. Drake, Jr. PythonLabs at Digital Creations From sam@uchicago.edu Sat Feb 3 22:35:11 2001 From: sam@uchicago.edu (Sam TH) Date: Sat, 3 Feb 2001 16:35:11 -0600 Subject: [Expat-discuss] Lots of Patches In-Reply-To: <14972.22792.375166.376805@cj42289-a.reston1.va.home.com>; from fdrake@acm.org on Sat, Feb 03, 2001 at 02:16:24PM -0500 References: <20010202111044.A23394@uchicago.edu> <14972.22792.375166.376805@cj42289-a.reston1.va.home.com> Message-ID: <20010203163511.B8212@uchicago.edu> ---------------------- multipart/signed attachment On Sat, Feb 03, 2001 at 02:16:24PM -0500, Fred L. Drake, Jr. wrote: >=20 > Sam TH writes: > > Well, I had a little spare time, so I fixed the non-platform specific > > bugs listed in the bug tracker, and made everything compile (including > > the three applications). =20 >=20 > Sam, > I've been a little swamped lately from the Python 2.1 alpha release, > and will be out of town this coming week. If Clark doesn't get a > chance to look at your patches this week, I'll take a look at them > when I get back (not sure at what priority). > In the meanwhile, it would really help if you could submit these > patches using the SourceForge patch manager for Expat: >=20 > http://sourceforge.net/patch/?group_id=3D10127 >=20 > That will make it much harder for us to lose patches in our inboxes. > ;) If you don't already have a SourceForge login, this would be an > excellent time to get one. > I'd really like to get all the build-related issues taken care of; > there's no reason for Expat to be difficult to build. (Especially > since we try and really take care with Python in that department!) > I really appreciate your help in fixing these problems! Well, I've uploaded all of those, and one more to fix another bug people had refered to relating to dependency information that was gcc-only. Let me know if you have any more questions. =20 =20 sam th =20 sam@uchicago.edu http://www.abisource.com/~sam/ GnuPG Key: =20 http://www.abisource.com/~sam/key ---------------------- multipart/signed attachment A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 232 bytes Desc: not available Url : http://mail.libexpat.org/pipermail-21/expat-discuss/attachments/20010203/6c75335f/attachment.bin ---------------------- multipart/signed attachment-- From ken@bitsko.slc.ut.us Tue Feb 6 17:59:47 2001 From: ken@bitsko.slc.ut.us (Ken MacLeod) Date: 06 Feb 2001 11:59:47 -0600 Subject: [Expat-discuss] expat on the Mac In-Reply-To: Dan Winkler's message of "Thu, 1 Feb 2001 18:10:26 -0500" References: <64AFC0D37B2ED411BAB300508B6D90A019AC02@mail.virtual-ink.com> Message-ID: Dan Winkler writes: > I'm trying to port the source to the macintosh OSX. Was wondering > if anyone has done this before with metrowerks Codewarrior? Any > info on this would be appreciated. Thanks I recently compiled expat 1.95.1 on MacOS9 using MPW and ran `examples/outline.c' successfully. All I did was create a project with all the .c files in 'lib' to create a library, then compiled outline.c as a shell application. I copied config.hin to config.h and just tweaked it until it compiled OK. -- Ken From rjmooney@mediaone.net Wed Feb 7 18:10:38 2001 From: rjmooney@mediaone.net (Robert Mooney) Date: Wed, 7 Feb 2001 13:10:38 -0500 Subject: [Expat-discuss] Win32 Release Message-ID: This is a multi-part message in MIME format. ---------------------- multipart/mixed attachment Win32 Release (expat/lib), checked out around 11:15 EST this morning, fails to build. A working config is attached. On a side note, it might be beneficial to create new project release files (SourceForge wise), at least for the Windows users. Thanks, - Rob ---------------------- multipart/mixed attachment A non-text attachment was scrubbed... Name: expat.dsp Type: application/octet-stream Size: 5767 bytes Desc: not available Url : http://mail.libexpat.org/pipermail-21/expat-discuss/attachments/20010207/8ac1482e/expat.exe ---------------------- multipart/mixed attachment-- From dcrowley@scitegic.com Wed Feb 7 19:16:21 2001 From: dcrowley@scitegic.com (David Crowley) Date: Wed, 07 Feb 2001 11:16:21 -0800 Subject: [Expat-discuss] Win32 Release In-Reply-To: Message-ID: <5.0.2.1.0.20010207111451.00aa4858@pop.scitegic.com> At 01:10 PM 2/7/2001 -0500, you wrote: >Win32 Release (expat/lib), checked out around 11:15 EST this morning, fails >to build. A working config is attached. > >On a side note, it might be beneficial to create new project release files >(SourceForge wise), at least for the Windows users. > >Thanks, > >- Rob > Also the 1.95.1 Win32 Binary release didn't have a .lib file. Isn't the .lib file necessary for linking or can you generate one somehow from the dll? From rjmooney@mediaone.net Thu Feb 8 02:48:34 2001 From: rjmooney@mediaone.net (Robert Mooney) Date: Wed, 7 Feb 2001 21:48:34 -0500 Subject: [Expat-discuss] Win32 Release In-Reply-To: <5.0.2.1.0.20010207111451.00aa4858@pop.scitegic.com> Message-ID: I don't have much experience linking on Wintel, so if I'm missing something here, feel free to correct me. ;) I was able to create a .lib with LIB /DEF:expat.dll, but I was still unable to link. Also, LINK /DUMP /EXPORTS expat.lib didn't show any exports. On that note, any non-source distribution of a library I've downloaded has come with a .lib (IIRC). Whether or not it's required, I don't know. I expected it when I opened the archive, though. - Rob > -----Original Message----- > From: expat-discuss-admin@lists.sourceforge.net > [mailto:expat-discuss-admin@lists.sourceforge.net]On Behalf Of David > Crowley > Sent: Wednesday, February 07, 2001 2:16 PM > To: expat-discuss@lists.sourceforge.net > Subject: Re: [Expat-discuss] Win32 Release > > Also the 1.95.1 Win32 Binary release didn't have a .lib file. Isn't the > .lib file necessary for linking or can you generate one somehow > from the dll? > From jana@birdstep.org Tue Feb 13 01:49:51 2001 From: jana@birdstep.org (Jan-Arve Saeter) Date: Tue, 13 Feb 2001 02:49:51 +0100 Subject: [Expat-discuss] Is Expat "alignment-safe"? Message-ID: <9BF5DD8B8F3CD411959500B0D020ED3E01580C@EXCHANGE> Hi there, not sure if this is the right place to post this but here we go... I am trying to port expat to PocketPC (iPAQ, ARM). For my Debug builds expat works perfectly well, but in release Builds I get a protection fault which indicates that expat is reading data from an unaligned memory address. Most likely expat is working ok (since it is working in debug mode for me), but I would be happy if anyone can confirm or Dis-confirm me on this. (I don't wanna waste too much time on debugging a release-version of expat, debugging expat *with* source code is hard enough with all those macros :-) Thanks, Jan- Arve Sćther From GEMESIF@westel900.hu Mon Feb 19 14:15:09 2001 From: GEMESIF@westel900.hu (Ferenc Gémesi) Date: 19 Feb 2001 15:15:09 +0100 Subject: [Expat-discuss] ENTITY tag Message-ID: <14Ur6H-0007Nf-00@gate.westel900.hu> Dear Gurus, I should like 'perl' example about: Inernal XML ENTITY hadling A get 'syntax error...' if 'ENTITY' tag is in the 'xml document'. Thank You for help, gferi