Re: Forcing an AC_CHECK to fail

2007-10-21 Thread Ralf Wildenhues
Hello Michael, * Michael B Allen wrote on Sun, Oct 21, 2007 at 02:44:26AM CEST: > On 10/20/07, Andreas Schwab <[EMAIL PROTECTED]> wrote: > > "Michael B Allen" <[EMAIL PROTECTED]> writes: > > > > > So how to do I preset a cache variable before running configure? > > > > You can put it in the enviro

Re: Forcing an AC_CHECK to fail

2007-10-20 Thread Michael B Allen
On 10/20/07, Andreas Schwab <[EMAIL PROTECTED]> wrote: > "Michael B Allen" <[EMAIL PROTECTED]> writes: > > > So how to do I preset a cache variable before running configure? > > You can put it in the environment, or use config.site. See > (autoconf)Site Defaults. Hey Andreas, Ok. I see the docs

Re: Forcing an AC_CHECK to fail

2007-10-20 Thread Andreas Schwab
"Michael B Allen" <[EMAIL PROTECTED]> writes: > So how to do I preset a cache variable before running configure? You can put it in the environment, or use config.site. See (autoconf)Site Defaults. Andreas. -- Andreas Schwab, SuSE Labs, [EMAIL PROTECTED] SuSE Linux Products GmbH, Maxfeldstraße

Re: Forcing an AC_CHECK to fail

2007-10-20 Thread Michael B Allen
On 10/20/07, Andreas Schwab <[EMAIL PROTECTED]> wrote: > > So is there a way to tell a specific check to fail? > > You can preset the cache variable before running configure. Excellent! So how to do I preset a cache variable before running configure? Mike

Re: Forcing an AC_CHECK to fail

2007-10-20 Thread Andreas Schwab
"Michael B Allen" <[EMAIL PROTECTED]> writes: > So is there a way to tell a specific check to fail? You can preset the cache variable before running configure. Andreas. -- Andreas Schwab, SuSE Labs, [EMAIL PROTECTED] SuSE Linux Products GmbH, Maxfeldstraße 5, 90409 Nürnberg, Germany PGP key fi

Forcing an AC_CHECK to fail

2007-10-20 Thread Michael B Allen
Hey, I have a package that uses AC and checks for a lib but the package also has it's own implementation of that lib. I have the said lib installed on the system but I want autoconf to fail that check and used the one provided in the package. So is there a way to tell a specific check to fail? M