Re: interdependancies between libraries

2001-01-17 Thread Wesley W. Terpstra
On Tue, Jan 16, 2001 at 01:50:57PM +1100, Brian May wrote: > Oh, another observation: installing the libraries in their non-final > location (as required for Debian packaging tools, probably Redhat too) > simply does not work, as shown below. I think some of the required -L > options to the linker

Separate Source Directories

2001-01-17 Thread Eric Lemings
Dear Libtoolers, How do you build a library using Libtool from source files that are located in different directories? For example moduleA/sourceA1.c moduleA/sourceA2.c moduleA/... moduleB/sourceB1.c moduleB/sourceB2.c moduleB/... moduleB/

Re: Separate Source Directories

2001-01-17 Thread Robert Boehne
Eric Lemings wrote: > > Dear Libtoolers, > > How do you build a library using Libtool from source files that are > located in different directories? I use VPATH to tell GNU make to look in other directories. For example, one of my Makefile.am's has this definition: VPATH = @srcdir@ : \ @top_s

Re: Separate Source Directories

2001-01-17 Thread Brian May
> "Eric" == Eric Lemings <[EMAIL PROTECTED]> writes: Eric> I know Libtool doesn't currently support this feature but Eric> surely there are some software distributions out there that Eric> already do something like this? You can use convenience libraries... Current versions of l

Re: interdependancies between libraries

2001-01-17 Thread Kevin Ryde
> On Tue, Jan 16, 2001 at 01:50:57PM +1100, Brian May wrote: > > Oh, another observation: installing the libraries in their non-final > > location (as required for Debian packaging tools, probably Redhat too) > > simply does not work, as shown below. I think some of the required -L > > options to

Re: interdependancies between libraries

2001-01-17 Thread Brian May
> "Kevin" == Kevin Ryde <[EMAIL PROTECTED]> writes: >> On Tue, Jan 16, 2001 at 01:50:57PM +1100, Brian May wrote: > >> Oh, another observation: installing the libraries in their >> non-final > location (as required for Debian packaging tools, >> probably Redhat too) > simply d

Re: interdependancies between libraries

2001-01-17 Thread Ganesan Rajagopal
> "Brian" == Brian May <[EMAIL PROTECTED]> writes: > "Kevin" == Kevin Ryde <[EMAIL PROTECTED]> writes: >>> On Tue, Jan 16, 2001 at 01:50:57PM +1100, Brian May wrote: > >>> Oh, another observation: installing the libraries in their >>> non-final > location (as required for Debian packaging

Re: interdependancies between libraries

2001-01-17 Thread Brian May
> "Ganesan" == Ganesan Rajagopal <[EMAIL PROTECTED]> writes: Ganesan> The correct way to do this is actually ./configure Ganesan> --prefix=/usr Ganesan> make install DESTDIR=`pwd`/debian/tmp Hmmm. didn't know this. Lets try it: [624] [snoopy:bam] ~/source/cvs/libtool/depdemo >c

Re: interdependancies between libraries

2001-01-17 Thread Brian May
> "Wesley" == Wesley W Terpstra <[EMAIL PROTECTED]> writes: Wesley> What I've been doing for debs with inter-depends is having Wesley> a local copy of ltmain.sh in my debian packages with the Wesley> patch applied for building my project. Then it adds the Wesley> right -L opti