Manta Interactive Ray Tracer Development Mailing List

Text archives Help


Re: [Manta] Problem with svn checkout


Chronological Thread 
  • From: James Bigler <bigler@cs.utah.edu>
  • Cc: "John Kichury" <jjk@sgi.com>, <manta@sci.utah.edu>
  • Subject: Re: [Manta] Problem with svn checkout
  • Date: Mon, 15 Oct 2007 06:21:21 -0600

This error message also may indicate that the version of svn you are using doesn't support https. You can verify this by typing:

$ svn --version
svn, version 1.4.2 (r22196)
   compiled Sep 18 2007, 13:25:33

Copyright (C) 2000-2006 CollabNet.
Subversion is open source software, see http://subversion.tigris.org/
This product includes software developed by CollabNet (http:// www.Collab.Net/).

The following repository access (RA) modules are available:

* ra_dav : Module for accessing a repository via WebDAV (DeltaV) protocol.
  - handles 'http' scheme
  - handles 'https' scheme
* ra_svn : Module for accessing a repository using the svn network protocol.
  - handles 'svn' scheme
* ra_local : Module for accessing a repository on local disk.
  - handles 'file' scheme

===============================================================
You should see "handles 'https' scheme" under ra_dav. If you don't, you need to recompile svn with https support.

James

On Oct 15, 2007, at 3:49 AM, Carson Brownlee wrote:

Hi John,
I double checked and checkout is working fine for me. Here is the answer from subversion's faq:

"I just built the distribution binary, and when I try to check out Subversion, I get an error about an "Unrecognized URL scheme." What's up with that?
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 ldconfig. If you don't wish to do this, or you don't have root access, you can also specify the library directory in the LD_LIBRARY_PATH environment variable."

hope that helps,

Carson




On Oct 15, 2007, at 3:41 AM, John Kichury wrote:

Hello,

I'm trying to obtain Manta and have problems getting svn to checkout the
code.
I installed subversion, and issued the following command as described on

http://code.sci.utah.edu/Manta/index.php/Main_Page and it produces an
error stating Unrecognizable URL scheme.

svn checkout https://code.sci.utah.edu/svn/Manta/trunk

svn: Unrecognized URL scheme for
'https://code.sci.utah.edu/svn/Manta/trunk'


What am I doing wrong?

Thanks,

John

_______________________
J o h n   K i c h u r y
SGI
<jjk@sgi.com>






Archive powered by MHonArc 2.6.16.

Top of page