http://bugs.winehq.org/show_bug.cgi?id=30557
--- Comment #73 from Rafał Mużyło galtgendo@o2.pl 2013-09-22 12:55:26 CDT --- (In reply to comment #71)
(In reply to comment #60)
(In reply to comment #58)
add -ldl somewhere..
As we're being lazy here, appending '@LIBDL@' to 'LIBPTHREAD =' line in loader/Makefile.in looks as if it should work.
There is a slight problem with just setting "LIBPTHREAD = @LIBPTHREAD@ @LIBDL@" in 'loader/Makefile.in'.
It breaks the ability to run wine directly from the build directory without first doing a "make install" as the "wine" wrapper script in the build directory will look for stuff in the install directory instead of the build directory.
If you do:
<quick edit of source file> ./configure --prefix=/usr/local/wine-hacks-1.7.02-local-00 make -j7 ./wine WindowsExecutable.exe
You'll only get errors because wine can't find '/usr/local/wine-hacks-1.7.02-local-00/bin/wineserver' instead of using the freshly compiled '<sourcedir>/server/wineserver'.
Doing a 'make install' fixes that but makes regression-testing a bit more annoying
Are you testing by running via 'wine' symlink in $(topbuildir) or otherwise, cause the second might not work.