svn安装后,取不到https的资源

来源:互联网 发布:程序员办公室安静 编辑:程序博客网 时间:2024/04/27 14:42

最近在安装svn后,执行svn export  https://www.xxxx.xxx/svn/AAA 的时候报错。

说是不支持ssl。


我在安装svn的时候configure如下:(加入了ssl选项)

./configure  --with-ssl  --with-apxs=/user/local/apache2/bin/apxs --with-apr=/user/local/apache2 --with-apr-util=/user/local/apache2 --with-neon=/usr/local --with-swig=/usr/local/swig --without-jdk


为什么还是不行呢?

最后查找资料,原来是neon这个库安装的时候也需要ssl。

./configure --with-sslmakemake install

这样就好了。


自己从source安装就是容易漏掉一些东西。

原创粉丝点击