Symtom
After an xcode update version 6.0.1 was released, Subversion 1.6.23 was removed for security reasons. http://support.apple.com/kb/HT6444?viewlocale=en_US&locale=en_USCurrently I don't wish to update to the latest SVN just yet.
Work around
For people using xcode and lost their SVN "subversion-1.6.23" and don't wish to change just yet due to project using that version at the time before launch.Follow these rough steps (So fill in the gaps to extract the files) to compile a specific version.
- Agree to xcode license
sudo xcodebuild -license - Download xcode command line tools
sudo xcode-select --install - Download, extract, compile and install neon
http://www.webdav.org/neon/neon-0.29.0.tar.gz
./configure --with-ssl
make
make install - Download, extract, compile and install subversion
http://archive.apache.org/dist/subversion/subversion-1.6.23.tar.gz
./configure -without-apxs --with-neon=/usr/local --with-ssl
make
make install
- Test "svn" has http and https protocols
/usr/local/bin/svn --version
You should see ra_neon http and https
Then you can configure your IDEs (e.g. Coda) or use setup bash_alias to point to point to "/usr/local/bin/svn".
You can later change to the latest SVN when you feel ready which is located at "/usr/bin/svn".
No comments:
Post a Comment