|
List Info
Thread: Unrecognized URL scheme
|
|
| Unrecognized URL scheme |

|
2007-09-26 12:14:23 |
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
I know I'm missing something. Hopefully someone can tell me
what it is.
I am on a Fedora 7 platform. I used the bundled svn version
1.4.3 to
get the trunk and compiled it. I then yum removed the
bundled version,
built and compiled 1.5.0 (dev build). This appeared to
install fine.
I'm using the bundled web server so my configure options
were:
./configure --with-apxs=/usr/sbin/apxs --with-zlib=/usr/lib
- --with-sqlite=/usr/lib
I then added /etc/ld.so.conf.d/local.conf containing just:
/usr/local/lib
and ran ldconfig.
The server works fine. I can pull up a web page with no
problem and it
reports version 1.5.0 (dev build). The problem is the
client. This is
from the machine with the new build on it:
[cliff mk ~]$ svn co http://svn.may.be/svn/ma
y.be
svn: Unrecognized URL scheme for 'http://svn.may.be/svn/ma
y.be'
[cliff mk ~]$
Checking it out using the file:// syntax works fine. In
/usr/local/lib
there is libsvn_ra_svn-1.so etc. but nothing relating to
ra_dav.
I assume I missed something at the configure stage but I
can't see what.
Any help would be appreciated.
Thanks,
Cliff.
- --
Cliff Stanford
Might Limited +44 845 0045 666
(Office)
Suite 67, Dorset House +44 7973 616 666
(Mobile)
Duke Street, Chelmsford, CM1 1TB
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.5 (MingW32)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org
iD8DBQFG+pNvfNTx9pWyKfwRAuCCAKDrYNnCzbWfodmiR8vv+er6kFa9wwCe
OcqX
+aEjjRK9gNhBCIzqIIgrziA=
=OvWm
-----END PGP SIGNATURE-----
------------------------------------------------------------
---------
To unsubscribe, e-mail: users-unsubscribe subversion.tigris.org
For additional commands, e-mail: users-help subversion.tigris.org
|
|
| Re: Unrecognized URL scheme |

|
2007-09-26 12:28:22 |
On 9/26/07, Cliff Stanford <cliff may.be> wrote:
> -----BEGIN PGP SIGNED MESSAGE-----
> Hash: SHA1
>
> I know I'm missing something. Hopefully someone can
tell me what it is.
>
> I am on a Fedora 7 platform. I used the bundled svn
version 1.4.3 to
> get the trunk and compiled it. I then yum removed the
bundled version,
> built and compiled 1.5.0 (dev build). This appeared to
install fine.
>
> I'm using the bundled web server so my configure
options were:
>
> ./configure --with-apxs=/usr/sbin/apxs
--with-zlib=/usr/lib
> - --with-sqlite=/usr/lib
>
> I then added /etc/ld.so.conf.d/local.conf containing
just:
>
> /usr/local/lib
>
> and ran ldconfig.
>
> The server works fine. I can pull up a web page with
no problem and it
> reports version 1.5.0 (dev build). The problem is the
client. This is
> from the machine with the new build on it:
>
> [cliff mk ~]$ svn co http://svn.may.be/svn/ma
y.be
> svn: Unrecognized URL scheme for 'http://svn.may.be/svn/ma
y.be'
> [cliff mk ~]$
>
> Checking it out using the file:// syntax works fine.
In /usr/local/lib
> there is libsvn_ra_svn-1.so etc. but nothing relating
to ra_dav.
In recent trunk versions, there are 2 DAV access libraries,
which can
be switched at run time. Because of this, we have renamed
libsvn_ra_dav to libsvn_ra_neon. The other DAV library is
implemented
as libsvn_ra_serf.
> I assume I missed something at the configure stage but
I can't see what.
> Any help would be appreciated.
What does
$ svn --version
say? Does it include a http:// line?
HTH,
Erik.
------------------------------------------------------------
---------
To unsubscribe, e-mail: users-unsubscribe subversion.tigris.org
For additional commands, e-mail: users-help subversion.tigris.org
|
|
| Re: Unrecognized URL scheme |

|
2007-09-26 15:44:27 |
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Erik Huelsmann wrote:
> In recent trunk versions, there are 2 DAV access
libraries, which can
> be switched at run time. Because of this, we have
renamed
> libsvn_ra_dav to libsvn_ra_neon. The other DAV library
is implemented
> as libsvn_ra_serf.
Odd. Neither of these seems to have been built.
[cliff mk ~]$ ls /usr/local/lib/libsvn_ra*so
/usr/local/lib/libsvn_ra-1.so
/usr/local/lib/libsvn_ra_local-1.so
/usr/local/lib/libsvn_ra_svn-1.so
[cliff mk ~]$
> What does
>
> $ svn --version
>
> say? Does it include a http:// line?
[cliff mk ~]$ svn --version
svn, version 1.5.0 (dev build)
compiled Sep 26 2007, 17:51:34
...
The following repository access (RA) modules are available:
* 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
[cliff mk ~]$
So, no. No http.
Thanks,
Cliff.
- --
Cliff Stanford
Might Limited +44 845 0045 666
(Office)
Suite 67, Dorset House +44 7973 616 666
(Mobile)
Duke Street, Chelmsford, CM1 1TB
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.5 (MingW32)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org
iD8DBQFG+sSrfNTx9pWyKfwRAlSUAJ40iaSV3HPrt6BWurbN8LnACa/fVACf
RcWP
HzTjiQAAjf0f698mvYOonms=
=FtII
-----END PGP SIGNATURE-----
------------------------------------------------------------
---------
To unsubscribe, e-mail: users-unsubscribe subversion.tigris.org
For additional commands, e-mail: users-help subversion.tigris.org
|
|
| Re: Unrecognized URL scheme |

