Hello everybody,
I am trying to build WINE of Mac OS Lion (10.7.4) using the command line tools from Xcode 4.3.3. I don't want to use macports because that installs a huge amount of dependencies that I don't want, so I decided to compile from source. I downloaded the stable tar ball and built with this:
./configure --without-fontconfig --x-includes=/usr/X11/include --x-libraries=/usr/X11/lib
make
sudo make install
It builds fine, but whenever I start winecfg, this happens:
Code:
wine: Unhandled page fault on read access to 0xffffffff at address 0x90d4b820 (thread 000b), starting debugger...
err:seh:raise_exception Unhandled exception code c0000005 flags 0 addr 0x7bc8c2a5
err:process:__wine_kernel_init boot event wait timed out
Wine cannot find the FreeType font library. To enable Wine to
use TrueType fonts please install a version of FreeType greater than
or equal to 2.0.5.
http://www.freetype.org
err:x11drv:process_attach failed to load libX11.6.dylib: dlopen(libX11.6.dylib, 266): image not found
err:x11drv:process_attach failed to load libX11.6.dylib: dlopen(libX11.6.dylib, 266): image not found
wine: Unhandled page fault on read access to 0xffffffff at address 0x7bc8c2a5 (thread 0009), starting debugger...
err:seh:raise_exception Unhandled exception code c0000005 flags 0 addr 0x7bc8c2a5
There are two problems: the unhanded page fault and the fact that wine isn't linked to X11 at compile time, so each time I run wine cfg I need to use LD_LIBRARY_PATH=/usr/X11/lib (but the macports build doesn't have to! what do they do?).
When I fix the dlopen stuff:
Code:
wine: Unhandled page fault on read access to 0xffffffff at address 0x90d4b820 (thread 0015), starting debugger...
err:seh:raise_exception Unhandled exception code c0000005 flags 0 addr 0x7bc8c2a5
err:process:__wine_kernel_init boot event wait timed out
wine: Unhandled page fault on read access to 0xffffffff at address 0x7bc8c2a5 (thread 0013), starting debugger...
err:seh:raise_exception Unhandled exception code c0000005 flags 0 addr 0x7bc8c2a5
The most frustrating part is that the macports build works just fine. What am I doing wrong to make WINE hate me so? Everything I do with this wine binary results in the page fault on read access to 0xffffffff![/quote]