Changes between Version 22 and Version 23 of dev/MacOSX
- Timestamp:
- Oct 27, 2006, 2:42:18 PM (18 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
dev/MacOSX
v22 v23 1 = Get it Running=1 = MacOSX = 2 2 [[TracNav(TracNav/TOC)]] 3 == Mac OS X == 4 !! THIS DOCUMENT IS BEING REWRITTEN FOR USAGE WITH OS-X 10.4 AND THE NEWEST LIBRARIES !! 3 5 4 == Installing the Utilities == 6 5 1. '''GCC, the GNU Compiler''':[[br]] Read about installation of the [http://www.tech-recipes.com/mac_system_administration_tips726.html MacOSX coding env] or just download the [http://developer.apple.com/tools/xcode/ "XCode Tools"] from the [https://connect.apple.com apple development center] where you will have to create an account if you don't have one already. Wow, the xcode package is about 300MB big! 7 2. '''Fink and Fink Commander''':[[br]] On the [http://fink.sourceforge.net/ fink] website you will find the fink program, which you will need to install the libraries. Go there to the download zone and get the binary (.dmg) version.8 3. '' (optional)'' Now you will want to download the fink commander, its a gui for the fink program that makes it much easier to work with. you can get it from the [http://finkcommander.sourceforge.net/ sourceforge site]6 2. '''Fink''':[[br]] On the [http://fink.sourceforge.net/ fink] website you will find fink, which you will need to install the libraries. Go to the download area there and get the binary (.dmg) version of fink. 7 3. '''Fink Commander''': Now you can download the fink commander, which is a GUI for fink, that makes it much easier to work with. You can get it from [http://finkcommander.sourceforge.net/ sourceforge]. 9 8 10 9 '''Fink Utilities''' 11 These utilities must be install with fink. 12 either you do it with the easy to use GUI (finkcommander), or you use the syntax 10 These utilities must be install with fink. Either you do it with the finkcommander or you write: 13 11 {{{ 14 12 $ fink list [package-part-name] // choose the one you like and then … … 21 19 $ fink install autoconf 22 20 }}} 23 2. '''Subversion '''[[br]]21 2. '''Subversion with SSL'''[[br]] 24 22 {{{ 25 23 $ fink install svn-client-ssl … … 31 29 1. X-code must be installed. 32 30 2. You can find a collection of all Tools and Libraries you need [http://svn.orxonox.net/webdev/develop/osX here] 33 2. install SDL.framework, and read the documentation on[http://www.libsdl.org SDL] download section31 2. Install the SDL framework and read the documentation on the [http://www.libsdl.org SDL] download section 34 32 35 33 Use the fink commander to install … … 39 37 40 38 41 Unfortunately SDL_ttf is not installable viaFink Commander, so download the source directly from [http://www.libsdl.org/projects/SDL_ttf] and compile it yourself.42 Before installing the SDL_ttf library make sure you have freetype2.0 or later installed on your Mac. You can get it alsowith finkcommander:39 Unfortunately SDL_ttf is not installable with Fink Commander, so download the source directly from [http://www.libsdl.org/projects/SDL_ttf] and compile it yourself. 40 Before installing SDL_ttf make sure you have freetype2.0 or later installed on your Mac. You can also get freetype2.0 with finkcommander: 43 41 * freetype2.0 44 42 To install SDL_ttf to the fink directory use the following configure command: … … 46 44 wraith user # ./configure --prefix=/sw/ 47 45 }}} 48 Then compile and install by revoking. You will have to be superuser to install the libraries (admin is not enough). To enable superuser login:46 Then compile and install by revoking. You have to change to superuser to install the libraries: 49 47 {{{ 50 48 wraith user # sudo passwd root … … 62 60 63 61 == Compiling == 64 Now switch to the linux guides and continue there with the compiling sections. 65 66 67 68 (about this install doc: 69 * would be nice to: 70 1. use frameworks on osX (i did not manage to use them) 71 2. check it if it works for you 62 Switch to the [wiki:LinuxGentoo Gentoo Linux] guide and continue with the compiling sections.