Dimitrie O. Paun wrote:
On September 12, 2003 06:47 am, Vincent BĂ©ron wrote:
Try setting WINEDLLPATH="/usr/local/lib/wine:`pwd`" and see if it goes further.
No, I got the same problem:
[dimi@dimi calendar]$ export WINEDLLPATH=/usr/local/lib/wine:`pwd` [dimi@dimi calendar]$ echo $WINEDLLPATH /usr/local/lib/wine:/home/dimi/dev/wine/wxWindows/samples/calendar [dimi@dimi calendar]$ wine calendar.exe.so Error: Could not load the application's module calendar-wrap.dll (126) [dimi@dimi calendar]$ ls *.so calendar.exe.so calendar-wrap.dll.so
It is there, it will just not load it...
WINEDLLPATH is always (re)set by the wine(wrapper) script Does this help ?
Index: winewrapper =================================================================== RCS file: /home/cvs/cvsroot/wine/wine/tools/winewrapper,v retrieving revision 1.6 diff -u -u -r1.6 winewrapper --- winewrapper 1 May 2003 03:16:21 -0000 1.6 +++ winewrapper 14 Sep 2003 06:48:27 -0000 @@ -68,7 +68,12 @@ else LD_LIBRARY_PATH="$topdir/dlls:$topdir/libs" fi -WINEDLLPATH="$topdir/dlls:$topdir/programs" +if [ -n "$WINEDLLPATH" ] +then + WINEDLLPATH="$topdir/dlls:$topdir/programs:$WINEDLLPATH" +else + WINEDLLPATH="$topdir/dlls:$topdir/programs" +fi WINESERVER="$topdir/server/wineserver" WINELOADER="$topdir/miscemu/wine" export LD_LIBRARY_PATH WINEDLLPATH WINESERVER WINELOADER
A+