1, 安装 openssl
wget
tar zxvf openssl-0.9.8.tar.gz
cd openssl-0.9.8
./config shared
make
sudo make install
2,安装 neon
wget
./configure --with-ssl --with-libs=/usr/local/ssl/
--prefix=/usr/local/neon
make
sudo make install
3. 编译 subversion 时带上 --with-ssl
./configure --with-ssl --with-neon=/usr/local/neon/
make