Re: undefined symbol: GetPrinterDataA

2001-02-26 Thread gerard patel
o run Wine, however, I get the following error: BUILTIN32_dlopen failed to load .so lib for builtin wineps.dll: /usr/lib/wine/libwineps.so: undefined symbol: GetPrinterDataA Note the differences between the Makefile for common dialog (where this works) and the Makefile for wineps

Re: Re: undefined symbol: GetPrinterDataA

2001-02-26 Thread Eric Pouech
wineps : # Generated automatically from Makefile.in by configure. TOPSRCDIR = ../.. TOPOBJDIR = ../.. SRCDIR= . MODULE= wineps SOVERSION = 1.0 ALTNAMES = wineps16 IMPORTS = user32 gdi32 kernel32 ntdll in this case, just add winspool.drv to the IMPORT list in the Makefile.in, rerun

Re: undefined symbol: GetPrinterDataA

2001-02-26 Thread Ove Kaaven
o run Wine, however, I get the following error: BUILTIN32_dlopen failed to load .so lib for builtin wineps.dll: /usr/lib/wine/libwineps.so: undefined symbol: GetPrinterDataA Ideas? I'm not sure if wineps is completely dll-separated yet. In any case, there is an IMPORTS

Re: undefined symbol: GetPrinterDataA

2001-02-26 Thread Dimitrie O. Paun
From: "Ove Kaaven" [EMAIL PROTECTED] I'm not sure if wineps is completely dll-separated yet. BTW, do we have a list of dlls that are not yet dll-separated? (I know, if we had, you'd know about wineps...:) ) Better yet, how can we tell if a dll is separated? Would it be useful to create such

Re: undefined symbol: GetPrinterDataA

2001-02-26 Thread Ian Pilcher
Eric Pouech wrote: in this case, just add winspool.drv to the IMPORT list in the Makefile.in, rerun configure, and it should work. That did the trick. Thanks! -- Ian Pilcher

Re: undefined symbol: GetPrinterDataA

2001-02-26 Thread Alexandre Julliard
"Dimitrie O. Paun" [EMAIL PROTECTED] writes: Would it be useful to create such a list, and maybe list for each of the dlls in there, why there aren't separated yet? Here's a list of the undefined symbols that prevent separation of the remaining dlls (I didn't include user/gdi/kernel to avoid

undefined symbol: GetPrinterDataA

2001-02-25 Thread Ian Pilcher
wing error: BUILTIN32_dlopen failed to load .so lib for builtin wineps.dll: /usr/lib/wine/libwineps.so: undefined symbol: GetPrinterDataA Ideas? -- Ian Pilcher [EMAIL PROTECTED]

Re: undefined symbol: GetPrinterDataA

2001-02-25 Thread Ian Pilcher
[EMAIL PROTECTED] wrote: I think maybe you have created a new dependency and need to run make depend again? If I understand the import mechanism, something (winebuild?) generates stubs for the functions you import and ties them in to the import mechanism, so they shouldn't be left hanging

Re: undefined symbol: GetPrinterDataA

2001-02-25 Thread Ian Pilcher
[EMAIL PROTECTED] wrote: Try: import winspool instead of winspool.drv, and see if that helps. Just a guess. Nope. winebuild complains that it "could not open .so file for winspool". I've uncovered a couple of additional facts which (I hope) may shed some light on the situation. I