On Fri, 23 Feb 2001, Patrik Stridvall wrote:
Sure Wine uses (or can be made to use rpath), but I'm not sure we want to require all Winelib applications to do the same.
No, the configure script applies rpath to the winelib dlls. The wine binary itself doesn't use rpath by default.
It would IMHO be much better if a simple Winelib applications just could add -lwin32_XXX and be done with it.
Winelib apps should never link to the .so files using -lXXX. They should add "import XXX" to the main .spec file and let winelib handle the actual loading, but never link to the libs directly at the ELF level. At least that's Alexandre's plan...