[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Re: Mismatched FS Modules for 'dbd': found 1.2.0, expected 1.1.4

From: <cbruner_at_compulife.com>
Date: 2005-07-05 21:58:23 CEST

Alright I've now got my email on Linux as well. So I'm pasting this. I don't
see what it's complaining about. Do you?

ldd /usr/bin/svn
        linux-gate.so.1 => (0xffffe000)
        libsvn_client-1.so.0 => /usr/lib/libsvn_client-1.so.0 (0xb7fcf000)
        libsvn_wc-1.so.0 => /usr/lib/libsvn_wc-1.so.0 (0xb7fad000)
        libsvn_ra-1.so.0 => /usr/lib/libsvn_ra-1.so.0 (0xb7faa000)
        libsvn_diff-1.so.0 => /usr/lib/libsvn_diff-1.so.0 (0xb7fa4000)
        libsvn_ra_local-1.so.0 => /usr/lib/libsvn_ra_local-1.so.0 (0xb7f9f000)
        libsvn_repos-1.so.0 => /usr/lib/libsvn_repos-1.so.0 (0xb7f87000)
        libsvn_fs-1.so.0 => /usr/lib/libsvn_fs-1.so.0 (0xb7f82000)
        libsvn_fs_fs-1.so.0 => /usr/lib/libsvn_fs_fs-1.so.0 (0xb7f6b000)
        libsvn_ra_svn-1.so.0 => /usr/lib/libsvn_ra_svn-1.so.0 (0xb7f5e000)
        libsvn_ra_dav-1.so.0 => /usr/lib/libsvn_ra_dav-1.so.0 (0xb7f4a000)
        libsvn_delta-1.so.0 => /usr/lib/libsvn_delta-1.so.0 (0xb7f43000)
        libsvn_subr-1.so.0 => /usr/lib/libsvn_subr-1.so.0 (0xb7f22000)
        libaprutil-0.so.0 => /usr/lib/libaprutil-0.so.0 (0xb7f0e000)
        libgdbm.so.3 => /usr/lib/libgdbm.so.3 (0xb7f08000)
        libdb-4.2.so => /usr/lib/libdb-4.2.so (0xb7e4c000)
        libexpat.so.0 => /usr/lib/libexpat.so.0 (0xb7e2e000)
        libapr-0.so.0 => /usr/lib/libapr-0.so.0 (0xb7e11000)
        librt.so.1 => /lib/librt.so.1 (0xb7dd1000)
        libcrypt.so.1 => /lib/libcrypt.so.1 (0xb7da4000)
        libnsl.so.1 => /lib/libnsl.so.1 (0xb7d90000)
        libneon.so.24 => /usr/lib/libneon.so.24 (0xb7d7c000)
        libxml2.so.2 => /usr/lib/libxml2.so.2 (0xb7c8f000)
        libdl.so.2 => /lib/libdl.so.2 (0xb7c8b000)
        libz.so.1 => /usr/lib/libz.so.1 (0xb7c7e000)
        libpthread.so.0 => /lib/libpthread.so.0 (0xb7c2d000)
        libm.so.6 => /lib/libm.so.6 (0xb7c09000)
        libc.so.6 => /lib/libc.so.6 (0xb7b0a000)
        /lib/ld-linux.so.2 (0xb7fed000)

On Tuesday 05 July 2005 15:55, cbruner@compulife.com wrote:
> My email is set up on Windows, my svn is linux, so you're right I'm not
> pasting... :)
> svn --version shows version 1.2,
> with ra_dav, ra_svn, and ra_local. (no versions shown).
>
> I'll look for any libraries, but I'm not sure how. If you have any more
> tips on how, I'd appriciate it.
>
> Thanks,
>
> Chris
> ----- Original Message -----
> From: "Ben Collins-Sussman" <sussman@collab.net>
> To: <cbruner@compulife.com>
> Sent: Tuesday, July 05, 2005 3:43 PM
> Subject: Re: Mismatched FS Modules for 'dbd': found 1.2.0, expected 1.1.4
>
> > On Jul 5, 2005, at 2:27 PM, <cbruner@compulife.com>
> >
> > <cbruner@compulife.com> wrote:
> >> Any command does it.
> >> svn update
> >> gives
> >> svn: Mismatched FS Modules for 'dbd': found 1.2.0, expected 1.1.4
> >>
> >> svnadmin help
> >> gives
> >> svnadmin: Mismatched FS Modules for 'dbd': found 1.2.0, expected 1.1.4
> >
> > (Please mail the whole list, not just me.)
> >
> > Well, you must not be pasting, because the actual error probably says
> > 'bdb', not 'dbd'. :-)
> >
> > Subversion is a collection of libraries (libsvn_*) and a few programs
> > that use the libraries. It looks you tried to install subversion 1.2,
> > but it's getting mixed up with a previous installation. That is, you
> > still have svn 1.1.4 installed somewhere, and are running svn 1.1.4
> > programs, which are then trying to link to the 1.2 libraries.
> >
> > Try clearing away all svn 1.1.4 programs and libraries. 'svn --
> > version' will show you what you're running.
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
> For additional commands, e-mail: users-help@subversion.tigris.org

On Tuesday 05 July 2005 15:55, cbruner@compulife.com wrote:
> My email is set up on Windows, my svn is linux, so you're right I'm not
> pasting... :)
> svn --version shows version 1.2,
> with ra_dav, ra_svn, and ra_local. (no versions shown).
>
> I'll look for any libraries, but I'm not sure how. If you have any more
> tips on how, I'd appriciate it.
>
> Thanks,
>
> Chris
> ----- Original Message -----
> From: "Ben Collins-Sussman" <sussman@collab.net>
> To: <cbruner@compulife.com>
> Sent: Tuesday, July 05, 2005 3:43 PM
> Subject: Re: Mismatched FS Modules for 'dbd': found 1.2.0, expected 1.1.4
>
> > On Jul 5, 2005, at 2:27 PM, <cbruner@compulife.com>
> >
> > <cbruner@compulife.com> wrote:
> >> Any command does it.
> >> svn update
> >> gives
> >> svn: Mismatched FS Modules for 'dbd': found 1.2.0, expected 1.1.4
> >>
> >> svnadmin help
> >> gives
> >> svnadmin: Mismatched FS Modules for 'dbd': found 1.2.0, expected 1.1.4
> >
> > (Please mail the whole list, not just me.)
> >
> > Well, you must not be pasting, because the actual error probably says
> > 'bdb', not 'dbd'. :-)
> >
> > Subversion is a collection of libraries (libsvn_*) and a few programs
> > that use the libraries. It looks you tried to install subversion 1.2,
> > but it's getting mixed up with a previous installation. That is, you
> > still have svn 1.1.4 installed somewhere, and are running svn 1.1.4
> > programs, which are then trying to link to the 1.2 libraries.
> >
> > Try clearing away all svn 1.1.4 programs and libraries. 'svn --
> > version' will show you what you're running.
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
> For additional commands, e-mail: users-help@subversion.tigris.org

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org
Received on Tue Jul 5 22:04:10 2005

This is an archived mail posted to the Subversion Users mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.