2008-11-24, 09:12 PM
Quote:Well, the first problem is now solved and we're running into a different beast now.
The problem you're now getting is that you don't have a compiler installed. A compiler takes the source code of the program (in this case, the Wine source that you downloaded) and converts it into a binary program file that your computer can run.
The compiler that we use most often on Linux is called gcc, so we want to install that alongside a few other tools we'll need to build the program. You can install those by running the following command as root in a terminal:
Code:yum groupinstall "Development Tools"
<div>
or if you prefer you can use the graphical software install tools to install the whole Development Tools packages.
Once this install is complete, try running ./configure again. It might work straight from there, or we'll have the next error message to solve. :)
</div>
I'm having some difficulty because I don't have an internet connection in my home. I believe all the development tools are on my install dvd. GCC is for sure and it's in a 40mb folder called Development Tools. Is there another alternative to YUM?