I've re-downloaded the source through git several times and used a few different ./configure commands, but here's how I'm doing it from start to finish. These commands just download the source and compile it, I'm not making any modifications to it and still getting the same errors as I do with the patches I need to put in.
Code: Select all
v1Mac-Pro:~ v1nsai$ git clone git://source.winehq.org/git/wine.git ~/Downloads/wine-git-new
v1Mac-Pro:~ v1nsai$ cp -r ~/Downloads/wine-git-new ~/Downloads/wine-git
v1Mac-Pro:~ v1nsai$ cd ~/Downloads/wine-git
v1Mac-Pro:wine-git v1nsai$ ./configure --verbose --x-includes=/opt/X11/include --x-libraries=/opt/X11/lib
v1Mac-Pro:wine-git v1nsai$ make
v1Mac-Pro:wine-git v1nsai$ ./wine ~/Downloads/wine-git/programs/winecfg
After running the last command, the following errors come up:
Code: Select all
err:seh:raise_exception Unhandled exception code c0000005 flags 0 addr 0x7bc628de
wine: Invalid handle.
Segmentation fault: 11
When running ./configure, I do get some warnings that certain things won't work because libraries are missing, but they don't seem to be related to core functions. Here's the list of warnings ./configure gives me:
Code: Select all
configure: libsane 32-bit development files not found, scanners won't be supported.
configure: libv4l 32-bit development files not found.
configure: libgphoto2 32-bit development files not found, digital cameras won't be supported.
configure: liblcms 32-bit development files not found, Color Management won't be supported.
configure: OSS sound system found but too old (OSSv4 needed), OSS won't be supported.
configure: libcapi20 32-bit development files not found, ISDN won't be supported.
configure: libgsm 32-bit development files not found, gsm 06.10 codec won't be supported.
configure: libtiff 32-bit development files not found, TIFF won't be supported.
configure: WARNING: libjpeg 32-bit development files not found, JPEG won't be supported.
configure: WARNING: libpng 32-bit development files not found, PNG won't be supported.
configure: Finished. Do 'make' to compile Wine.