Re: CPPFLAGS and config.h needed by dependent projects?

2013-08-24 Thread Mike Frysinger
On Wednesday 31 July 2013 11:16:27 Nate Bargmann wrote: > * On 2013 31 Jul 08:03 -0500, LRN wrote: > > On 31.07.2013 16:17, Daniel Pocock wrote: > > > Should we be distributing a config script, e.g. bin/xxx-config that can > > > emit CPPFLAGS? > > > > Either that, or distribute a .pc file for pkg-

Re: CPPFLAGS...

2006-08-11 Thread Paul Eggert
This is a messy area, but the usual workaround is to put the relevant flags into CC and CXX, e.g., CC='xlc -DFOO' CXX='g++ -DBAR'. ___ Autoconf mailing list Autoconf@gnu.org http://lists.gnu.org/mailman/listinfo/autoconf

Re: CPPFLAGS prob

2004-06-23 Thread Ralf Corsepius
On Mon, 2004-06-14 at 17:28, Andreas Schwab wrote: > Ralf Corsepius <[EMAIL PROTECTED]> writes: > > > On Fri, 2004-06-04 at 13:02, Patrick Welche wrote: > >> automake by default pops > >> > >> CPPFLAGS = @CPPFLAGS@ > >> > >> in Makefile.in > >> > >> If I configure with: > >> > >> ./configure L

Re: CPPFLAGS prob

2004-06-14 Thread Andreas Schwab
Ralf Corsepius <[EMAIL PROTECTED]> writes: > On Fri, 2004-06-04 at 13:02, Patrick Welche wrote: >> automake by default pops >> >> CPPFLAGS = @CPPFLAGS@ >> >> in Makefile.in >> >> If I configure with: >> >> ./configure LDFLAGS="-L/usr/local/lib -Wl,-R/usr/local/lib" >> CPPFLAGS=-I/usr/local/in

Re: CPPFLAGS prob

2004-06-04 Thread Patrick Welche
On Fri, Jun 04, 2004 at 03:30:06PM +0200, Ralf Corsepius wrote: > Unless the configure script is broken and playing tricks with quoting, Thanks for the reassurance that in principle it should work.. Just tracked this down in xine-lib: saved_CPPFLAGS="$CPPFLAGS" ... CPPFLAGS="$saved_CFLAGS" ho

Re: CPPFLAGS prob

2004-06-04 Thread Ralf Corsepius
On Fri, 2004-06-04 at 13:02, Patrick Welche wrote: > automake by default pops > > CPPFLAGS = @CPPFLAGS@ > > in Makefile.in > > If I configure with: > > ./configure LDFLAGS="-L/usr/local/lib -Wl,-R/usr/local/lib" > CPPFLAGS=-I/usr/local/include > > Isn't it reasonable to expect for CPPFLAGS to

Re: CPPFLAGS and AC_CHECK_HEADERS

2003-05-31 Thread Assar Westerlund
Jose Roman Bilbao <[EMAIL PROTECTED]> writes: > configure:9331: checking vtkImageFFT.h usability > configure:9344: gcc -c -g -O2 -I/usr/local/include/vtk conftest.c >&5 > In file included from /usr/local/include/vtk/vtkIndent.h:52, > from /usr/local/include/vtk/vtkObject.h:67, >

Re: CPPFLAGS and AC_CHECK_HEADERS

2003-05-30 Thread Jose Roman Bilbao
Hi Again, Here you are a part of the "config.log" file code. This is the beginning of the "test for vtkImageFFT.h file: configure:9331: checking vtkImageFFT.h usability configure:9344: gcc -c -g -O2 -I/usr/local/include/vtk conftest.c >&5 In file included from /usr/local/include/vtk/vtkIndent.h:

Re: CPPFLAGS and AC_CHECK_HEADERS

2003-05-30 Thread Assar Westerlund
Jose Roman Bilbao <[EMAIL PROTECTED]> writes: > I can not show you now the output but I can tell you that configure > finished saying "NO" to all the tests performed to that library, I mean, > usability, compiler and presence. config.log probably has more hints as to why this happened. > I tried

Re: CPPFLAGS and AC_CHECK_HEADERS

2003-05-29 Thread Jose Roman Bilbao
Hi, Thanks for your response, here you are the information: Autoconf version 2.57 (It was shipped with Red Hat 8.0 but I dont know if any update has been applied). I can not show you now the output but I can tell you that configure finished saying "NO" to all the tests performed to that library,

Re: CPPFLAGS and AC_CHECK_HEADERS

2003-05-29 Thread Assar Westerlund
Jose Roman Bilbao <[EMAIL PROTECTED]> writes: > AC_ARG_WITH(vtk-incdir,[ --with-vtk-incdir=DIR location of > the vtk include directory], > [CPPFLAGS="${CPPFLAGS} -I${withval}"]) [...] > AC_CHECK_HEADER([vtkImageFFT.h],, > [AC_MSG_ERROR([VTK headers not found; Check your ins