> Okay, so after checking that I had installed the required programs for installation on a mac I downloaded the latest version of wine (wine-1.1.40). I then used: > > ./compile --verbose --disable-win16 > > worked fine. > > then entered: > > make default && make > > and all went well. This was until it decided to find this: > > Wondering if anyone else had the same problem.... because I have no idea about the file not being the required architecture..... > > Any help would be greatly appreciated. See http://wiki.winehq.org/MacOSX/Building At the minimum, you'll need to set your compiler to produce 32-bit code: export CFLAGS="-arch i386 -m32" export CXXFLAGS="$CFLAGS"