320x100
# svn co https://localhost/svn/repo
svn: E170000: Unrecognized URL scheme for 'https://localhost/svn/repo
위와 같이 에러가 뜬다면
# wget http://www.webdav.org/neon/neon-0.29.3.tar.gz
# tar -xzvf neon-0.29.3.tar.gz
# cd neon-0.29.3
# ./configure --with-ssl
# make && make install
# cd /usr/local/subversion-1.7.*
# ./configure --with-ssl --with-neon=/usr/local
# make && make install
하고 다시 구동하면 정상적으로 된다.
320x100