[commit: ghc] master: Require autoconf 2.60, as (0af03de)

Gabor Greif ggreif at gmail.com
Thu Feb 7 12:33:54 CET 2013


Repository : ssh://darcs.haskell.org//srv/darcs/ghc

On branch  : master

http://hackage.haskell.org/trac/ghc/changeset/0af03de5cbeca76aefb34b3ff3f2f4c79b3e633a

>---------------------------------------------------------------

commit 0af03de5cbeca76aefb34b3ff3f2f4c79b3e633a
Author: Gabor Greif <ggreif at gmail.com>
Date:   Thu Feb 7 12:13:50 2013 +0100

    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.

>---------------------------------------------------------------

 configure.ac |    5 +++++
 1 files changed, 5 insertions(+), 0 deletions(-)

diff --git a/configure.ac b/configure.ac
index 1a0fa81..824e4e0 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 at 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}
 





More information about the ghc-commits mailing list