Subversion 1.6.13 ソースからコンパイル&インストール
ソースからインストールするのは、yumなどでインストールされるクライアントが古すぎるから。他のクライアントソフトと併用するとき不都合あり。
Subversionがどんどんバージョンアップしていくので、コマンドをコピペしたい私のためのメモ。
公式サイト
ソースのダウンロード
# cd /usr/local/src # wget http://subversion.tigris.org/downloads/subversion-1.6.13.tar.bz2 # tar xjf subversion-1.6.13.tar.bz2 # wget http://subversion.tigris.org/downloads/subversion-deps-1.6.13.tar.bz2 # tar xjf subversion-deps-1.6.13.tar.bz2
“deps”を利用すると、本体のソースとともに依存するライブラリが用意されます。
コンパイル
configure して
# cd subversion-1.6.13 # ./configure --without-berkeley-db \ --without-apxs \ --without-swig \ --without-serf \ --with-ssl
WARNINGが出ることがあるけど、svnクライアントとして使う分には大丈夫。サーバーの場合でもfsfsファイルシステムを使うならまったく問題なし。
configure: WARNING: we have configured without BDB filesystem support You don't seem to have Berkeley DB version 4.0.14 or newer installed and linked to APR-UTIL. We have created Makefiles which will build without the Berkeley DB back-end; your repositories will use FSFS as the default back-end. You can find the latest version of Berkeley DB here: http://www.oracle.com/technology/software/products/berkeley-db/index.html
makeして、make install
# make && make install
以上!
コメント