Update of /cvsroot/gtk2hs/gtk2hs
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30221
Modified Files:
ChangeLog configure.in
Log Message:
Drop support for ghc 5.02.x, the minimum version required is now 5.04.x
Index: ChangeLog
===================================================================
RCS file: /cvsroot/gtk2hs/gtk2hs/ChangeLog,v
retrieving revision 1.213
retrieving revision 1.214
diff -u -d -r1.213 -r1.214
--- ChangeLog 5 Aug 2004 14:24:27 -0000 1.213
+++ ChangeLog 6 Aug 2004 01:28:17 -0000 1.214
@@ -1,4 +1,10 @@
-2004-08-4 Duncan Coutts <du...@co...>
+2004-08-6 Duncan Coutts <du...@co...>
+
+ * configure.in, mk/config.mk.in, gtk/Makefile, mogul/Makefile,
+ glade/Makefile, sourceview/Makefile: drop support for ghc 5.02.x.
+ the minimum version required is now 5.04.x.
+
+2004-08-5 Duncan Coutts <du...@co...>
* gtk/treeList/TreeView.chs, gtk/multiline/TextTag.chs,
gtk/multiline/TextTagTable.chs, gtk/multiline/TextView.chs: add missing
Index: configure.in
===================================================================
RCS file: /cvsroot/gtk2hs/gtk2hs/configure.in,v
retrieving revision 1.38
retrieving revision 1.39
diff -u -d -r1.38 -r1.39
--- configure.in 4 Aug 2004 18:46:32 -0000 1.38
+++ configure.in 6 Aug 2004 01:28:17 -0000 1.39
@@ -119,13 +119,13 @@
-dnl Check for GHC-5.02 or greater.
+dnl Check for GHC-5.04 or greater.
dnl (The next command is not executed, if $HC is already set.)
AC_PATH_PROG(HC, [$HC ghc], ghc-not-found)
if test $HC = ghc-not-found; then
AC_MSG_ERROR([
Could not find GHC! This is the only supported compiler.
-You need GHC 5.02 upwards.])
+You need GHC 5.04 upwards.])
fi
GHC=$HC
@@ -135,8 +135,8 @@
GHC_VERSION=`$GHC --version | $SED "s/[[a-zA-Z ,]*\([0-9.]*\)[a-zA-Z ]]*/\1/"`
AC_MSG_RESULT([$GHC_VERSION])
-GTKHS_PROG_CHECK_VERSION($GHC_VERSION, -lt, 5.0.2, [
- AC_MSG_ERROR([I need the FFI of GHC 5.02 upwards!])])
+GTKHS_PROG_CHECK_VERSION($GHC_VERSION, -lt, 5.0.4, [
+ AC_MSG_ERROR([I need the FFI of GHC 5.04 upwards!])])
dnl Calculate a version number with 3 digits (i.e. 502 for 5.2)
GHC_VERSION_NUMBER=`echo $GHC_VERSION | $SED "s/[[0-9]*\.\([0-9]]*\).*/0\1/"`
@@ -164,13 +164,6 @@
DLPREFIX="lib";
])
-dnl Check if this ghc uses the new hierachical module system. If so, we don't
-dnl need to depend on the "lang" or "data" package (which don't exist anymore).
-AC_MSG_CHECKING([new module system])
-NEW_MODULE_SYSTEM=no;
-GTKHS_PROG_CHECK_VERSION($GHC_VERSION, -ge, 5.04.0,[NEW_MODULE_SYSTEM=yes;]);
-AC_MSG_RESULT([$NEW_MODULE_SYSTEM])
-
GHCBARE=`basename $GHC`
GHCDIR=`dirname $GHC`
GHCPKGNAME=ghc-pkg`echo $GHCBARE | $SED s/ghc//`
@@ -542,7 +535,6 @@
AC_SUBST(BUILT_IN_C2HS)
AC_SUBST(MULTIPLE_CHS)
AC_SUBST(FOUR_WORD_CALLBACK)
-AC_SUBST(NEW_MODULE_SYSTEM)
AC_SUBST(GHCPKG_LISTLOCAL)
AC_SUBST(LOCALPKGCONF)
AC_SUBST(HCFLAGS)
|