From: Wolfgang T. <wth...@us...> - 2004-12-06 03:47:00
|
Update of /cvsroot/hoc/hoc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28748 Modified Files: configure.ac Log Message: Upgrade to GHC 6.3, recent snapshot. I'm sure there are more places in HOC.* where we can take advantage of TH 2.0's new features, and the Cabal-aware build system is still quite fragile. Index: configure.ac =================================================================== RCS file: /cvsroot/hoc/hoc/configure.ac,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- configure.ac 17 May 2004 18:40:20 -0000 1.7 +++ configure.ac 6 Dec 2004 03:46:49 -0000 1.8 @@ -60,13 +60,13 @@ ghc_minor=`echo "$ghc_version" | sed -n -e 's/[0-9][0-9]*\.\([0-9][0-9]*\).*/\1/p'` changequote([, ]) AC_MSG_RESULT([$ghc_version]) - if test '(' "$ghc_major" -ge 6 -a "$ghc_minor" -ge 2 ')' -o \ - '(' "$ghc_major" -ge 6 ')'; then + if test '(' "$ghc_major" -ge 6 -a "$ghc_minor" -ge 3 ')' -o \ + '(' "$ghc_major" -gt 6 ')'; then AC_MSG_CHECKING([for ghc library directory]) GHC_LIB_PATH=`$GHC --print-libdir` AC_MSG_RESULT([$GHC_LIB_PATH]) else - AC_MSG_ERROR([** Sorry, your GHC is too old. GHC >= 6.2 required.]) + AC_MSG_ERROR([** Sorry, your GHC is too old. GHC >= 6.3 (Dec. 04 snapshot) required.]) GHC="" fi else |