From: ross Date: Thu, 13 Oct 2005 11:09:51 +0000 (+0000) Subject: [project @ 2005-10-13 11:09:50 by ross] X-Git-Tag: cmm-merge2~12 X-Git-Url: http://git.megacz.com/?p=haskell-directory.git;a=commitdiff_plain;h=2570f264ed329f04017d507250494eb0ab680d64 [project @ 2005-10-13 11:09:50 by ross] update non-portability reasons --- diff --git a/Control/Concurrent/Chan.hs b/Control/Concurrent/Chan.hs index 6b48e33..1fca981 100644 --- a/Control/Concurrent/Chan.hs +++ b/Control/Concurrent/Chan.hs @@ -6,7 +6,7 @@ -- -- Maintainer : libraries@haskell.org -- Stability : experimental --- Portability : non-portable (concurrency). +-- Portability : non-portable (concurrency) -- -- Unbounded channels. -- diff --git a/Control/Exception.hs b/Control/Exception.hs index 5362610..ee063de 100644 --- a/Control/Exception.hs +++ b/Control/Exception.hs @@ -6,7 +6,7 @@ -- -- Maintainer : libraries@haskell.org -- Stability : experimental --- Portability : non-portable +-- Portability : non-portable (extended exceptions) -- -- This module provides support for raising and catching both built-in -- and user-defined exceptions. diff --git a/Data/Array/Base.hs b/Data/Array/Base.hs index 756a703..224c11d 100644 --- a/Data/Array/Base.hs +++ b/Data/Array/Base.hs @@ -6,7 +6,7 @@ -- -- Maintainer : libraries@haskell.org -- Stability : experimental --- Portability : non-portable +-- Portability : non-portable (MPTCs, uses Control.Monad.ST) -- -- Basis for IArray and MArray. Not intended for external consumption; -- use IArray or MArray instead. diff --git a/Data/Array/Diff.hs b/Data/Array/Diff.hs index cdb7004..94018e4 100644 --- a/Data/Array/Diff.hs +++ b/Data/Array/Diff.hs @@ -6,7 +6,7 @@ -- -- Maintainer : libraries@haskell.org -- Stability : experimental --- Portability : non-portable +-- Portability : non-portable (uses Data.Array.IArray) -- -- Functional arrays with constant-time update. -- diff --git a/Data/Array/IArray.hs b/Data/Array/IArray.hs index 60d8097..fca1fee 100644 --- a/Data/Array/IArray.hs +++ b/Data/Array/IArray.hs @@ -6,7 +6,7 @@ -- -- Maintainer : libraries@haskell.org -- Stability : experimental --- Portability : non-portable +-- Portability : non-portable (uses Data.Array.Base) -- -- Immutable arrays, with an overloaded interface. For array types which -- can be used with this interface, see the 'Array' type exported by this diff --git a/Data/Array/IO.hs b/Data/Array/IO.hs index 0023a6a..996879d 100644 --- a/Data/Array/IO.hs +++ b/Data/Array/IO.hs @@ -7,7 +7,7 @@ -- -- Maintainer : libraries@haskell.org -- Stability : experimental --- Portability : non-portable +-- Portability : non-portable (uses Data.Array.MArray) -- -- Mutable boxed and unboxed arrays in the IO monad. -- diff --git a/Data/Array/IO/Internals.hs b/Data/Array/IO/Internals.hs index 245acfc..8789a94 100644 --- a/Data/Array/IO/Internals.hs +++ b/Data/Array/IO/Internals.hs @@ -7,7 +7,7 @@ -- -- Maintainer : libraries@haskell.org -- Stability : experimental --- Portability : non-portable +-- Portability : non-portable (uses Data.Array.Base) -- -- Mutable boxed and unboxed arrays in the IO monad. -- diff --git a/Data/Array/MArray.hs b/Data/Array/MArray.hs index 62d2e73..9119b09 100644 --- a/Data/Array/MArray.hs +++ b/Data/Array/MArray.hs @@ -6,7 +6,7 @@ -- -- Maintainer : libraries@haskell.org -- Stability : experimental --- Portability : non-portable +-- Portability : non-portable (uses Data.Array.Base) -- -- An overloaded interface to mutable arrays. For array types which can be -- used with this interface, see "Data.Array.IO", "Data.Array.ST", diff --git a/Data/Array/ST.hs b/Data/Array/ST.hs index 42829f9..828ae63 100644 --- a/Data/Array/ST.hs +++ b/Data/Array/ST.hs @@ -6,7 +6,7 @@ -- -- Maintainer : libraries@haskell.org -- Stability : experimental --- Portability : non-portable +-- Portability : non-portable (uses Data.Array.MArray) -- -- Mutable boxed and unboxed arrays in the 'Control.Monad.ST.ST' monad. -- diff --git a/Data/Array/Storable.hs b/Data/Array/Storable.hs index e5ea0be..d10a793 100644 --- a/Data/Array/Storable.hs +++ b/Data/Array/Storable.hs @@ -6,7 +6,7 @@ -- -- Maintainer : libraries@haskell.org -- Stability : experimental --- Portability : non-portable +-- Portability : non-portable (uses Data.Array.MArray) -- -- A storable array is an IO-mutable array which stores its -- contents in a contiguous memory block living in the C diff --git a/Data/Array/Unboxed.hs b/Data/Array/Unboxed.hs index d19cf6a..2e24fad 100644 --- a/Data/Array/Unboxed.hs +++ b/Data/Array/Unboxed.hs @@ -6,7 +6,7 @@ -- -- Maintainer : libraries@haskell.org -- Stability : experimental --- Portability : non-portable +-- Portability : non-portable (uses Data.Array.IArray) -- -- Unboxed immutable arrays. -- diff --git a/Data/Generics.hs b/Data/Generics.hs index 525efdc..42aa127 100644 --- a/Data/Generics.hs +++ b/Data/Generics.hs @@ -6,7 +6,7 @@ -- -- Maintainer : libraries@haskell.org -- Stability : experimental --- Portability : non-portable +-- Portability : non-portable (uses Data.Generics.Basics) -- -- \"Scrap your boilerplate\" --- Generic programming in Haskell -- See . To scrap your boilerplate it diff --git a/Data/Generics/Aliases.hs b/Data/Generics/Aliases.hs index 9cb504a..c37a98b 100644 --- a/Data/Generics/Aliases.hs +++ b/Data/Generics/Aliases.hs @@ -6,7 +6,7 @@ -- -- Maintainer : libraries@haskell.org -- Stability : experimental --- Portability : non-portable +-- Portability : non-portable (local universal quantification) -- -- \"Scrap your boilerplate\" --- Generic programming in Haskell -- See . The present module provides diff --git a/Data/Generics/Instances.hs b/Data/Generics/Instances.hs index 14579c8..926c161 100644 --- a/Data/Generics/Instances.hs +++ b/Data/Generics/Instances.hs @@ -6,7 +6,7 @@ -- -- Maintainer : libraries@haskell.org -- Stability : experimental --- Portability : non-portable +-- Portability : non-portable (uses Data.Generics.Basics) -- -- \"Scrap your boilerplate\" --- Generic programming in Haskell -- See . The present module diff --git a/Data/Generics/Schemes.hs b/Data/Generics/Schemes.hs index 5234b01..7985457 100644 --- a/Data/Generics/Schemes.hs +++ b/Data/Generics/Schemes.hs @@ -6,7 +6,7 @@ -- -- Maintainer : libraries@haskell.org -- Stability : experimental --- Portability : non-portable +-- Portability : non-portable (local universal quantification) -- -- \"Scrap your boilerplate\" --- Generic programming in Haskell -- See . The present module provides diff --git a/Data/Generics/Text.hs b/Data/Generics/Text.hs index 61ad5a7..5a81cc1 100644 --- a/Data/Generics/Text.hs +++ b/Data/Generics/Text.hs @@ -6,7 +6,7 @@ -- -- Maintainer : libraries@haskell.org -- Stability : experimental --- Portability : non-portable +-- Portability : non-portable (uses Data.Generics.Basics) -- -- \"Scrap your boilerplate\" --- Generic programming in Haskell -- See . The present module provides diff --git a/Data/Generics/Twins.hs b/Data/Generics/Twins.hs index dd2cdec..dcc01aa 100644 --- a/Data/Generics/Twins.hs +++ b/Data/Generics/Twins.hs @@ -6,7 +6,7 @@ -- -- Maintainer : libraries@haskell.org -- Stability : experimental --- Portability : non-portable +-- Portability : non-portable (local universal quantification) -- -- \"Scrap your boilerplate\" --- Generic programming in Haskell -- See . The present module diff --git a/Data/Graph.hs b/Data/Graph.hs index 2edf495..6627f04 100644 --- a/Data/Graph.hs +++ b/Data/Graph.hs @@ -6,7 +6,7 @@ -- -- Maintainer : libraries@haskell.org -- Stability : experimental --- Portability : non-portable (requires non-portable module ST) +-- Portability : non-portable (uses Control.Monad.ST) -- -- A version of the graph algorithms described in: -- diff --git a/Data/STRef.hs b/Data/STRef.hs index b185493..10853be 100644 --- a/Data/STRef.hs +++ b/Data/STRef.hs @@ -6,7 +6,7 @@ -- -- Maintainer : libraries@haskell.org -- Stability : experimental --- Portability : non-portable (requires non-portable module ST) +-- Portability : non-portable (uses Control.Monad.ST) -- -- Mutable references in the (strict) ST monad. -- diff --git a/Data/STRef/Lazy.hs b/Data/STRef/Lazy.hs index d7e028c..79a6529 100644 --- a/Data/STRef/Lazy.hs +++ b/Data/STRef/Lazy.hs @@ -6,7 +6,7 @@ -- -- Maintainer : libraries@haskell.org -- Stability : experimental --- Portability : non-portable (requires non-portable module ST) +-- Portability : non-portable (uses Control.Monad.ST.Lazy) -- -- Mutable references in the lazy ST monad. -- diff --git a/Data/STRef/Strict.hs b/Data/STRef/Strict.hs index ee432f4..81f13cd 100644 --- a/Data/STRef/Strict.hs +++ b/Data/STRef/Strict.hs @@ -6,7 +6,7 @@ -- -- Maintainer : libraries@haskell.org -- Stability : provisional --- Portability : non-portable (requires universal quantification for runST) +-- Portability : non-portable (uses Control.Monad.ST.Strict) -- -- Mutable references in the (strict) ST monad (re-export of "Data.STRef") -- diff --git a/System/Posix/Internals.hs b/System/Posix/Internals.hs index 02fec17..a1ee00b 100644 --- a/System/Posix/Internals.hs +++ b/System/Posix/Internals.hs @@ -8,7 +8,7 @@ -- -- Maintainer : cvs-ghc@haskell.org -- Stability : internal --- Portability : non-portable +-- Portability : non-portable (requires POSIX) -- -- POSIX support layer for the standard libraries. -- This library is built on *every* platform, including Win32.