* Future-proof autoconf's Perl version test.
authoraudreyt@audreyt.org <unknown>
Wed, 11 Jul 2007 16:58:51 +0000 (16:58 +0000)
committeraudreyt@audreyt.org <unknown>
Wed, 11 Jul 2007 16:58:51 +0000 (16:58 +0000)
commit4d2457071327bc82898b2c974d0d2e03747537c9
tree42472cddf3392b2688f5682fcc5368a6129dab21
parent2cc64da9094b7bdb122c17e5b30b5b6b3c2259b5
* Future-proof autoconf's Perl version test.

  GHC only works with Perl versions 5.6 and later; however
  the current test greps in a rather non-future-proof way
  (explicitly against 5.6 and 5.8).

  We instead exploit the "v-string" change in 5.6, which
  displays the version string as "v5.x.y", rather than
  the earlier format "version 5.xxx_yyy".  Hence grepping
  against "v5" will make it future proof for a while.
  (At least until Perl 6 is installed as the system perl.)
aclocal.m4