How to replace configure.in.bot ?

2006-03-17 Thread Laurent Montel
Hi, How to replace it ? With autoconf/unsermake we have this file which inform when lib is not good. For example 'to compile it install lib >= ' Is it possible to have this message ? Perhaps we must use "MESSAGE(STATUS "...")" ? Regards ___ Kde-buildsys

Re: How to replace configure.in.bot ?

2006-03-17 Thread Alexander Neundorf
On Friday 17 March 2006 19:00, Laurent Montel wrote: > Hi, > How to replace it ? > With autoconf/unsermake we have this file which inform when lib is not > good. For example 'to compile it install lib >= ' > Is it possible to have this message ? > > Perhaps we must use "MESSAGE(STATUS "...")" ? No

Re: How to replace configure.in.bot ?

2006-03-17 Thread Laurent Montel
On Friday 17 March 2006 19:05, Alexander Neundorf wrote: > On Friday 17 March 2006 19:00, Laurent Montel wrote: > > Hi, > > How to replace it ? > > With autoconf/unsermake we have this file which inform when lib is not > > good. For example 'to compile it install lib >= ' > > Is it possible to have

Re: How to replace configure.in.bot ?

2006-03-17 Thread Dirk Mueller
On Friday, 17. March 2006 19:09, Laurent Montel wrote: > > find_package(JPEG) > > > > if (JPEG_FOUND) > >add_subdirectory(foo) > > else (JPEG_FOUND) > >message(STATUS "To compile foo install the JPEG library") > > endif (JPEG_FOUND) > > Ok I will use it. And its automatically guaranteed t

Re: How to replace configure.in.bot ?

2006-03-17 Thread Alexander Neundorf
On Friday 17 March 2006 21:17, Dirk Mueller wrote: > On Friday, 17. March 2006 19:09, Laurent Montel wrote: > > > find_package(JPEG) > > > > > > if (JPEG_FOUND) > > >add_subdirectory(foo) > > > else (JPEG_FOUND) > > >message(STATUS "To compile foo install the JPEG library") > > > endif (JPE

Re: How to replace configure.in.bot ?

2006-03-18 Thread Stephan Kulow
Am Freitag, 17. März 2006 19:05 schrieb Alexander Neundorf: > On Friday 17 March 2006 19:00, Laurent Montel wrote: > > Hi, > > How to replace it ? > > With autoconf/unsermake we have this file which inform when lib is not > > good. For example 'to compile it install lib >= ' > > Is it possible to h

Re: How to replace configure.in.bot ?

2006-03-18 Thread Michael Pyne
On Saturday 18 March 2006 09:26, Stephan Kulow wrote: > No, that's not the goal. The goal is to have a collecting message at the > end of the configure run > > Greetings, Stephan i.e. the way we have it now, each application has its own configure.in.in, which gets recursively combined into one co