Re: Static Build of Xerces/Windows VC7.1

2005-01-25 Thread Alberto Massari
At 06.50 25/01/2005 -0800, Sanjiv Deshpande wrote: I should have browsed the newsgroup before posting There were atleast two ways in which you could comiple xerces statically, First Method, - First change the project type from dll to static lib. - Remove the Win32MsgLoader from the project and add

Re: Static Build of Xerces/Windows VC7.1

2005-01-25 Thread Sanjiv Deshpande
I should have browsed the newsgroup before posting There were atleast two ways in which you could comiple xerces statically, First Method, - First change the project type from dll to static lib. - Remove the Win32MsgLoader from the project and add the InMemMsgLoader instead. - Change the project

Re: Static Build of Xerces/Windows VC7.1

2005-01-25 Thread Alberto Massari
Hi Sanjiv, At 21.15 24/01/2005 -0800, Sanjiv Deshpande wrote: Hi all, is there a documentation as to how to build xalan statically on windows/vc7.1 Did you compile Xalan or Xerces? I tried it and got a lib file of some 100 mb in debug mode. I think i am not doing it correctly. Any help would be ap

Re: static build

2004-09-19 Thread Jay Berkenbilt
Norman H. Samuelson <[EMAIL PROTECTED]>: > Recently I posted a note that we were working on building a static xerces > library. > > We have succeeded on three platforms: Windows, Sun, Linux. > . . . > > > Linux: > > The only thing

Re: static build of Xerces

2004-08-25 Thread Gareth Reakes
Hi, We have built a static Xerces library on Solaris and on Windows. We will be building it soon on AIX, IRIX, and TRU64 machines. I would be happy to submit the changes in the makefiles needed to build the static version for each of those platforms, with the hope that it will be included wit

RE: Static build on win32

2001-08-30 Thread Murphy, James
at we need! I should look but does xerces use anything except new? Jim > > > -Original Message- > From: Murphy, James [mailto:[EMAIL PROTECTED]] > Sent: Thursday, August 30, 2001 9:31 AM > To: '[EMAIL PROTECTED]' > Subject: RE: Static build on win32 > &g

RE: Static build on win32

2001-08-30 Thread Julia Larson
, Peter [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 30, 2001 7:18 AM To: '[EMAIL PROTECTED]' Subject: RE: Static build on win32 > What do you mean by "component"? In this case, anything that has a statically linked CRT. > Is Xerces a "component" ? Yes.

RE: Static build on win32

2001-08-30 Thread Erik Schroeder
2001 9:31 AM To: '[EMAIL PROTECTED]' Subject: RE: Static build on win32 Read "[EMAIL PROTECTED]"'s bug submission [1]. He is proposing void XMLPlatformUtils::Free(void *p) That can be called to free memory allocated by Xerces (perhaps from a statically linked CRT)

RE: Static build on win32

2001-08-30 Thread Murphy, James
ilto:[EMAIL PROTECTED]] > Sent: Thursday, August 30, 2001 10:18 AM > To: '[EMAIL PROTECTED]' > Subject: RE: Static build on win32 > > > > > What do you mean by "component"? > > In this case, anything that has a statically linked CRT. > >

RE: Static build on win32

2001-08-30 Thread Armistead, Peter
> What do you mean by "component"? In this case, anything that has a statically linked CRT. > Is Xerces a "component" ? Yes. > If so, how can I ensure that the strings are freed inside Xerces ? You would have to create a release function inside Xerces to do this I imagine. > Is there anothe

Re: Static build on win32

2001-08-30 Thread Daniel Hägg
"Armistead, Peter" wrote: > If you build the app and the components with static CRT you will get > different heaps for each component. > > If you work this way you need to make sure the strings are freed inside the > same component that allocated them, Thanks again for your reply. What do you m

RE: Static build on win32

2001-08-30 Thread Armistead, Peter
> Thanks for the reply. But I think you did not understand me. > I don't want my application to depend on msvcrt.dll and msvcp60.dll. > I want to use static libs. I understand that all "parts" of a > process must use > the same kind of libs. In order to make it work, I need to > rebuild Xerces >

Re: Static build on win32

2001-08-30 Thread Daniel Hägg
"Armistead, Peter" wrote: > Daniel, > > Have you checked that you are using the DLL version of CRT? > > If not, the freeing of memory will fail due to different heaps, > > Peter Thanks for the reply. But I think you did not understand me. I don't want my application to depend on msvcrt.dll and m

RE: Static build on win32

2001-08-30 Thread Armistead, Peter
Daniel, Have you checked that you are using the DLL version of CRT? If not, the freeing of memory will fail due to different heaps, Peter > -Original Message- > From: Daniel Hägg [mailto:[EMAIL PROTECTED]] > Sent: Donnerstag, 30. August 2001 14:38 > To: [EMAIL PROTECTED] > Subject: St