Re: Canonical way to conditionally add (a large amount of) sources to PROG_SOURCES?

2001-06-11 Thread Tom Tromey
> "Tim" == Tim Van Holder <[EMAIL PROTECTED]> writes: Tim> BTW, what is the correct way (if there is any) to do this in Tim> stock 1.4? It's just that this is supposed to work in a Tim> distributed package, so relying on CVS automake is probably not a Tim> good idea. Well, you could fight wi

Re: Canonical way to conditionally add (a large amount of) sources to PROG_SOURCES?

2001-06-11 Thread Guido Draheim
Hi Tim, you do confuse me a bit - it seems as if you just missed the target by micrometer, especially the middle one of your examples looks very good > if MYCONDITIONAL > OPTIONAL = lotsasource.c lotsayacc.y > else > OPTIONAL= > endif > > foo_SOURCES = $(REGULAR) $(OPTIONAL) The only thin

Re: CPP determined incorrectly

2001-06-11 Thread Ralf Corsepius
Akim Demaille wrote: > > > "Harlan" == Harlan Stenn <[EMAIL PROTECTED]> writes: > > Harlan> This sounds familiar to me - I think I ran in to the same > Harlan> problem under FreeBSD on a configure.in script that only > Harlan> wanted to find the X directories (header and libs). I had to > H

Re: Deleting Makefile.in in maintainer-clean

2001-06-11 Thread Gary V . Vaughan
On Monday 11 June 2001 10:35 pm, Akim Demaille wrote: > > "Gary" == Gary V Vaughan <[EMAIL PROTECTED]> writes: > > Gary> I never did get the joke with `make mrproper' what is that all > Gary> about anyway?... > > A Procter and Gamble cleaning product. In France ``Monsieur Propre''. > > www.mo

Re: missing does not support configure.ac in CVS or in 1.4-p4

2001-06-11 Thread Akim Demaille
> "Gary" == Gary V Vaughan <[EMAIL PROTECTED]> writes: Gary> Thanks. Applied on branch-1-4. If there is an automake-1.4-p5, Gary> this will be in it! Applied on HEAD.

Re: Deleting Makefile.in in maintainer-clean

2001-06-11 Thread Akim Demaille
> "Gary" == Gary V Vaughan <[EMAIL PROTECTED]> writes: Gary> I never did get the joke with `make mrproper' what is that all Gary> about anyway?... A Procter and Gamble cleaning product. In France ``Monsieur Propre''. www.monsieurpropre.com

Re: CPP determined incorrectly

2001-06-11 Thread Pavel Roskin
Hi, Akim! > Pavel> I have noticed Automake testsuite failures in distname.test, > Pavel> subobj5.test and subobj6.test on OpenBSD 2.7 with the CVS head > Pavel> versions of Autoconf and Automake. > > What's the status of this issue, Pavel? Nothing has changed. The problem persists. There is a us

Re: Canonical way to conditionally add (a large amount of) sources to PROG_SOURCES?

2001-06-11 Thread Lars J. Aas
On Mon, Jun 11, 2001 at 11:21:33PM +0200, Tim Van Holder wrote: : > Tim> I need to conditionally (based on a --with configure option) : > Tim> add a fairly large number (~50) of sources to foo_SOURCES. : > : > What version of automake are you using? : : Some snapshot I took from the cvs automake

Re: Canonical way to conditionally add (a large amount of) sources to PROG_SOURCES?

2001-06-11 Thread Tim Van Holder
> Tim> I need to conditionally (based on a --with configure option) > Tim> add a fairly large number (~50) of sources to foo_SOURCES. > > What version of automake are you using? Some snapshot I took from the cvs automake a month or so ago. I'll update my setup and see if it helps. > [snip] > T

Re: CPP determined incorrectly

2001-06-11 Thread Akim Demaille
> "Harlan" == Harlan Stenn <[EMAIL PROTECTED]> writes: Harlan> This sounds familiar to me - I think I ran in to the same Harlan> problem under FreeBSD on a configure.in script that only Harlan> wanted to find the X directories (header and libs). I had to Harlan> specify AC_PROG_CC to solve t

Re: CPP determined incorrectly

2001-06-11 Thread Akim Demaille
> "Pavel" == Pavel Roskin <[EMAIL PROTECTED]> writes: Pavel> I have noticed Automake testsuite failures in distname.test, Pavel> subobj5.test and subobj6.test on OpenBSD 2.7 with the CVS head Pavel> versions of Autoconf and Automake. What's the status of this issue, Pavel?

Re: Canonical way to conditionally add (a large amount of) sources to PROG_SOURCES?

2001-06-11 Thread Tom Tromey
> "Tim" == Tim Van Holder <[EMAIL PROTECTED]> writes: Tim> I need to conditionally (based on a --with configure option) Tim> add a fairly large number (~50) of sources to foo_SOURCES. What version of automake are you using? Tim> OPTIONAL= Tim> if MYCONDITIONAL Tim> OPTIONAL = lotsasource.c

Re: missing does not support configure.ac in CVS or in 1.4-p4

2001-06-11 Thread Gary V . Vaughan
On Monday 11 June 2001 6:17 am, Kevin Dalley wrote: > Martin Dickopp <[EMAIL PROTECTED]> reported noticed that the file > missing does not support configure.ac in either the latest CVS release > or in 1.4-p4. This problem is limited to echo statements, but should > still be fixed. Here is Marti

Canonical way to conditionally add (a large amount of) sources to PROG_SOURCES?

2001-06-11 Thread Tim Van Holder
Hi, I need to conditionally (based on a --with configure option) add a fairly large number (~50) of sources to foo_SOURCES. First I tried OPTIONAL= if MYCONDITIONAL OPTIONAL = lotsasource.c lotsayacc.y endif foo_SOURCES = $(REGULAR) $(OPTIONAL) but that didn't work; automake complains that OP