Tom Lane wrote:
> $ ./configure --enable-foo --with-bar --without-baz --disable-other
> ...
> configure: WARNING: option ignored: --enable-foo
> configure: WARNING: option ignored: --enable-other
> configure: WARNING: option ignored: --with-bar
> configure: WARNING: option ignored: --with-baz
Fran
[EMAIL PROTECTED] (Peter Eisentraut) writes:
> Code the unknown options check without using m4 diversions.
I tried this out today and noted a problem:
$ ./configure --enable-foo --with-bar --without-baz --disable-other
...
configure: WARNING: option ignored: --enable-foo
configure: WARNING: optio
Log Message:
---
Code the unknown options check without using m4 diversions. Otherwise this
code relies on the checking macro actually being called at the end, or the
automatic undiversion will produce garbage. These sort of implicit
side-effects undermine the modularity of the macros and