Changes between Version 73 and Version 74 of MacBuild
- Timestamp:
- Feb 13, 2013, 10:23:10 AM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
MacBuild
v73 v74 42 42 You can download Xcode 4.3 or Xcode 4.4 from Apple's App Store (it is large: about 2 GB). If you are a member of Apple's Mac Developer Program, you can also download it from Apple's web site: http://developer.apple.com. You can also register for free access to Apple developer tools at: https://developer.apple.com/programs/register/. 43 43 44 Source files are now archived using Subversion. You can download svnX, a free GUI application for running Subversion from either [http://www.apple.com/downloads/macosx/development_tools/svnx.html] or [http://www.lachoseinteractive.net/en/community/subversion/svnx/]. 45 46 You also need to install Subversion itself in the /usr/local/bin/ directory. By default, OS X and XCode install it in `/usr/bin/`. To copy it into `/usr/local/bin/`, enter the following in the Terminal utility application: 47 {{{ 48 cd /usr/bin 49 sudo cp -p svn* /usr/local/bin 50 }}} 51 Enter your administrator password when prompted to do so. 44 Source files are now archived within the [SourceCodeGit BOINC repository] ([source:boinc/mac_build mac_build]). 52 45 53 46 == Building BOINC Manager with embedded BOINC Client == … … 124 117 '''Note:''' Building wxMac-2.8.10 requires the MacOSX10.6.sdk, which is not included in Xcode 4.4 and later. If you are building wxMac-2.8.10 with Xcode 4.4, see the section [#InstallingandsettingupXcode Installing and setting up Xcode] for further information. 125 118 126 3. Get the BOINC source tree from SVN, and put it in the same BOINC_dev folder. To do this, type the following in Terminal:119 3. Get the BOINC source tree from the repository, and put it in the same BOINC_dev folder. To do this, type the following in Terminal: 127 120 {{{ 128 121 cd {path}/BOINC_dev/ 129 svn co http://boinc.berkeley.edu/svn/trunk/boinc 130 }}} 131 (You may change the name of the `boinc` directory to anything you wish.) Hint: if you have trouble getting this to work, try using `https` instead of `http`. 132 133 The command above retrieves the source code from the HEAD (TRUNK) or development branch of the SVN repository. See more information on [SourceCode getting the BOINC source code]. 122 git clone git://boinc.berkeley.edu/boinc.git boinc 123 }}} 124 (You may change the name of the `boinc` directory to anything you wish.) See more information on [SourceCode getting the BOINC source code]. 134 125 135 126 4. Run the script to build the c-ares, curl, openssl, wxMac, freetype, ftgl and sqlite3 libraries as follows: