make html

2005-06-01 Thread Serge D. Mechveliani
Dear GHC supporters, I have made ghc-6.4 from source by binary itself (Linux, Debian 3.1): cd ghc/6.4/ghc-6.4/ ./configure --prefix=foo make make install But it is so hard to obtain documentation! I triedmake html (in the same directory). It reports

Re: make html

2005-06-01 Thread Donald Bruce Stewart
mechvel: Dear GHC supporters, I have made ghc-6.4 from source by binary itself (Linux, Debian 3.1): cd ghc/6.4/ghc-6.4/ ./configure --prefix=foo make make install But it is so hard to obtain documentation! I triedmake html (in the same directory). It reports

Re: make html

2005-06-01 Thread Serge D. Mechveliani
On Wed, Jun 01, 2005 at 08:37:07PM +1000, Donald Bruce Stewart wrote: mechvel: Dear GHC supporters, I have made ghc-6.4 from source by binary itself [..] But it is so hard to obtain documentation! [..] ... Why not provide, say, a couple of ready .ps files for user guide

Re: make html

2005-06-01 Thread Brian Smith
Hi, On 6/1/05, Serge D. Mechveliani [EMAIL PROTECTED] wrote: Dear GHC supporters, rm -f -rf users_guide/ stringparam base.dir users_guide/ \ --stringparam use.id.as.filename 1 \ --stringparam html.stylesheet fptools.css \ --stringparam toc.section.depth

Re[2]: [Haskell-cafe] ghc 6.4 import problem

2005-06-01 Thread Bulat Ziganshin
Hello Fergus, Tuesday, May 31, 2005, 10:24:41 PM, you wrote: import Data.Set hiding (map) import qualified Data.Set as Set will do fine. FH That code only compiles with ghc 6.4, and won't compile with ghc 6.2: FH you'll get an error for the hiding (map) part, because in 6.2 FH Data.Set