Important Notice: Our web hosting provider recently started charging us for additional visits, which was unexpected. In response, we're seeking donations. Depending on the situation, we may explore different monetization options for our Community and Expert Contributors. It's crucial to provide more returns for their expertise and offer more Expert Validated Answers or AI Validated Answers. Learn more about our hosting issue here.

I just built the distribution binary, and when I try to check out Subversion, I get an error about an “Unrecognized URL scheme.” Whats up with that?

0
Posted

I just built the distribution binary, and when I try to check out Subversion, I get an error about an “Unrecognized URL scheme.” Whats up with that?

0

Subversion uses a plugin system to allow access to repositories. Currently there are three of these plugins: ra_local allows access to a local repository, ra_dav which allows access to a repository via WebDAV, and ra_svn allows local or remote access via the svnserve server. When you attempt to perform an operation in Subversion, the program tries to dynamically load a plugin based on the URL scheme. A `file://’ URL will try to load ra_local, and an `http://’ URL will try to load ra_dav. The error you are seeing means that the dynamic linker/loader can’t find the plugins to load. This normally happens when you build Subversion with shared libraries, then attempt to run it without first running ‘make install’. Another possible cause is that you ran make install, but the libraries were installed in a location that the dynamic linker/loader doesn’t recognize. Under Linux, you can allow the linker/loader to find the libraries by adding the library directory to /etc/ld.so.conf and running l

Related Questions

What is your question?

*Sadly, we had to bring back ads too. Hopefully more targeted.