From 905395be0a3f087ae94c7c4ed33c431a3dfbaeff Mon Sep 17 00:00:00 2001 From: Simon Marlow Date: Tue, 9 Jan 2007 09:17:58 +0000 Subject: [PATCH] reorganise text in the "using packages" section --- docs/users_guide/packages.xml | 71 ++++++++++++++++------------------------- 1 file changed, 28 insertions(+), 43 deletions(-) diff --git a/docs/users_guide/packages.xml b/docs/users_guide/packages.xml index 7c934a2..ab4ab8d 100644 --- a/docs/users_guide/packages.xml +++ b/docs/users_guide/packages.xml @@ -30,15 +30,41 @@ Packages packages using - GHC only knows about packages that are installed. + GHC only knows about packages that are + installed. To see which packages are installed, use + the ghc-pkg command: + + +$ ghc-pkg list +/usr/lib/ghc-6.4/package.conf: + base-1.0, haskell98-1.0, template-haskell-1.0, mtl-1.0, unix-1.0, + Cabal-1.0, haskell-src-1.0, parsec-1.0, network-1.0, + QuickCheck-1.0, HUnit-1.1, fgl-1.0, X11-1.1, HGL-3.1, OpenGL-2.0, + GLUT-2.0, stm-1.0, readline-1.0, (lang-1.0), (concurrent-1.0), + (posix-1.0), (util-1.0), (data-1.0), (text-1.0), (net-1.0), + (hssource-1.0), rts-1.0 + An installed package is either exposed or hidden - by default. Command-line flags, described below, allow you to expose a hidden package + by default. Packages hidden by default are listed in + parentheses (eg. (lang-1.0)) in the output above. Command-line flags, described below, allow you to expose a hidden package or hide an exposed one. Only modules from exposed packages may be imported by your Haskell code; if you try to import a module from a hidden package, GHC will emit an error message. + To see which modules are provided by a package use the + ghc-pkg command (see ): + + +$ ghc-pkg field network exposed-modules +exposed-modules: Network.BSD, + Network.CGI, + Network.Socket, + Network.URI, + Network + + The GHC command line options that control packages are: @@ -163,47 +189,6 @@ Packages - - - To see which packages are installed, use the - ghc-pkg command: - - -$ ghc-pkg list -/usr/lib/ghc-6.4/package.conf: - base-1.0, haskell98-1.0, template-haskell-1.0, mtl-1.0, unix-1.0, - Cabal-1.0, haskell-src-1.0, parsec-1.0, network-1.0, - QuickCheck-1.0, HUnit-1.1, fgl-1.0, X11-1.1, HGL-3.1, OpenGL-2.0, - GLUT-2.0, stm-1.0, readline-1.0, (lang-1.0), (concurrent-1.0), - (posix-1.0), (util-1.0), (data-1.0), (text-1.0), (net-1.0), - (hssource-1.0), rts-1.0 - - - Packages hidden by default are listed in - parentheses (eg. (lang-1.0)) in the output above. - To expose a package which is hidden by - default, use the - flag (see above). - - When a package is exposed, it makes available for import the exposed modules - of the package. To see which modules are exposed by a package use the - ghc-pkg command (see ): - - -$ ghc-pkg field network exposed-modules -exposed-modules: Network.BSD, - Network.CGI, - Network.Socket, - Network.URI, - Network - - - In general, packages containing hierarchical modules are usually - exposed by default. However, it is possible for two packages to contain - the same module: in this case, only one of the packages should be - exposed. It is an error to import a module that belongs to more than one - exposed package. - -- 1.7.10.4