diff options
author | Gabor Greif <ggreif@gmail.com> | 2013-02-07 12:13:50 +0100 |
---|---|---|
committer | Gabor Greif <ggreif@gmail.com> | 2013-02-07 12:18:56 +0100 |
commit | 0af03de5cbeca76aefb34b3ff3f2f4c79b3e633a (patch) | |
tree | e67be5293c38bfcec49d52b9dcfa466695547cbc /configure.ac | |
parent | c1ae31f65b740e6d65c3553dfbf8d849f2c59b6f (diff) | |
download | haskell-0af03de5cbeca76aefb34b3ff3f2f4c79b3e633a.tar.gz |
Require autoconf 2.60, as
version 2.59 seems to be incompatible with our updated macros.
If somebody insists on 2.59 (which is almost 10 years old) I'll
have to hunt down the reason for the recent (Dec 2012?) breakage.
Note that I did not check with 2.60 (I have 2.65), so that one
may still be problematic.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 1a0fa819b1..824e4e029f 100644 --- a/configure.ac +++ b/configure.ac @@ -15,6 +15,11 @@ dnl AC_INIT([The Glorious Glasgow Haskell Compilation System], [7.7], [glasgow-haskell-bugs@haskell.org], [ghc]) +# Using autoconf v2.59 started to give nonsense like this +# #define SIZEOF_CHAR 0 +# recently. Exclude that version. +AC_PREREQ([2.60]) + # Set this to YES for a released version, otherwise NO : ${RELEASE=NO} |