- Download neon, which adds http and https protocol support to svn
- cd to neon source root directory and run: ./configure --enable-shared --with-ssl
- Then run: make && sudo make install
- Download and extract svn source
- Download sqlite-amalgamation , extract it and copy to sqlite-amalgamation
- cd to svn source root directory
- run svn co http://svn.apache.org/repos/asf/apr/apr-util/branches/1.3.x apr-util
- run svn co http://svn.apache.org/repos/asf/apr/apr/branches/1.3.x apr
- cd to apr and run: ./buildconf
- cd to apr-util and run: ./buildconf
- go back to svn source root directory and run: ./configure --with-ssl
- edit files below
apr/build/apr_rules.mk:38 change $(top_builddir) to $(apr_builddir)
apr-util/build/rules.mk:38 change $(top_builddir) to $(apr_builddir) - make
- sudo make install
Friday, March 9, 2012
build subversion 1.7 for ubuntu 11.04
subversion 1.7 has many new fascinating features, like viewing diff in svn log command, and a cleaner directory layout (only one .svn folder in root directory, just like git does). But this version isn't available in ubuntu's official source. To upgrade to this new version, I choose to build it myself.
Subscribe to:
Post Comments (Atom)
1 comment:
Thank you very much~! How do you know we need to change the .mk files?
Post a Comment