Re: versioning, backward compatability

2007-06-30 Thread Andreas Metzler
<[EMAIL PROTECTED]> wrote: > I translated my library using libtool with the -version-info=5:0:0 > parameter and I installed it into /usr/local//lib using libtool. > Then I translated executable "prog" which was linked with this > library. Readelf -d prog shows > 0x0001 (NEEDED) Shared library

libtool versioning and sonames

2007-10-28 Thread Andreas Metzler
Hello, gnutls recently had an incompatible API change (interfaces removed) and therefore made this change: num c r a 2.1.1 22 1 9 2.1.2 23 0 0 which is supposed to mean (according to the libtool manual), that 2.1.1 supported interfaces 13-22 and 2.1.2 s

Re: libtool versioning and sonames

2007-10-28 Thread Andreas Metzler
Ralf Wildenhues <[EMAIL PROTECTED]> wrote: > * Andreas Metzler wrote on Sun, Oct 28, 2007 at 09:34:25AM CET: >> [...] However, the way libtool >> tries to represent this information in sonames (on Linux) is rather >> strange, it goes straight from libgnutls.so.13 to

libtool chooses the wrong library version to link against

2007-11-29 Thread Andreas Metzler
Hello, this is about . when I am building gnutls on a system with a different version of gnutls already installed, libtool links the library libgnutls-extra against /usr/lib/libgnutls.so instead of against the correct new version DESTDIR/usr/lib/libgnutls.so. The a

Re: libtool chooses the wrong library version to link against

2007-11-29 Thread Andreas Metzler
Peter O'Gorman <[EMAIL PROTECTED]> wrote: > Andreas Metzler wrote: >> this is about <http://bugs.debian.org/453035>. >> when I am building gnutls on a system with a different version of >> gnutls already installed, libtool links the library libgnutls-extra &g

Re: libtool chooses the wrong library version to link against

2007-12-01 Thread Andreas Metzler
Andreas Metzler <[EMAIL PROTECTED]> wrote: > Might this be related to the fact that I am running an i486 > installation on a amd64 kernel? That is not the case, running an ix86 kernel does not change a thing. cu andreas -- `What a good friend you are to him, Dr. Maturin. His other fr

Re: libtool chooses the wrong library version to link against

2007-12-04 Thread Andreas Metzler
On 2007-12-01 Roumen Petrov <[EMAIL PROTECTED]> wrote: > Peter O'Gorman wrote: [...] > >>>Do you know where the -L/usr/lib is coming from? Removing all -L/usr/lib from the libtool invocation indeed fixes the problem. > It should from a dependent library. > I guess that first this is from opencdk

Re: libtool chooses the wrong library version to link against

2007-12-04 Thread Andreas Metzler
On 2007-12-01 Andreas Metzler <[EMAIL PROTECTED]> wrote: > On 2007-12-01 Roumen Petrov <[EMAIL PROTECTED]> wrote: > > Peter O'Gorman wrote: > [...] > > >>>Do you know where the -L/usr/lib is coming from? > Removing all -L/usr/lib from the libtool in