|
2007-09-26 15:59:35 |
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Erik Huelsmann wrote:
> In recent trunk versions, there are 2 DAV access
libraries, which can
> be switched at run time. Because of this, we have
renamed
> libsvn_ra_dav to libsvn_ra_neon. The other DAV library
is implemented
> as libsvn_ra_serf.
Thank you Erik, that information was sufficient for me to
find the problem.
Fedora typically splits packages down into the library
module and a
development module. For neon, I had the former installed
but not the
latter. Installing the latter made Subversion build
perfectly.
So it looks like it might need a minor tweak in the
configure script as
it checked that neon was present but not that it was
complete.
Thanks again for your help.
Cliff.
- --
Cliff Stanford
Might Limited +44 845 0045 666
(Office)
Suite 67, Dorset House +44 7973 616 666
(Mobile)
Duke Street, Chelmsford, CM1 1TB
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.5 (MingW32)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org
iD8DBQFG+sg3fNTx9pWyKfwRAsxIAKDNDNf6bhIYpjrN2/RX5DuQkYlx+wCd
Hjmy
P7KahBl/Jgcdh3W7QfrRIHU=
=raeU
-----END PGP SIGNATURE-----
------------------------------------------------------------
---------
To unsubscribe, e-mail: users-unsubscribe subversion.tigris.org
For additional commands, e-mail: users-help subversion.tigris.org
|
|
| Re: Unrecognized URL scheme |

|
2007-09-26 16:27:20 |
On Wed, Sep 26, 2007 at 10:44:27PM +0200, Cliff Stanford
wrote:
> Erik Huelsmann wrote:
>
> > In recent trunk versions, there are 2 DAV access
libraries, which can
> > be switched at run time. Because of this, we have
renamed
> > libsvn_ra_dav to libsvn_ra_neon. The other DAV
library is implemented
> > as libsvn_ra_serf.
>
> Odd. Neither of these seems to have been built.
I'm on revision 26788 now.
> [cliff mk ~]$ ls /usr/local/lib/libsvn_ra*so
> /usr/local/lib/libsvn_ra-1.so
> /usr/local/lib/libsvn_ra_local-1.so
> /usr/local/lib/libsvn_ra_svn-1.so
> [cliff mk ~]$
jsubversion01:/usr/local/src/subversion-latest # ls -l
/usr/local/subversion-latest/lib/libsvn_ra*so
lrwxrwxrwx 1 root root 20 26. Sep 23:14
/usr/local/subversion-latest/lib/libsvn_ra-1.so ->
libsvn_ra-1.so.0.0.0
lrwxrwxrwx 1 root root 26 26. Sep 23:14
/usr/local/subversion-latest/lib/libsvn_ra_local-1.so ->
libsvn_ra_local-1.so.0.0.0
lrwxrwxrwx 1 root root 25 26. Sep 23:14
/usr/local/subversion-latest/lib/libsvn_ra_neon-1.so ->
libsvn_ra_neon-1.so.0.0.0
lrwxrwxrwx 1 root root 24 26. Sep 23:13
/usr/local/subversion-latest/lib/libsvn_ra_svn-1.so ->
libsvn_ra_svn-1.so.0.0.0
> > What does
> >
> > $ svn --version
> >
> > say? Does it include a http:// line?
>
> [cliff mk ~]$ svn --version
> svn, version 1.5.0 (dev build)
> compiled Sep 26 2007, 17:51:34
>
> ...
>
> The following repository access (RA) modules are
available:
>
> * 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
>
> [cliff mk ~]$
>
> So, no. No http.
jsubversion01:/usr/local/src/subversion-latest #
/usr/local/subversion-latest/bin/svn --version
svn, version 1.5.0 (dev build)
compiled Sep 26 2007, 23:10:29
Copyright (C) 2000-2007 CollabNet.
Subversion is open source software, see http://subversion.tigri
s.org/
This product includes software developed by CollabNet
(http://www.Collab.Net/).
The following repository access (RA) modules are available:
* ra_neon : Module for accessing a repository via WebDAV
protocol using Neon.
- 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
My build script:
#!/bin/sh
make distclean
svn up
echo "Enter druecken"
read
./autogen.sh &&
./configure
--prefix=/usr/local/subversion-latest
--with-apxs=/usr/local/httpd-2.2.6/bin/apxs
--without-berkeley-db
--with-ssl
--with-libs=/usr/local/openssl-0.9.8e
--with-neon=/usr/local/neon-0.26.3
--with-swig=/usr/local/swig-1.3.29
--with-apr=/usr/local/httpd-2.2.6/bin/apr-1-config
--with-apr-util=/usr/local/httpd-2.2.6/bin/apu-1-config
--disable-neon-version-check &&
make &&
make install &&
/usr/local/httpd-2.2.6/bin/apachectl stop
sleep 5
/usr/local/httpd-2.2.6/bin/apachectl start
I'd say: I'm fine
Rainer
------------------------------------------------------------
---------
To unsubscribe, e-mail: users-unsubscribe subversion.tigris.org
For additional commands, e-mail: users-help subversion.tigris.org
|
|
[1-5]
|
|