diff options
author | Gabor Pali <pgj@FreeBSD.org> | 2012-06-03 20:52:29 +0000 |
---|---|---|
committer | Gabor Pali <pgj@FreeBSD.org> | 2012-06-03 20:52:29 +0000 |
commit | 46e9ab0ca5e504d3509678b4d43a41d938650e75 (patch) | |
tree | a34afe36b374e7894e236fb8cee020928d36c967 /devel/hs-idoc/files/patch-IDoc.hs | |
parent | - Convert to new options framework. (diff) |
- Update The Glorious Glasgow Haskell Compiler to version 7.4.1
Please note that port revision for all the Haskell ports without version changes
are also bumped. Other per-port updates are coming soon (in separate commits)!
In addition to that, separate -docs ports are no longer needed so they are
now removed.
Thanks ashish@ for the assistance.
Obtained from: FreeBSD Haskell
Notes
Notes:
svn path=/head/; revision=298155
Diffstat (limited to 'devel/hs-idoc/files/patch-IDoc.hs')
-rw-r--r-- | devel/hs-idoc/files/patch-IDoc.hs | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/devel/hs-idoc/files/patch-IDoc.hs b/devel/hs-idoc/files/patch-IDoc.hs new file mode 100644 index 000000000000..52c3cd820aa8 --- /dev/null +++ b/devel/hs-idoc/files/patch-IDoc.hs @@ -0,0 +1,18 @@ +--- ./IDoc.hs.orig 2004-05-14 08:54:08.000000000 +0200 ++++ ./IDoc.hs 2012-05-13 00:56:43.000000000 +0200 +@@ -181,10 +181,11 @@ + where + + -- standard libraries +-import Char (isAlpha, isDigit, toUpper, isSpace, isDigit) +-import List (isPrefixOf, intersperse) +-import IO (stderr, hPutStr) +-import System (ExitCode(..), getArgs, exitWith) ++import Data.Char (isAlpha, isDigit, toUpper, isSpace, isDigit) ++import Data.List (isPrefixOf, intersperse) ++import System.IO (stderr, hPutStr) ++import System.Environment (getArgs) ++import System.Exit (ExitCode(..), exitWith) + + -- extra library + import GetOpt (ArgOrder(..), OptDescr(..), ArgDescr(..), usageInfo, |