http://bugs.winehq.org/show_bug.cgi?id=8439
--- Comment #39 from André H. nerv@dawncrow.de 2012-02-12 11:43:59 CST --- The Problem for the patch is not related to this bug IIRC:
--- snip --- - todo_wine okChildPath("longPath", path); + /* strip the .so extension for comparison */ + if ((extpos = strstr(path, libext))) *extpos = 0; + okChildPath("longPath", path); --- snip ---
is needed because we get the path with ".exe.so" ending in wine. I can remember that i tried to write a patch that lets wine execute winelib apps if a native one isn't found, but that is quite hard it seemed. e.g. if you want to run test.exe and in your path is only test.exe.so it isn't executed atm, fixing that would make my test happy...