Re: [winegcc] Include .so files when calling winebuild

2005-01-09 Thread Boaz Harrosh
Alexandre Julliard wrote: I'm not sure I follow you, if your .so files have been built correctly they shouldn't contain undefined references to Windows APIs. Could you please show an example of the situation that causes a problem? .so that are not compiled as dll or fake dll (fake dll is when th

Re: [winegcc] Include .so files when calling winebuild

2005-01-07 Thread Peter Berg Larsen
On 6 Jan 2005, Alexandre Julliard wrote: > I'm not sure I follow you, if your .so files have been built correctly > they shouldn't contain undefined references to Windows APIs. Could you > please show an example of the situation that causes a problem? On Thu, 6 Jan 2005, Dimitrie O. Paun wrote:

Re: [winegcc] Include .so files when calling winebuild

2005-01-06 Thread Dimitrie O. Paun
On Thu, Jan 06, 2005 at 10:10:50AM +0100, Peter Berg Larsen wrote: > No, but it is convinient to have. I need the fullpaths to the .so > libraries at certain point. Basicly I saw two ways of doing what: > > 1) Call [get|guess|try]_lib_path at the that point. > > 2) Save all previous result from g

Re: [winegcc] Include .so files when calling winebuild

2005-01-06 Thread Alexandre Julliard
Peter Berg Larsen <[EMAIL PROTECTED]> writes: > Changelog: > Currently when compiling a program, winegcc calls winebuild > to solve .def references. But winegcc drops .so files, > so any new .def symbols in a .so causes a unresolved symbol at > link time. This patch adds

Re: [winegcc] Include .so files when calling winebuild

2005-01-06 Thread Peter Berg Larsen
On Wed, 5 Jan 2005, Dimitrie O. Paun wrote: > On Wed, Jan 05, 2005 at 01:58:45PM +0100, Peter Berg Larsen wrote: > > +void strarray_set(strarray* arr, int index, const char* str) > > +{ > > +if (index >= arr->maximum) > > +{ > > + arr->maximum = index+10; > > + arr->base = xrealloc(arr

Re: [winegcc] Include .so files when calling winebuild

2005-01-05 Thread Dimitrie O. Paun
On Wed, Jan 05, 2005 at 01:58:45PM +0100, Peter Berg Larsen wrote: > +void strarray_set(strarray* arr, int index, const char* str) > +{ > +if (index >= arr->maximum) > +{ > + arr->maximum = index+10; > + arr->base = xrealloc(arr->base, sizeof(*(arr->base)) * arr->maximum); > + m