Re: distcheck fails (Inclusion confusion)

2003-09-07 Thread Alexandre Duret-Lutz
>>> "Christian" == Christian Neumair <[EMAIL PROTECTED]> writes: Christian> I added the following to configure.in: Christian> PYTHON_CFLAGS="-I$PYTHON_PREFIX/include/python$PYTHON_VERSION" Christian> AC_SUBST(PYTHON_CFLAGS) [...] Christian> What have I done wrong? You are assuming that Python

Re: distcheck fails (Inclusion confusion)

2003-09-07 Thread Tom Howard
On Saturday 06 September 2003 18:22, Christian Neumair wrote: > Everything seems to compile fine but a make distcheck reveals: > gcc [...] > -I/home/chris/cvs/gdesklets/gDesklets-0.20/_inst/include/python2.3 [...] > and then fails with Python.h: No such file or directory > > What have I done wrong?

distcheck fails (Inclusion confusion)

2003-09-06 Thread Christian Neumair
I added the following to configure.in: PYTHON_CFLAGS="-I$PYTHON_PREFIX/include/python$PYTHON_VERSION" AC_SUBST(PYTHON_CFLAGS) The problematic Makefile.am contains: INCLUDES = \ $(PACKAGE_CFLAGS) \ $(PYTHON_CFLAGS) Everything seems to compile fine but a make distcheck reveals: gc