Re: AC_PATH_XTRA and -rpath

2006-07-18 Thread Patrick Welche
On Mon, Jul 17, 2006 at 06:54:16PM -0400, Braden McDaniel wrote: > Quoting Paul Eggert <[EMAIL PROTECTED]>: > > > Patrick Welche <[EMAIL PROTECTED]> writes: > > > > > so the -R made it, and all is well :-) > > > > > > I can't check the opposite though: do systems that don't want rpath get > > > on

Warnings say to report this... so I am!

2006-07-18 Thread nci nci
Hello: What follows is the output of the Minicom configuration script. I am trying to cross-compile for the Altera Nios2 (Elf) platform and have not yet been able to resolve the WARNINGS in the output below. Will provide more info if I get a response to this. ./configure --host=nios2-elf --

Noobie question about building libraries: catch 22

2006-07-18 Thread Douglas Phillipson
I'm wanting to build a library as part of my application, but since configure wants to detect my library with the AC_CHECK_LIB I have in the configure.ac, but can't because it's not built yet, how do I do this? Here is my configure.ac: AC_INIT(src/SysScheduler.c) AM_INIT_AUTOMAKE(sScheduler,0

Re: Noobie question about building libraries: catch 22

2006-07-18 Thread Andreas Schwab
Douglas Phillipson <[EMAIL PROTECTED]> writes: > I'm wanting to build a library as part of my application, but since > configure wants to detect my library with the AC_CHECK_LIB Why do you want to check for it if it is part of your application? Andreas. -- Andreas Schwab, SuSE Labs, [EMAIL PRO

Re: Noobie question about building libraries: catch 22

2006-07-18 Thread Micah J. Cowan
On Tue, Jul 18, 2006 at 02:23:08PM -0700, Douglas Phillipson wrote: > I'm wanting to build a library as part of my application, but since > configure wants to detect my library with the AC_CHECK_LIB I have in the > configure.ac, but can't because it's not built yet, how do I do this? ... > The