diff options
author | Gabor Greif <ggreif@gmail.com> | 2013-02-07 12:53:59 +0100 |
---|---|---|
committer | Gabor Greif <ggreif@gmail.com> | 2013-02-07 12:54:50 +0100 |
commit | 5b8dc205d0a7b243e8419492b5db457d31afdc46 (patch) | |
tree | 00ea0045c25d5ebdc5f7b7678672a0de389a7d51 /configure.ac | |
parent | 0af03de5cbeca76aefb34b3ff3f2f4c79b3e633a (diff) | |
download | haskell-5b8dc205d0a7b243e8419492b5db457d31afdc46.tar.gz |
Clean up AC_PREREQ.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/configure.ac b/configure.ac index 824e4e029f..c27b49fd38 100644 --- a/configure.ac +++ b/configure.ac @@ -15,11 +15,6 @@ 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} @@ -54,10 +49,13 @@ AC_SUBST([release], [1]) # First off, a distrib sanity check.. AC_CONFIG_SRCDIR([mk/config.mk.in]) -dnl * We require autoconf version 2.52 +dnl * We require autoconf version 2.60 dnl We need 2.50 due to the use of AC_SYS_LARGEFILE and AC_MSG_NOTICE. dnl We need 2.52 due to the use of AS_TR_CPP and AS_TR_SH. -AC_PREREQ([2.52]) +dnl Using autoconf 2.59 started to give nonsense like this +dnl #define SIZEOF_CHAR 0 +dnl recently. +AC_PREREQ([2.60]) # ------------------------------------------------------------------------- # Prepare to generate the following header files |