Problem in first building

Questions about Wine on macOS.
Locked
Masoud N.
Newbie
Newbie
Posts: 2
Joined: Sun Apr 21, 2013 1:55 am

Problem in first building

Post by Masoud N. »

Hi
Which path Wine's files should be located?
I installed Wine 1.5.27 in my OS10.8 getting help from: "Build Wine, the lightweight way" (http://wiki.winehq.org/MacOSX/Building)
xcode 4.4 and XQuart have been installed.
but when i run ./configure the following error appears:

Last login: Sun Apr 21 11:11:43
Ns-MacBook-Air:~ user$ /Users/user/Downloads/Programs/wine-1.5.27/configure ; exit;
checking build system type... i386-apple-darwin12.0.0
checking host system type... i386-apple-darwin12.0.0
checking whether make sets $(MAKE)... no
checking for gcc... no
checking for cc... no
checking for cl.exe... no
configure: error: in `/Users/user':
configure: error: no acceptable C compiler found in $PATH
See `config.log' for more details
logout
[Process completed]
doh123
Level 8
Level 8
Posts: 1227
Joined: Tue Jul 14, 2009 1:21 pm

Re: Problem in first building

Post by doh123 »

Run XCode.app, and go in preferences and make sure to have it download and install command line tools... then you'll have the compliers needed to get past that point,
Masoud N.
Newbie
Newbie
Posts: 2
Joined: Sun Apr 21, 2013 1:55 am

Re: Problem in first building

Post by Masoud N. »

Hi
thanks, that was helpful.
I run .\configure and "do make" (by typing "make" in Terminal!!)
but i don't know what it does mean:

For XQuartz:
./configure --verbose --x-includes=/opt/X11/include --x-libraries=/opt/X11/lib
make
doh123
Level 8
Level 8
Posts: 1227
Joined: Tue Jul 14, 2009 1:21 pm

Re: Problem in first building

Post by doh123 »

Masoud N. wrote:Hi
thanks, that was helpful.
I run .\configure and "do make" (by typing "make" in Terminal!!)
but i don't know what it does mean:

For XQuartz:
./configure --verbose --x-includes=/opt/X11/include --x-libraries=/opt/X11/lib
make
If you install XQuartz (and updated X11 and not Apple's old junk), then it installs to /opt/X11, so you need to do your configure line that way... you have to do the configure before doing make. You said you already ran configure, but you ran it at default options instead of the ones specified.
Locked