我在 svn 上有最新版本,但它没有 ra_neon。我需要通过 https 协议访问 svn 存储库。有没有办法添加 ra_neon 模块?
这是一台 OSX 10.8.4 计算机。
svn --version
svn, version 1.7.8 (r1419691)
compiled Feb 8 2013, 14:56:55
Copyright (C) 2012 The Apache Software Foundation.
This software consists of contributions made by many people; see the NOTICE
file for more information.
Subversion is open source software, see (link removed)
The following repository access (RA) modules are available:
* ra_svn : Module for accessing a repository using the svn network protocol.
- with Cyrus SASL authentication
- handles 'svn' scheme
* ra_local : Module for accessing a repository on local disk.
- handles 'file' scheme
那里的大多数帖子都说您需要编译 SVN 源代码并以这种方式添加 neon 模块。我注意到我也可以更新一个 SVN 版本。所以我尝试了这条路线。
这是 SVN 更新 URL:https ://subversion.apache.org/download/#recommended-release 这里是 neon 的 URL:http ://www.webdav.org/neon/
然后我尝试使用以下命令为其配置霓虹灯支持:./configure --with-neon=/path_to_neon/neon-0.29.6/
make 和 make install 完成后,我查看它是否已安装。令我恐惧的是,SVN 已更新,但没有安装霓虹灯模块。
svn --version
svn, version 1.7.9 (r1462340)
compiled May 13 2013, 10:08:54
Copyright (C) 2013 The Apache Software Foundation.
This software consists of contributions made by many people; see the NOTICE
file for more information.
Subversion is open source software, see (link removed)
The following repository access (RA) modules are available:
* ra_svn : Module for accessing a repository using the svn network protocol.
- with Cyrus SASL authentication
- handles 'svn' scheme
* ra_local : Module for accessing a repository on local disk.
- handles 'file' scheme
同样,有谁知道如何安装或启用 ra_neon 模块?