http://bugs.winehq.org/show_bug.cgi?id=30557
Mikael Åkersund mikael.akersund@bigfoot.com changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |mikael.akersund@bigfoot.com
--- Comment #71 from Mikael Åkersund mikael.akersund@bigfoot.com 2013-09-22 12:15:25 CDT --- (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