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