From vishal at absiweb.com Fri Feb 6 18:10:33 2004 From: vishal at absiweb.com (Vishal Anand) Date: Fri Feb 6 18:10:42 2004 Subject: [Expat-discuss] Makefile error message while expat object files Message-ID: <001601c3ed06$6bf4ae10$3908020a@absiweb.com> Hi, I have FTP'D the expat.zip from the link: ftp://ftp.jclark.com/pub/xml/expat.zip for building an Open OSP. But while executing the Makefile I am getting the following error message. I have also attached the new Makefile with the changes I have made as per the environment of my Sun Solaris Box. For you reference: Hardware I am using is: fgws3 $ uname -a SunOS fgws3 5.8 Generic_108528-14 sun4u sparc SUNW,UltraAX-i2 Compiler detail is: fgws3 $ gcc -v Reading specs from /usr/local/lib/gcc-lib/sparc-sun-solaris2.8/2.95.3/specs gcc version 2.95.3 20010315 (release) Present working directory where I running Makefile is: fgws3 $ pwd /home/esherman/EXTROOT/expat fgws3 $ And the following error message I got while executing the make file: fgws3 $ Makefile Makefile[8]: -I/home/esherman/EXTROOT/expat/xmltok: not found Makefile: /home/esherman/EXTROOT/expat/xmltok/xmlrole.o: cannot execute Makefile[17]: FILEMAP_OBJ: not found Makefile: /home/esherman/EXTROOT/expat/xmlwf/xmlfile.o: cannot execute Makefile[23]: EXE: not found Makefile[25]: XMLWF: not found Makefile[25]: all:: not found Makefile[27]: XMLWF: not found Makefile[27]: OBJS: not found Makefile[27]: LIB: not found Makefile[28]: CC: not found Makefile[28]: CFLAGS: not found Makefile[28]: OBJS: not found Makefile[28]: LIB: not found Makefile[28]: -o: not found Makefile[30]: LIB: not found Makefile[30]: LIBOBJS: not found Makefile[31]: AR: not found Makefile[31]: LIB: not found Makefile[31]: LIBOBJS: not found Makefile[31]: rc: not found Makefile[33]: clean:: not found Makefile[34]: OBJS: not found Makefile[34]: LIBOBJS: not found Makefile[34]: LIB: not found Makefile[34]: XMLWF: not found Makefile[36]: EXE: not found Makefile[36]: /home/esherman/EXTROOT/expat/xmltok/nametab.h:: not found Makefile[38]: EXE: not found Makefile[38]: /home/esherman/EXTROOT/expat/gennmtab/gennmtab: not found Makefile[40]: EXE: not found Makefile[40]: /home/esherman/EXTROOT/expat/gennmtab/gennmtab:: not found Makefile[41]: CC: not found Makefile[41]: CFLAGS: not found Makefile[41]: -o: not found Makefile[43]: /home/esherman/EXTROOT/expat/xmltok/xmltok.o:: not found Makefile[45]: .c.o:: not found Makefile[46]: syntax error at line 47 : `newline or ;' unexpected I didn't get any document on prerequisites for executing the Expat makefile. I made some changes by going through the Makefile; which are: * Created the xmltok.o, xmlparse.o codepage.o etc using the following command: gcc -c *.c . But still I am not able to build the Expat object files. Please help me as soon as possible, for building my application I only need to build the Expat object files. What are step I have to do in order to resolve these error messages, if possible provide me any document which talk about steps to build Expat object files. Thanks in advance for your help, Regards, Vishal -------------- next part -------------- CC=gcc # If you know what your system's byte order is, define XML_BYTE_ORDER: # use -DXML_BYTE_ORDER=12 for little-endian byte order; # use -DXML_BYTE_ORDER=21 for big-endian (network) byte order. # -DXML_NS adds support for checking of lexical aspects of XML namespaces spec # -DXML_MIN_SIZE makes a smaller but slower parser # -DXML_DTD adds full support for parsing DTDs CFLAGS=-Wall -I/home/esherman/EXTROOT/expat/xmltok -I/home/esherman/expat/xmlparse -DXML_NS -DXML_DTD AR=ar # Use one of the next two lines; unixfilemap is better if it works. FILEMAP_OBJ=/home/esherman/EXTROOT/expat/xmlwf/unixfilemap.o #FILEMAP_OBJ=xmlwf/readfilemap.o LIBOBJS=/home/esherman/EXTROOT/expat/xmltok/xmltok.o \ /home/esherman/EXTROOT/expat/xmltok/xmlrole.o \ /home/esherman/EXTROOT/expat/xmlparse/xmlparse.o OBJS=/home/esherman/EXTROOT/expat/xmlwf/xmlwf.o \ /home/esherman/EXTROOT/expat/xmlwf/xmlfile.o \ /home/esherman/EXTROOT/expat/xmlwf/codepage.o \ $(FILEMAP_OBJ) LIB=/home/esherman/EXTROOT/expat/xmlparse/libexpat.a EXE= XMLWF=/home/esherman/EXTROOT/expat/xmlwf/xmlwf$(EXE) all: $(XMLWF) $(XMLWF): $(OBJS) $(LIB) $(CC) $(CFLAGS) -o $@ $(OBJS) $(LIB) $(LIB): $(LIBOBJS) $(AR) rc $(LIB) $(LIBOBJS) clean: rm -f $(OBJS) $(LIBOBJS) $(LIB) $(XMLWF) /home/esherman/EXTROOT/expat/xmltok/nametab.h: /home/esherman/EXTROOT/expat/gennmtab/gennmtab$(EXE) rm -f $@ /home/esherman/EXTROOT/expat/gennmtab/gennmtab$(EXE) >$@ /home/esherman/EXTROOT/expat/gennmtab/gennmtab$(EXE): /home/esherman/EXTROOT/expat/gennmtab/gennmtab.c $(CC) $(CFLAGS) -o $@ /home/esherman/EXTROOT/expat/gennmtab/gennmtab.c /home/esherman/EXTROOT/expat/xmltok/xmltok.o: /home/esherman/EXTROOT/expat/xmltok/nametab.h .c.o: $(CC) $(CFLAGS) -c -o $@ $< ~ From vishal at absiweb.com Fri Feb 6 17:54:45 2004 From: vishal at absiweb.com (Vishal Anand) Date: Sat Feb 7 09:04:35 2004 Subject: [Expat-discuss] Makefile Error message Message-ID: <000c01c3ed04$36dcfbd0$3908020a@absiweb.com> Hi, I have FTP'D the expat.zip from the link: ftp://ftp.jclark.com/pub/xml/expat.zip for building an Open OSP. But while executing the Makefile I am getting the following error message. I have also attached the new Makefile with the changes I have made as per the environment of my Sun Solaris Box. For you reference: Hardware I am using is: fgws3 $ uname -a SunOS fgws3 5.8 Generic_108528-14 sun4u sparc SUNW,UltraAX-i2 Compiler detail is: fgws3 $ gcc -v Reading specs from /usr/local/lib/gcc-lib/sparc-sun-solaris2.8/2.95.3/specs gcc version 2.95.3 20010315 (release) Present working directory where I running Makefile is: fgws3 $ pwd /home/esherman/EXTROOT/expat fgws3 $ And the following error message I got while executing the make file: fgws3 $ Makefile Makefile[8]: -I/home/esherman/EXTROOT/expat/xmltok: not found Makefile: /home/esherman/EXTROOT/expat/xmltok/xmlrole.o: cannot execute Makefile[17]: FILEMAP_OBJ: not found Makefile: /home/esherman/EXTROOT/expat/xmlwf/xmlfile.o: cannot execute Makefile[23]: EXE: not found Makefile[25]: XMLWF: not found Makefile[25]: all:: not found Makefile[27]: XMLWF: not found Makefile[27]: OBJS: not found Makefile[27]: LIB: not found Makefile[28]: CC: not found Makefile[28]: CFLAGS: not found Makefile[28]: OBJS: not found Makefile[28]: LIB: not found Makefile[28]: -o: not found Makefile[30]: LIB: not found Makefile[30]: LIBOBJS: not found Makefile[31]: AR: not found Makefile[31]: LIB: not found Makefile[31]: LIBOBJS: not found Makefile[31]: rc: not found Makefile[33]: clean:: not found Makefile[34]: OBJS: not found Makefile[34]: LIBOBJS: not found Makefile[34]: LIB: not found Makefile[34]: XMLWF: not found Makefile[36]: EXE: not found Makefile[36]: /home/esherman/EXTROOT/expat/xmltok/nametab.h:: not found Makefile[38]: EXE: not found Makefile[38]: /home/esherman/EXTROOT/expat/gennmtab/gennmtab: not found Makefile[40]: EXE: not found Makefile[40]: /home/esherman/EXTROOT/expat/gennmtab/gennmtab:: not found Makefile[41]: CC: not found Makefile[41]: CFLAGS: not found Makefile[41]: -o: not found Makefile[43]: /home/esherman/EXTROOT/expat/xmltok/xmltok.o:: not found Makefile[45]: .c.o:: not found Makefile[46]: syntax error at line 47 : `newline or ;' unexpected I didn't get any document on prerequisites for executing the Expat makefile. I made some changes by going through the Makefile; which are: * Created the xmltok.o, xmlparse.o codepage.o etc using the following command: gcc -c *.c . But still I am not able to build the Expat object files. Please help me as soon as possible, for building my application I only need to build the Expat object files. What are step I have to do in order to resolve these error messages, if possible provide me any document which talk about steps to build Expat object files. Thanks in advance for your help, Regards, Vishal From karl at waclawek.net Sat Feb 7 09:19:24 2004 From: karl at waclawek.net (Karl Waclawek) Date: Sat Feb 7 09:12:18 2004 Subject: [Expat-discuss] Makefile Error message References: <000c01c3ed04$36dcfbd0$3908020a@absiweb.com> Message-ID: <002f01c3ed85$634c3d80$0207a8c0@karl> This is a very old and unsupported version of Expat. The current release can be downloaded from http://sourceforge.net/project/showfiles.php?group_id=10127 Karl ----- Original Message ----- From: "Vishal Anand" To: Cc: Sent: Friday, February 06, 2004 5:54 PM Subject: [Expat-discuss] Makefile Error message > Hi, > > I have FTP'D the expat.zip from the link: > ftp://ftp.jclark.com/pub/xml/expat.zip for building an Open OSP. But > while executing the Makefile I am getting the following error message. I > have also attached the new Makefile with the changes I have made as per > the environment of my Sun Solaris Box. > > > > For you reference: > > Hardware I am using is: > > fgws3 $ uname -a > > SunOS fgws3 5.8 Generic_108528-14 sun4u sparc SUNW,UltraAX-i2 > > Compiler detail is: > > fgws3 $ gcc -v > > Reading specs from > /usr/local/lib/gcc-lib/sparc-sun-solaris2.8/2.95.3/specs > > gcc version 2.95.3 20010315 (release) > > Present working directory where I running Makefile is: > > fgws3 $ pwd > > /home/esherman/EXTROOT/expat > > fgws3 $ > > > > And the following error message I got while executing the make file: > > > > fgws3 $ Makefile > > Makefile[8]: -I/home/esherman/EXTROOT/expat/xmltok: not found > > Makefile: /home/esherman/EXTROOT/expat/xmltok/xmlrole.o: cannot execute > > Makefile[17]: FILEMAP_OBJ: not found > > Makefile: /home/esherman/EXTROOT/expat/xmlwf/xmlfile.o: cannot execute > > Makefile[23]: EXE: not found > > Makefile[25]: XMLWF: not found > > Makefile[25]: all:: not found > > Makefile[27]: XMLWF: not found > > Makefile[27]: OBJS: not found > > Makefile[27]: LIB: not found > > Makefile[28]: CC: not found > > Makefile[28]: CFLAGS: not found > > Makefile[28]: OBJS: not found > > Makefile[28]: LIB: not found > > Makefile[28]: -o: not found > > Makefile[30]: LIB: not found > > Makefile[30]: LIBOBJS: not found > > Makefile[31]: AR: not found > > Makefile[31]: LIB: not found > > Makefile[31]: LIBOBJS: not found > > Makefile[31]: rc: not found > > Makefile[33]: clean:: not found > > Makefile[34]: OBJS: not found > > Makefile[34]: LIBOBJS: not found > > Makefile[34]: LIB: not found > > Makefile[34]: XMLWF: not found > > Makefile[36]: EXE: not found > > Makefile[36]: /home/esherman/EXTROOT/expat/xmltok/nametab.h:: not found > > Makefile[38]: EXE: not found > > Makefile[38]: /home/esherman/EXTROOT/expat/gennmtab/gennmtab: not found > > Makefile[40]: EXE: not found > > Makefile[40]: /home/esherman/EXTROOT/expat/gennmtab/gennmtab:: not > found > > Makefile[41]: CC: not found > > Makefile[41]: CFLAGS: not found > > Makefile[41]: -o: not found > > Makefile[43]: /home/esherman/EXTROOT/expat/xmltok/xmltok.o:: not found > > Makefile[45]: .c.o:: not found > > Makefile[46]: syntax error at line 47 : `newline or ;' unexpected > > > > I didn't get any document on prerequisites for executing the Expat > makefile. I made some changes by going through the Makefile; which are: > > * Created the xmltok.o, xmlparse.o codepage.o etc using the > following command: gcc -c *.c . > > > > But still I am not able to build the Expat object files. > > > > Please help me as soon as possible, for building my application I only > need to build the Expat object files. What are step I have to do in > order to resolve these error messages, if possible provide me any > document which talk about steps to build Expat object files. > > > > Thanks in advance for your help, > > > > Regards, > > Vishal > > > > _______________________________________________ > Expat-discuss mailing list > Expat-discuss@libexpat.org > http://mail.libexpat.org/mailman/listinfo/expat-discuss From vishal at absiweb.com Mon Feb 9 13:01:20 2004 From: vishal at absiweb.com (Vishal Anand) Date: Mon Feb 9 13:01:29 2004 Subject: [Expat-discuss] Makefile Error message In-Reply-To: <002f01c3ed85$634c3d80$0207a8c0@karl> Message-ID: <000901c3ef36$b92862d0$3908020a@absiweb.com> Hi Karl, Thanks a lot for the prompt reply and help. I have downloaded the latest version of EXPAT "expat-1.95.7" from the link mention in your mail. Also executed the "configure" and ran "make install" as per the instruction in the Read me file. The following files it creates after executing "./configure" & "make install": 1. Makefile 2. config.log 3. config.status 4. expat_config.h 5. libexpat.la 6. libtool But I don't know how to find whether the installation was done correctly or not? Please tell me how to find this. And is it configured properly so that I will go ahead and installs all the other prerequisites for building an Open OSP Server. Thanks a lot for your help!!! Regards, Vishal -----Original Message----- From: Karl Waclawek [mailto:karl@waclawek.net] Sent: Saturday, February 07, 2004 9:19 AM To: Vishal Anand; expat-discuss@libexpat.org Subject: Re: [Expat-discuss] Makefile Error message This is a very old and unsupported version of Expat. The current release can be downloaded from http://sourceforge.net/project/showfiles.php?group_id=10127 Karl ----- Original Message ----- From: "Vishal Anand" To: Cc: Sent: Friday, February 06, 2004 5:54 PM Subject: [Expat-discuss] Makefile Error message > Hi, > > I have FTP'D the expat.zip from the link: > ftp://ftp.jclark.com/pub/xml/expat.zip for building an Open OSP. But > while executing the Makefile I am getting the following error message. I > have also attached the new Makefile with the changes I have made as per > the environment of my Sun Solaris Box. > > > > For you reference: > > Hardware I am using is: > > fgws3 $ uname -a > > SunOS fgws3 5.8 Generic_108528-14 sun4u sparc SUNW,UltraAX-i2 > > Compiler detail is: > > fgws3 $ gcc -v > > Reading specs from > /usr/local/lib/gcc-lib/sparc-sun-solaris2.8/2.95.3/specs > > gcc version 2.95.3 20010315 (release) > > Present working directory where I running Makefile is: > > fgws3 $ pwd > > /home/esherman/EXTROOT/expat > > fgws3 $ > > > > And the following error message I got while executing the make file: > > > > fgws3 $ Makefile > > Makefile[8]: -I/home/esherman/EXTROOT/expat/xmltok: not found > > Makefile: /home/esherman/EXTROOT/expat/xmltok/xmlrole.o: cannot execute > > Makefile[17]: FILEMAP_OBJ: not found > > Makefile: /home/esherman/EXTROOT/expat/xmlwf/xmlfile.o: cannot execute > > Makefile[23]: EXE: not found > > Makefile[25]: XMLWF: not found > > Makefile[25]: all:: not found > > Makefile[27]: XMLWF: not found > > Makefile[27]: OBJS: not found > > Makefile[27]: LIB: not found > > Makefile[28]: CC: not found > > Makefile[28]: CFLAGS: not found > > Makefile[28]: OBJS: not found > > Makefile[28]: LIB: not found > > Makefile[28]: -o: not found > > Makefile[30]: LIB: not found > > Makefile[30]: LIBOBJS: not found > > Makefile[31]: AR: not found > > Makefile[31]: LIB: not found > > Makefile[31]: LIBOBJS: not found > > Makefile[31]: rc: not found > > Makefile[33]: clean:: not found > > Makefile[34]: OBJS: not found > > Makefile[34]: LIBOBJS: not found > > Makefile[34]: LIB: not found > > Makefile[34]: XMLWF: not found > > Makefile[36]: EXE: not found > > Makefile[36]: /home/esherman/EXTROOT/expat/xmltok/nametab.h:: not found > > Makefile[38]: EXE: not found > > Makefile[38]: /home/esherman/EXTROOT/expat/gennmtab/gennmtab: not found > > Makefile[40]: EXE: not found > > Makefile[40]: /home/esherman/EXTROOT/expat/gennmtab/gennmtab:: not > found > > Makefile[41]: CC: not found > > Makefile[41]: CFLAGS: not found > > Makefile[41]: -o: not found > > Makefile[43]: /home/esherman/EXTROOT/expat/xmltok/xmltok.o:: not found > > Makefile[45]: .c.o:: not found > > Makefile[46]: syntax error at line 47 : `newline or ;' unexpected > > > > I didn't get any document on prerequisites for executing the Expat > makefile. I made some changes by going through the Makefile; which are: > > * Created the xmltok.o, xmlparse.o codepage.o etc using the > following command: gcc -c *.c . > > > > But still I am not able to build the Expat object files. > > > > Please help me as soon as possible, for building my application I only > need to build the Expat object files. What are step I have to do in > order to resolve these error messages, if possible provide me any > document which talk about steps to build Expat object files. > > > > Thanks in advance for your help, > > > > Regards, > > Vishal > > > > _______________________________________________ > Expat-discuss mailing list > Expat-discuss@libexpat.org > http://mail.libexpat.org/mailman/listinfo/expat-discuss From karl at waclawek.net Mon Feb 9 14:24:29 2004 From: karl at waclawek.net (Karl Waclawek) Date: Mon Feb 9 14:24:39 2004 Subject: [Expat-discuss] Makefile Error message References: <000901c3ef36$b92862d0$3908020a@absiweb.com> Message-ID: <000b01c3ef42$568829b0$9e539696@citkwaclaww2k> > The following files it creates after executing "./configure" & "make > install": > 1. Makefile > 2. config.log > 3. config.status > 4. expat_config.h > 5. libexpat.la > 6. libtool > > But I don't know how to find whether the installation was done correctly > or not? Please tell me how to find this. I am not our Linux expert, but I would think that the installation worked unless make install reported an error. > And is it configured properly > so that I will go ahead and installs all the other prerequisites for > building an Open OSP Server. Sorry for my ignorance - what is an OSP server? In general, Expat does not know by whom it will be used, but that is how it is supposed to be. Maybe I misunderstood? Karl From mme at lediet.fr Tue Feb 10 08:38:41 2004 From: mme at lediet.fr (Moncef Mezghani) Date: Tue Feb 10 08:38:53 2004 Subject: [Expat-discuss] How to remove warning: `cdecl' attribute directive ignored In-Reply-To: <16397.21054.236051.489649@sftp.fdrake.net> References: <44A99EA1-4B60-11D8-AE39-000A95A0ECC6@lediet.fr> <16397.21054.236051.489649@sftp.fdrake.net> Message-ID: <7091870E-5BCE-11D8-BF41-000A95A0ECC6@lediet.fr> Thank you very mutch Fred, That is ok, with last version from cvs. Moncef. Le 20 janv. 04, ? 17:07, Fred L. Drake, Jr. a ?crit : > > Moncef Mezghani writes: >> I am using libexpat in a C++ project compiled with g++ (GCC) 3.3 >> 20030304 (Apple Computer, Inc. build 1495) on a PowerBook G4 under OS >> X >> Version 10.3.2, and get many warning: `cdecl' attribute directive >> ignored. > > This has been a frustrating problem. The catch is that there appears > to be no generally good solution to the problem. > > I've committed the patch from SourceForge bug #846309; please try the > current version from CVS if you can, and let me know how it works for > you. (I'm seeing plenty of other warnings at the moment, but not the > cdecl warning. Those will be addressed before the next release.) > > > -Fred > > -- > Fred L. Drake, Jr. > PythonLabs at Zope Corporation > From shwetanandu at yahoo.com Wed Feb 18 15:22:17 2004 From: shwetanandu at yahoo.com (Shweta Nandakumar) Date: Wed Feb 18 15:22:22 2004 Subject: [Expat-discuss] Expat and Easy Soap Message-ID: <20040218202217.43611.qmail@web14802.mail.yahoo.com> Hi I have been trying to install expat and configure EasySoap. If I install expat in a directory paralle to EasySoap, as in, EasySoap: /X/Y/EasySoap then expat is in /X/Y/expat and I do a configure --prefix=/X/Y/expat1.95.2, and then do a make and make install. My problem is that when i do a configure within easysoap, it does not recognise expat. What could be the problem.? Any ideas? Thanks Shweta --------------------------------- Do you Yahoo!? Yahoo! Mail SpamGuard - Read only the mail you want. From shwetanandu at yahoo.com Wed Feb 18 15:22:14 2004 From: shwetanandu at yahoo.com (Shweta Nandakumar) Date: Wed Feb 18 15:22:24 2004 Subject: [Expat-discuss] Expat and Easy Soap Message-ID: <20040218202214.11808.qmail@web14804.mail.yahoo.com> Hi I have been trying to install expat and configure EasySoap. If I install expat in a directory paralle to EasySoap, as in, EasySoap: /X/Y/EasySoap then expat is in /X/Y/expat and I do a configure --prefix=/X/Y/expat1.95.2, and then do a make and make install. My problem is that when i do a configure within easysoap, it does not recognise expat. What could be the problem.? Any ideas? Thanks Shweta --------------------------------- Do you Yahoo!? Yahoo! Mail SpamGuard - Read only the mail you want. From vishal at absiweb.com Wed Feb 18 18:14:07 2004 From: vishal at absiweb.com (Vishal Anand) Date: Wed Feb 18 18:14:14 2004 Subject: [Expat-discuss] Expat and Easy Soap In-Reply-To: <20040218202217.43611.qmail@web14802.mail.yahoo.com> Message-ID: <002801c3f674$e9171870$3908020a@absiweb.com> What is the error message u r getting ? -----Original Message----- From: expat-discuss-bounces@libexpat.org [mailto:expat-discuss-bounces@libexpat.org] On Behalf Of Shweta Nandakumar Sent: Wednesday, February 18, 2004 3:22 PM To: expat-discuss@libexpat.org Subject: [Expat-discuss] Expat and Easy Soap Hi I have been trying to install expat and configure EasySoap. If I install expat in a directory paralle to EasySoap, as in, EasySoap: /X/Y/EasySoap then expat is in /X/Y/expat and I do a configure --prefix=/X/Y/expat1.95.2, and then do a make and make install. My problem is that when i do a configure within easysoap, it does not recognise expat. What could be the problem.? Any ideas? Thanks Shweta --------------------------------- Do you Yahoo!? Yahoo! Mail SpamGuard - Read only the mail you want. _______________________________________________ Expat-discuss mailing list Expat-discuss@libexpat.org http://mail.libexpat.org/mailman/listinfo/expat-discuss From vishal at absiweb.com Thu Feb 19 11:57:44 2004 From: vishal at absiweb.com (Vishal Anand) Date: Thu Feb 19 11:59:33 2004 Subject: [Expat-discuss] Expat and Easy Soap In-Reply-To: <20040219163527.23223.qmail@web14811.mail.yahoo.com> Message-ID: <001401c3f709$7e6747d0$3908020a@absiweb.com> * The EXTROOT environment will be directory beneath which the Expat, OpenSSL & OpenLDAP were unpacked. * The OPSROOT environment variable; set it where your OpenOSP distribution exits. Or why don't you try copying xmlparse.lib and xmltok.lib libraries to your LD_LIBRARY_PATH. -Vishal -----Original Message----- From: Shweta Nandakumar [mailto:shwetanandu@yahoo.com] Sent: Thursday, February 19, 2004 11:35 AM To: Vishal Anand Subject: RE: [Expat-discuss] Expat and Easy Soap No. What is that? I don't have root privelages in my machine and so I have basically installed expat into a user specified directory. What I am interested in knowing is as to where EasySoap looks for an installation of Expat. There are no installation instructions in the README. of either of the utilities. Thanks Shweta Vishal Anand wrote: Have u set the path for $EXTROOT & $OSPROOT ??? -----Original Message----- From: Shweta Nandakumar [mailto:shwetanandu@yahoo.com] Sent: Thursday, February 19, 2004 10:56 AM To: Vishal Anand Subject: RE: [Expat-discuss] Expat and Easy Soap I get a "Could not find the XML parsing library expat. Download and install from ....." Vishal Anand wrote: What is the error message u r getting ? -----Original Message----- From: expat-discuss-bounces@libexpat.org [mailto:expat-discuss-bounces@libexpat.org] On Behalf Of Shweta Nandakumar Sent: Wednesday, February 18, 2004 3:22 PM To: expat-discuss@libexpat.org Subject: [Expat-discuss] Expat and Easy Soap Hi I have been trying to install expat and configure EasySoap. If I install expat in a directory paralle to EasySoap, as in, EasySoap: /X/Y/EasySoap then expat is in /X/Y/expat and I do a configure --prefix=/X/Y/expat1.95.2, and then do a make and make install. My problem is that when i do a configure within easysoap, it does not recognise expat. What could be the problem.? Any ideas? Thanks Shweta --------------------------------- Do you Yahoo!? Yahoo! Mail SpamGuard - Read only the mail you want. _______________________________________________ Expat-discuss mailing list Expat-discuss@libexpat.org http://mail.libexpat.org/mailman/listinfo/expat-discuss _____ Do you Yahoo!? Yahoo! Mail SpamGuard - Read only the mail you want. _____ Do you Yahoo!? Yahoo! Mail SpamGuard - Read only the mail you want. From vishal at absiweb.com Thu Feb 19 15:55:22 2004 From: vishal at absiweb.com (Vishal Anand) Date: Thu Feb 19 15:55:38 2004 Subject: [Expat-discuss] Expat and Easy Soap In-Reply-To: <20040219191649.98951.qmail@web14810.mail.yahoo.com> Message-ID: <001f01c3f72a$b128bcf0$3908020a@absiweb.com> Only problem I see is it is not able to link the libraries; use "nm" and find out what are the libraries your executable is looking. Also tell when u build expat did you get any error message?? Pleas provide some more information on what you are doing and how you are arriving to this error message? Vishal -----Original Message----- From: Shweta Nandakumar [mailto:shwetanandu@yahoo.com] Sent: Thursday, February 19, 2004 2:17 PM To: Vishal Anand Subject: RE: [Expat-discuss] Expat and Easy Soap this does not work either... --- Vishal Anand wrote: > * The EXTROOT environment will be directory > beneath which the > Expat, OpenSSL & OpenLDAP were unpacked. > > * The OPSROOT environment variable; set it > where your OpenOSP > distribution exits. > > > > Or why don't you try copying xmlparse.lib and > xmltok.lib libraries to your > LD_LIBRARY_PATH. > > > > -Vishal > > -----Original Message----- > From: Shweta Nandakumar > [mailto:shwetanandu@yahoo.com] > Sent: Thursday, February 19, 2004 11:35 AM > To: Vishal Anand > Subject: RE: [Expat-discuss] Expat and Easy Soap > > > > No. What is that? > > > > I don't have root privelages in my machine and so I > have basically installed > expat into a user specified directory. What I am > interested in knowing is as > to where EasySoap looks for an installation of > Expat. There are no > installation instructions in the README. of either > of the utilities. > > > > Thanks > > Shweta > > Vishal Anand wrote: > > Have u set the path for $EXTROOT & $OSPROOT ??? > > > > -----Original Message----- > From: Shweta Nandakumar > [mailto:shwetanandu@yahoo.com] > Sent: Thursday, February 19, 2004 10:56 AM > To: Vishal Anand > Subject: RE: [Expat-discuss] Expat and Easy Soap > > > > I get a > > > > "Could not find the XML parsing library expat. > Download and install from > ....." > > > > > > > > > > Vishal Anand wrote: > > What is the error message u r getting ? > > -----Original Message----- > From: expat-discuss-bounces@libexpat.org > [mailto:expat-discuss-bounces@libexpat.org] On > Behalf Of Shweta Nandakumar > Sent: Wednesday, February 18, 2004 3:22 PM > To: expat-discuss@libexpat.org > Subject: [Expat-discuss] Expat and Easy Soap > > Hi > > I have been trying to install expat and configure > EasySoap. If I install > expat in a directory paralle to EasySoap, as in, > > EasySoap: /X/Y/EasySoap > > then expat is in /X/Y/expat > > and I do a configure --prefix=/X/Y/expat1.95.2, and > then do a make and make > install. > > My problem is that when i do a configure within > easysoap, it does not > recognise expat. > What could be the problem.? Any ideas? > > Thanks > Shweta > > > > > --------------------------------- > Do you Yahoo!? > Yahoo! Mail SpamGuard - Read only the mail you want. > _______________________________________________ > Expat-discuss mailing list > Expat-discuss@libexpat.org > http://mail.libexpat.org/mailman/listinfo/expat-discuss > > > _____ > > > Do you Yahoo!? > Yahoo! > > Mail SpamGuard - Read only the mail you want. > > _____ > > Do you Yahoo!? > Yahoo! > > Mail SpamGuard - Read only the mail you want. > > __________________________________ Do you Yahoo!? Yahoo! Mail SpamGuard - Read only the mail you want. http://antispam.yahoo.com/tools From regis.st-gelais at laubrass.com Thu Feb 19 22:24:17 2004 From: regis.st-gelais at laubrass.com (=?Windows-1252?Q?R=E9gis_St-Gelais?=) Date: Thu Feb 19 22:24:27 2004 Subject: [Expat-discuss] Need to call XML_ParserFree ? Message-ID: <015201c3f761$0772ac70$647ba8c0@regis> Do I need to call ParserFree or is it automaticaly called when the parser object is destroyed? void test() { XML_Parser xmlParser; xmlParser = XML_ParserCreate(NULL); some code here ..... XML_ParserFree(xmlParser); // Needed ???? } Thanks R?gis St-Gelais From fdrake at acm.org Thu Feb 19 22:37:09 2004 From: fdrake at acm.org (Fred L. Drake, Jr.) Date: Thu Feb 19 22:37:21 2004 Subject: [Expat-discuss] Need to call XML_ParserFree ? In-Reply-To: <015201c3f761$0772ac70$647ba8c0@regis> References: <015201c3f761$0772ac70$647ba8c0@regis> Message-ID: <200402192237.09414.fdrake@acm.org> On Thursday 19 February 2004 10:24 pm, R?gis St-Gelais wrote: > Do I need to call ParserFree or is it automaticaly called when the parser > object is destroyed? ... > XML_ParserFree(xmlParser); // Needed ???? Yes, the call to XML_ParserFree() is required. The XML_Parser type is a pointer, not a C++ class with the needed destructor magic. Expat is strictly a C library, not C++. See the list of wrapper libraries for pointers to C++ interfaces to Expat: http://www.libexpat.org/ -Fred -- Fred L. Drake, Jr. PythonLabs at Zope Corporation From karl at waclawek.net Thu Feb 19 22:38:12 2004 From: karl at waclawek.net (Karl Waclawek) Date: Thu Feb 19 22:37:56 2004 Subject: [Expat-discuss] Need to call XML_ParserFree ? References: <015201c3f761$0772ac70$647ba8c0@regis> Message-ID: <000a01c3f762$f7d1e6d0$0207a8c0@karl> Yes, you need to call XML_ParserFree once you are finished using the parser instance. Karl ----- Original Message ----- From: "R?gis St-Gelais" To: Sent: Thursday, February 19, 2004 10:24 PM Subject: [Expat-discuss] Need to call XML_ParserFree ? Do I need to call ParserFree or is it automaticaly called when the parser object is destroyed? void test() { XML_Parser xmlParser; xmlParser = XML_ParserCreate(NULL); some code here ..... XML_ParserFree(xmlParser); // Needed ???? } Thanks R?gis St-Gelais _______________________________________________ Expat-discuss mailing list Expat-discuss@libexpat.org http://mail.libexpat.org/mailman/listinfo/expat-discuss From regis.st-gelais at laubrass.com Fri Feb 20 09:09:23 2004 From: regis.st-gelais at laubrass.com (=?Windows-1252?Q?R=E9gis_St-Gelais?=) Date: Fri Feb 20 09:10:05 2004 Subject: [Expat-discuss] Need to call XML_ParserFree ? References: <015201c3f761$0772ac70$647ba8c0@regis> <000a01c3f762$f7d1e6d0$0207a8c0@karl> Message-ID: <00ac01c3f7bb$24949c50$647ba8c0@regis> Thanks Karl and Fred. I thought so but I whanted to be shure. When I asked the question I king of forgot that it was not a C++ library. Regis ----- Original Message ----- From: Karl Waclawek To: R?gis St-Gelais ; expat-discuss@libexpat.org Sent: Thursday, February 19, 2004 10:38 PM Subject: Re: [Expat-discuss] Need to call XML_ParserFree ? Yes, you need to call XML_ParserFree once you are finished using the parser instance. Karl ----- Original Message ----- From: "R?gis St-Gelais" To: Sent: Thursday, February 19, 2004 10:24 PM Subject: [Expat-discuss] Need to call XML_ParserFree ? Do I need to call ParserFree or is it automaticaly called when the parser object is destroyed? void test() { XML_Parser xmlParser; xmlParser = XML_ParserCreate(NULL); some code here ..... XML_ParserFree(xmlParser); // Needed ???? } Thanks R?gis St-Gelais _______________________________________________ Expat-discuss mailing list Expat-discuss@libexpat.org http://mail.libexpat.org/mailman/listinfo/expat-discuss From shwetanandu at yahoo.com Sat Feb 21 11:06:16 2004 From: shwetanandu at yahoo.com (Shweta Nandakumar) Date: Sat Feb 21 11:06:21 2004 Subject: [Expat-discuss] Make errors Message-ID: <20040221160616.97975.qmail@web14805.mail.yahoo.com> Has anybody had problems during make of easysoap. what option do I need to use to make it to recognize gcc libraries? Thanks Shweta --------------------------------- Do you Yahoo!? Yahoo! Mail SpamGuard - Read only the mail you want. From ya.news at wanadoo.fr Sat Feb 21 03:21:30 2004 From: ya.news at wanadoo.fr (ya.news) Date: Sun Feb 22 11:50:31 2004 Subject: [Expat-discuss] French accents problem Message-ID: <000001c3f853$b5ca3d90$34910f50@lysapc> Hello everybody I?m using Expat PocketPC version ported by mov software (http://www.movsoftware.com/expatxml.htm) and I have a problem with special characters at a specific place. My XML data looks like this : ?? ? The Expat always stops at ? (error message : ?Not well formed?). If I either change "?" for an "u" it works fine. I tried to replace UTF-8 by iso-8859-1 with no success. Any help please ? Thanks lot in advance From even_steven at web.de Tue Feb 24 16:50:48 2004 From: even_steven at web.de (Stefan Meyer) Date: Tue Feb 24 16:54:10 2004 Subject: [Expat-discuss] Legal issue: Using libexpat.dll in freeware projects? Message-ID: <200402242150.i1OLolQ06412@mailgate5.cinetic.de> Hi, after reading the MIT license, I'm not quite sure about it, so I put my question here: Can I include the file "libexpat.dll" to closed-source freeware projects? Thanx Stefan From fdrake at acm.org Tue Feb 24 17:13:19 2004 From: fdrake at acm.org (Fred L. Drake, Jr.) Date: Tue Feb 24 17:13:28 2004 Subject: [Expat-discuss] Legal issue: Using libexpat.dll in freeware projects? In-Reply-To: <200402242150.i1OLolQ06412@mailgate5.cinetic.de> References: <200402242150.i1OLolQ06412@mailgate5.cinetic.de> Message-ID: <200402241713.19893.fdrake@acm.org> On Tuesday 24 February 2004 04:50 pm, Stefan Meyer wrote: > after reading the MIT license, I'm not quite sure about > it, so I put my question here: Can I include the file > "libexpat.dll" to closed-source freeware projects? I'm not a lawyer and can't give you legal advice. But it's certainly our intention that you be able to use Expat that way. -Fred -- Fred L. Drake, Jr. PythonLabs at Zope Corporation From Aruna.Bhaskara at wellsfargo.com Tue Feb 24 19:36:06 2004 From: Aruna.Bhaskara at wellsfargo.com (Aruna.Bhaskara@wellsfargo.com) Date: Tue Feb 24 19:36:21 2004 Subject: [Expat-discuss] utf-8 encoding Message-ID: <97E48D48247F4844831AA5E0096149353360BB@msgswbcacah02.wellsfargo.com> Hi All I am trying to use utf-8 encoding my input file has some multibyte character like below . If I parse it through expat and print the output to a file I see two bytes Shouldn't it be single byte or since its utf-8 encoding it represent as two bytes and the progreammer has to take care of interpreting the 2 bytes. If I use the xerces parser I see one byte being returned. Let me know what I am doing wrong. (single byte) ? = ?'(two bytes) Thanks Aruna From karl at waclawek.net Tue Feb 24 21:06:04 2004 From: karl at waclawek.net (Karl Waclawek) Date: Tue Feb 24 21:06:51 2004 Subject: [Expat-discuss] utf-8 encoding References: <97E48D48247F4844831AA5E0096149353360BB@msgswbcacah02.wellsfargo.com> Message-ID: <002401c3fb43$ecdb4700$0207a8c0@karl> ----- Original Message ----- From: > I am trying to use utf-8 encoding my input file has some multibyte > character like below . If I parse it through expat and print the output > to a file I see two bytes > > Shouldn't it be single byte or since its utf-8 encoding it represent as > two bytes and the progreammer has to take care of interpreting the 2 bytes. If the character is two bytes in utf-8, then Expat must return two bytes. > If I use the xerces parser I see one byte being returned. Let me know > what I am doing wrong. I guess you are doing nothing wrong. Maybe Xerces is wrong? Karl From fdrake at acm.org Tue Feb 24 23:23:31 2004 From: fdrake at acm.org (Fred L. Drake, Jr.) Date: Tue Feb 24 23:24:06 2004 Subject: [Expat-discuss] utf-8 encoding In-Reply-To: <002401c3fb43$ecdb4700$0207a8c0@karl> References: <97E48D48247F4844831AA5E0096149353360BB@msgswbcacah02.wellsfargo.com> <002401c3fb43$ecdb4700$0207a8c0@karl> Message-ID: <200402242323.31414.fdrake@acm.org> On Tuesday 24 February 2004 09:06 pm, Karl Waclawek wrote: > If the character is two bytes in utf-8, then Expat must return two bytes. In UTF-8 mode, yes. In UTF-16 mode, it'll return some form of wide character. > I guess you are doing nothing wrong. Maybe Xerces is wrong? Or Xerxes is returning wide characters, and the word "byte" doesn't really reflect what's in the sources. We don't have enough information here to be sure, and I don't know the Xerxes interface, so can't speak to what it's actually doing. -Fred -- Fred L. Drake, Jr. PythonLabs at Zope Corporation From fdrake at acm.org Tue Feb 24 23:23:31 2004 From: fdrake at acm.org (Fred L. Drake, Jr.) Date: Wed Feb 25 00:29:32 2004 Subject: [Expat-discuss] utf-8 encoding In-Reply-To: <002401c3fb43$ecdb4700$0207a8c0@karl> References: <97E48D48247F4844831AA5E0096149353360BB@msgswbcacah02.wellsfargo.com> <002401c3fb43$ecdb4700$0207a8c0@karl> Message-ID: <200402242323.31414.fdrake@acm.org> On Tuesday 24 February 2004 09:06 pm, Karl Waclawek wrote: > If the character is two bytes in utf-8, then Expat must return two bytes. In UTF-8 mode, yes. In UTF-16 mode, it'll return some form of wide character. > I guess you are doing nothing wrong. Maybe Xerces is wrong? Or Xerxes is returning wide characters, and the word "byte" doesn't really reflect what's in the sources. We don't have enough information here to be sure, and I don't know the Xerxes interface, so can't speak to what it's actually doing. -Fred -- Fred L. Drake, Jr. PythonLabs at Zope Corporation From kai-xuan.l.chang at lmco.com Fri Feb 27 14:19:01 2004 From: kai-xuan.l.chang at lmco.com (Chang, Kai-Xuan L) Date: Sat Feb 28 11:31:42 2004 Subject: [Expat-discuss] Tabs/Carriage Returns Removal... Message-ID: <220491FE392A84499875D0864CAA5A92BD8EB2@emss09m07.us.lmco.com> Try assign len=0 and continue process.