Re: libtool issue in a Makefile.am reference

2010-01-25 Thread Ralf Wildenhues
* Steffen Dettmer wrote on Mon, Jan 25, 2010 at 12:06:11PM CET: > On Mon, Jan 25, 2010 at 8:25 AM, Murray S. Kucherawy wrote: > > I've got a package that first builds a library and then a > > binary that links to the library. The binary build references > > it via: > > > > progname_LIBADD = ../lib

RE: libtool issue in a Makefile.am reference

2010-01-25 Thread Bob Friesenhahn
On Mon, 25 Jan 2010, Murray S. Kucherawy wrote: The resulting gcc command: gcc -std=gnu99 -pthread -I/usr/include -g -O2 -pthread -o .libs/opendkim opendkim-opendkim.o opendkim-opendkim-ar.o opendkim-opendkim-arf.o opendkim-opendkim-crypto.o opendkim-opendkim-db.o opendkim-opendkim-lua.o ope

RE: libtool issue in a Makefile.am reference

2010-01-25 Thread Murray S. Kucherawy
> -Original Message- > From: Bob Friesenhahn [mailto:bfrie...@simple.dallas.tx.us] > Sent: Monday, January 25, 2010 10:37 AM > To: Murray S. Kucherawy > Cc: Peter Johansson; automake@gnu.org > Subject: RE: libtool issue in a Makefile.am reference > > > Anything

RE: libtool issue in a Makefile.am reference

2010-01-25 Thread Bob Friesenhahn
On Mon, 25 Jan 2010, Murray S. Kucherawy wrote: LIBADD is for libraries. For programs use progname_LDADD = ../libdirectory/libraryname.la Sorry, I was in fact using progname_LDADD already. Should've cut-and-pasted instead of manually transcribing. Anything else I could try? You could te

RE: libtool issue in a Makefile.am reference

2010-01-25 Thread Murray S. Kucherawy
> -Original Message- > From: automake-bounces+msk=cloudmark@gnu.org [mailto:automake- > bounces+msk=cloudmark@gnu.org] On Behalf Of Peter Johansson > Sent: Monday, January 25, 2010 5:10 AM > To: automake@gnu.org > Subject: Re: libtool issue in a Makefile.am refe

Re: libtool issue in a Makefile.am reference

2010-01-25 Thread Peter Johansson
On 1/25/10 2:25 AM, Murray S. Kucherawy wrote: I've got a package that first builds a library and then a binary that links to the library. The binary build references it via: progname_LIBADD = ../libdirectory/libraryname.la LIBADD is for libraries. For programs use progname_LDADD = ../l

Re: libtool issue in a Makefile.am reference

2010-01-25 Thread Steffen Dettmer
Hi! On Mon, Jan 25, 2010 at 8:25 AM, Murray S. Kucherawy wrote: > I've got a package that first builds a library and then a > binary that links to the library. The binary build references > it via: > > progname_LIBADD = ../libdirectory/libraryname.la I'm not sure if we do it correctly, but we'd

libtool issue in a Makefile.am reference

2010-01-24 Thread Murray S. Kucherawy
I've got a package that first builds a library and then a binary that links to the library. The binary build references it via: progname_LIBADD = ../libdirectory/libraryname.la A previous version of the library was installed in /usr/local/lib. Some other things autoconf discovers causes -L/us