If you've already tried to compile subversion for Fedora 19, and you got the error message when doing a svn update of svn checkout:
Unrecognized URL scheme for ...
then you have to compile subversion with https support. This is done by default, but you have to have the serf libraries installed. Here's how to get things working:
sudo yum install libserf libserf-devel apr-util apr-util-devel apr apr-devel
Then, you can compile subversion normally, like this:
tar -zxvf subversion-1.8.10.tar.gz
cd subversion-1.8.10
./configure
make -j16
sudo make install
No comments:
Post a Comment