variables in configure.ac

2005-09-12 Thread Matthias Langer
I'm trying to to the following in my configure.ac: VTK_LIBS=$vtk_lib_path VTK_LIBS+="-lvtkFiltering -lvtkfreetype -lvtkftgl -lvtkGraphics -lvtkHybrid" \ "-lvtkImaging -lvtkIO -lvtkRendering" However, when i run configure, i get ...: VTK_LIBS+=-lvtkFiltering -lvtkfreetype

Re: variables in configure.ac

2005-09-12 Thread Andreas Schwab
Matthias Langer <[EMAIL PROTECTED]> writes: > I'm trying to to the following in my configure.ac: > > VTK_LIBS=$vtk_lib_path > VTK_LIBS+="-lvtkFiltering -lvtkfreetype -lvtkftgl -lvtkGraphics > -lvtkHybrid" \ > "-lvtkImaging -lvtkIO -lvtkRendering" > > However, when i run conf

Re: variables in configure.ac

2005-09-12 Thread Keith MARSHALL
Matthias Langer wrote: > I'm trying to to the following in my configure.ac: > > VTK_LIBS=$vtk_lib_path > VTK_LIBS+="-lvtkFiltering -lvtkfreetype -lvtkftgl -lvtkGraphics > -lvtkHybrid" \ >"-lvtkImaging -lvtkIO -lvtkRendering" > > However, when i run configure, i get > ...: V

Re: variables in configure.ac

2005-09-12 Thread Ralf Wildenhues
Hi Matthias, * Matthias Langer wrote on Mon, Sep 12, 2005 at 04:00:34PM CEST: > I'm trying to to the following in my configure.ac: > > VTK_LIBS=$vtk_lib_path > VTK_LIBS+="-lvtkFiltering -lvtkfreetype -lvtkftgl -lvtkGraphics > -lvtkHybrid" \ > "-lvtkImaging -lvtkIO -lvtkRend

how to force the caller of configure to pass arguments

2005-09-12 Thread Matthias Langer
At first, thank you all for your help on my previous problem. Here is the next one: How can i force the caller of my configure script to pass certain arguments ? I detail: What i have now is: AC_ARG_WITH(vtk-headers, [ --with-vtk-headers The location of the vtk header files ], [ vtk_headers=$wi

Re: how to force the caller of configure to pass arguments

2005-09-12 Thread Andreas Schwab
Matthias Langer <[EMAIL PROTECTED]> writes: > However, when the caller of configure forgets to pass this option, > configure will work, but make certainly fail. So it would be great, if i > can > check if certain arguments were supplied allready in configure and exit with > an error message if no

Re: how to force the caller of configure to pass arguments

2005-09-12 Thread Matthias Langer
Andreas Schwab wrote: Matthias Langer <[EMAIL PROTECTED]> writes: However, when the caller of configure forgets to pass this option, configure will work, but make certainly fail. So it would be great, if i can check if certain arguments were supplied allready in configure and exit with an