mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-03 06:04:53 +00:00
46e9ab0ca5
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
19 lines
666 B
Haskell
19 lines
666 B
Haskell
--- ./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,
|