Also warn about missing prerequisites as we encounter them (bug #24445).
authorBen Pfaff <blp@gnu.org>
Sat, 4 Oct 2008 04:01:50 +0000 (21:01 -0700)
committerBen Pfaff <blp@gnu.org>
Sat, 4 Oct 2008 04:01:50 +0000 (21:01 -0700)
commit8fb130b44c911531772c259c8db06cf097cf6821
treeffda73680f42f27d37a8c9801989d32614d58627
parentfd43ef3ede38295240747ec306a44d7c0fb33a4a
Also warn about missing prerequisites as we encounter them (bug #24445).

It can happen that configure bails out in the middle due to some issue
that PSPP cannot directly control; for example, AC_CHECK_SIZEOF exits
unconditionally if it fails.  If this happens then, before, we would fail
to warn about missing required prerequisites that could well have been
the actual cause of the failure, because we only warn about these at
the end of the run.

Now, we warn about missing prerequisites both at time of detection and
in a summary at the end, to head off this problem.

Thanks to Jim Orr for allowing me to notice the problem.
acinclude.m4