From ee0417883b9cbc27588b3091c70771ea9099fab4 Mon Sep 17 00:00:00 2001
From: Iustin Pop <iustin@google.com>
Date: Fri, 8 Jul 2011 16:07:42 +0200
Subject: [PATCH] Update documentation regarding Haskell dependencies

These were forgot when the supported library versions were changed.

Signed-off-by: Iustin Pop <iustin@google.com>
Reviewed-by: Michael Hanselmann <hansmi@google.com>
---
 INSTALL          | 11 ++++++++---
 doc/devnotes.rst |  2 +-
 2 files changed, 9 insertions(+), 4 deletions(-)

diff --git a/INSTALL b/INSTALL
index 35be18b05..cb56e8025 100644
--- a/INSTALL
+++ b/INSTALL
@@ -63,9 +63,8 @@ installed. More specifically:
 - `json <http://hackage.haskell.org/package/json>`_, a JSON library
 - `network <http://hackage.haskell.org/package/network>`_, a basic
   network library
-- `parallel <http://hackage.haskell.org/package/parallel>`_, version 1.x
-  or 2.x, a parallel programming library (note: version 3.x is not yet
-  supported)
+- `parallel <http://hackage.haskell.org/package/parallel>`_, a parallel
+  programming library (note: tested with up to version 3.x)
 - `curl <http://hackage.haskell.org/package/curl>`_, bindings for the
   curl library, only needed if you want these tools to connect to remote
   clusters (as opposed to the local one)
@@ -75,6 +74,12 @@ All of these are also available as package in Debian/Ubuntu::
   $ apt-get install ghc6 libghc6-json-dev libghc6-network-dev \
                     libghc6-parallel-dev libghc6-curl-dev
 
+Note that more recent version have switched to GHC 7.x and the packages
+were renamed::
+
+  $ apt-get install ghc libghc-json-dev libghc-network-dev \
+                    libghc-parallel-dev libghc-curl-dev
+
 The compilation of the htools components is automatically enabled when
 the compiler and the requisite libraries are found. You can use the
 ``--enable-htools`` configure flag to force the selection (at which
diff --git a/doc/devnotes.rst b/doc/devnotes.rst
index 1e708d35e..35d223c62 100644
--- a/doc/devnotes.rst
+++ b/doc/devnotes.rst
@@ -44,7 +44,7 @@ document, plus:
 Under Debian, these can be installed (on top of the required ones from
 the quick install document) via::
 
-  apt-get install libghc6-quickcheck1-dev hscolour hlint
+  apt-get install libghc-quickcheck2-dev hscolour hlint
 
 
 Configuring for development
-- 
GitLab