Repository : ssh://darcs.haskell.org//srv/darcs/packages/haskeline On branch : master
http://hackage.haskell.org/trac/ghc/changeset/9afc1d2d5027ee07e6a42c9f4b1bd87d38cf2f90 >--------------------------------------------------------------- commit 9afc1d2d5027ee07e6a42c9f4b1bd87d38cf2f90 Author: Judah Jacobson <[email protected]> Date: Sun Aug 26 00:07:04 2012 +0000 Don't use Control.Exception.Extensible in Setup.hs. This fixes the build on ghc>=7.6.1, which no longer provides the extensible-exceptions package by default. (Haskeline's own dependency on extensible-exceptions was removed in haskeline-0.7.0.0.) >--------------------------------------------------------------- Setup.hs | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/Setup.hs b/Setup.hs index 0e148c9..48ae6b6 100644 --- a/Setup.hs +++ b/Setup.hs @@ -14,7 +14,7 @@ import qualified Distribution.InstalledPackageInfo as Installed import System.IO import System.Exit import System.Directory -import Control.Exception.Extensible +import Control.Exception import Control.Monad(when) main :: IO () _______________________________________________ Cvs-libraries mailing list [email protected] http://www.haskell.org/mailman/listinfo/cvs-libraries
