ghc-base.git
16 years agoprotect against concurrent access to the signal handlers (#1922)
Simon Marlow [Tue, 4 Dec 2007 11:08:17 +0000 (11:08 +0000)]
protect against concurrent access to the signal handlers (#1922)

16 years agorestore fdToHandle' to avoid breaking clients (#1109)
Simon Marlow [Fri, 30 Nov 2007 13:51:22 +0000 (13:51 +0000)]
restore fdToHandle' to avoid breaking clients (#1109)

16 years agonote about how to convert CTime (aka EpochTime) to UTCTime
Simon Marlow [Fri, 30 Nov 2007 10:16:48 +0000 (10:16 +0000)]
note about how to convert CTime (aka EpochTime) to UTCTime

16 years agoFix some URLs
Ian Lynagh [Mon, 26 Nov 2007 21:42:13 +0000 (21:42 +0000)]
Fix some URLs

16 years agoFix some links in haddock docs
Ian Lynagh [Mon, 26 Nov 2007 18:44:28 +0000 (18:44 +0000)]
Fix some links in haddock docs

16 years agoDon't try to make haddock links to the mtl package as we don't depend on it
Ian Lynagh [Mon, 26 Nov 2007 17:06:31 +0000 (17:06 +0000)]
Don't try to make haddock links to the mtl package as we don't depend on it

16 years agoEscape some special characters in haddock docs
Ian Lynagh [Mon, 26 Nov 2007 16:34:43 +0000 (16:34 +0000)]
Escape some special characters in haddock docs

16 years agoFIX BUILD: maybeUpdateFile: ignore failures when removing the target
Simon Marlow [Fri, 23 Nov 2007 09:22:19 +0000 (09:22 +0000)]
FIX BUILD: maybeUpdateFile: ignore failures when removing the target

16 years agoFIX #1753
Simon Marlow [Thu, 22 Nov 2007 09:42:07 +0000 (09:42 +0000)]
FIX #1753
hClose should close the Handle and unlock the file even if calling
close() fails for some reason.

16 years agoremove lockFile.h from install-includes
Simon Marlow [Wed, 21 Nov 2007 10:22:48 +0000 (10:22 +0000)]
remove lockFile.h from install-includes

16 years agooops, we forgot to export traceShow
Simon Marlow [Wed, 21 Nov 2007 09:43:00 +0000 (09:43 +0000)]
oops, we forgot to export traceShow

16 years agoFix compilation with GHC 6.2.x
Simon Marlow [Wed, 21 Nov 2007 08:43:41 +0000 (08:43 +0000)]
Fix compilation with GHC 6.2.x

16 years agoMove file locking into the RTS, fixing #629, #1109
Simon Marlow [Tue, 20 Nov 2007 12:10:53 +0000 (12:10 +0000)]
Move file locking into the RTS, fixing #629, #1109
File locking (of the Haskell 98 variety) was previously done using a
static table with linear search, which had two problems: the array had
a fixed size and was sometimes too small (#1109), and performance of
lockFile/unlockFile was suboptimal due to the linear search.
Also the algorithm failed to count readers as required by Haskell 98
(#629).

Now it's done using a hash table (provided by the RTS).  Furthermore I
avoided the extra fstat() for every open file by passing the dev_t and
ino_t into lockFile.  This and the improvements to the locking
algorithm result in a healthy 20% or so performance increase for
opening/closing files (see openFile008 test).

16 years agoOnly overwrite GHC/Prim.hs and GHC/Primopwrappers.hs if they change
Simon Marlow [Tue, 20 Nov 2007 10:20:42 +0000 (10:20 +0000)]
Only overwrite GHC/Prim.hs and GHC/Primopwrappers.hs if they change
This avoids make doing unnecessary work after 'setup makefile'.

16 years agofix comment
Simon Marlow [Fri, 16 Nov 2007 09:12:27 +0000 (09:12 +0000)]
fix comment

16 years agoFix ` characters in elem's haddock docs
Ian Lynagh [Sat, 10 Nov 2007 17:30:52 +0000 (17:30 +0000)]
Fix ` characters in elem's haddock docs

16 years agoFilter out GHC.Prim also for the Haddock step
David Waern [Fri, 9 Nov 2007 00:08:06 +0000 (00:08 +0000)]
Filter out GHC.Prim also for the Haddock step
Please merge to the GHC 6.8.2 branch

16 years agoAdd module of special magic GHC desugaring helper functions
Simon Marlow [Fri, 2 Nov 2007 16:00:54 +0000 (16:00 +0000)]
Add module of special magic GHC desugaring helper functions
Currently containing only one such helper: (>>>) for arrow desugaring

16 years agoadd Control.Category to the nhc98 build
Malcolm.Wallace@cs.york.ac.uk [Tue, 30 Oct 2007 12:04:59 +0000 (12:04 +0000)]
add Control.Category to the nhc98 build

16 years agofix nhc98 build: need a qualified Prelude import
Malcolm.Wallace@cs.york.ac.uk [Tue, 30 Oct 2007 12:04:10 +0000 (12:04 +0000)]
fix nhc98 build: need a qualified Prelude import

16 years agoFix performance regression: re-instate -funbox-strict-fields
Simon Marlow [Mon, 29 Oct 2007 15:07:30 +0000 (15:07 +0000)]
Fix performance regression: re-instate -funbox-strict-fields
Yikes!  While investigating the increase in code size with GHC 6.8
relative to 6.6, I noticed that in the transition to Cabal for the
libraries we lost -funbox-strict-fields, which is more or less
depended on by the IO library for performance.  I'm astonished that we
didn't notice this earlier!

To reduce the chances of this happening again, I put
-funbox-strict-fields in the OPTIONS_GHC pragma of the modules that
need it.  {-# UNPACK #-} pragmas would be better, though.

16 years agoFIX BUILD: Haddock 1.x fails to parse (Prelude..)
Simon Marlow [Mon, 29 Oct 2007 13:19:21 +0000 (13:19 +0000)]
FIX BUILD: Haddock 1.x fails to parse (Prelude..)

16 years agonew Control.Category, ghc ticket #1773
Ashley Yakeley [Mon, 29 Oct 2007 02:25:26 +0000 (02:25 +0000)]
new Control.Category, ghc ticket #1773

16 years agonew Control.Compositor module
Ashley Yakeley [Sat, 13 Oct 2007 07:48:51 +0000 (07:48 +0000)]
new Control.Compositor module

The Compositor class is a superclass of Arrow.

16 years agoFix doc building with Haddock 0.9
Simon Marlow [Wed, 24 Oct 2007 09:09:47 +0000 (09:09 +0000)]
Fix doc building with Haddock 0.9
I was using a recent build here, which is more tolerant.

16 years agoFIX #1258: document that openTempFile is secure(ish)
Simon Marlow [Tue, 23 Oct 2007 13:09:28 +0000 (13:09 +0000)]
FIX #1258: document that openTempFile is secure(ish)
Also change the mode from 0666 to 0600, which seems like a more
sensible value and matches what C's mkstemp() does.

16 years agoClean up .cabal file a bit
Duncan Coutts [Mon, 22 Oct 2007 13:27:08 +0000 (13:27 +0000)]
Clean up .cabal file a bit
specify build-type and cabal-version >= 1.2
put extra-tmp-files in the right place
use os(windows) rather than os(mingw32)

16 years agobase in 6.8 and head branch should be version 3.0
Don Stewart [Sun, 7 Oct 2007 15:04:08 +0000 (15:04 +0000)]
base in 6.8 and head branch should be version 3.0

16 years agoFIX #1652: openTempFile should accept an empty string for the directory
Simon Marlow [Thu, 18 Oct 2007 12:23:45 +0000 (12:23 +0000)]
FIX #1652: openTempFile should accept an empty string for the directory

16 years agoclean up duplicate code
Simon Marlow [Wed, 17 Oct 2007 14:13:11 +0000 (14:13 +0000)]
clean up duplicate code

16 years agoexpose the value of +RTS -N as GHC.Conc.numCapabilities (see #1733)
Simon Marlow [Tue, 9 Oct 2007 13:20:42 +0000 (13:20 +0000)]
expose the value of +RTS -N as GHC.Conc.numCapabilities (see #1733)

16 years agotypo
Simon Marlow [Mon, 17 Sep 2007 13:07:03 +0000 (13:07 +0000)]
typo

16 years agoput extra-tmp-files field in the right place
Simon Marlow [Fri, 14 Sep 2007 14:08:12 +0000 (14:08 +0000)]
put extra-tmp-files field in the right place

16 years agoAdd more entries to boring file
Ian Lynagh [Thu, 13 Sep 2007 21:05:00 +0000 (21:05 +0000)]
Add more entries to boring file

16 years agoAdd a boring file
Ian Lynagh [Thu, 13 Sep 2007 20:46:41 +0000 (20:46 +0000)]
Add a boring file

16 years agoFIX #1689 (openTempFile returns wrong filename) 2007-09-13
Tim Chevalier [Thu, 13 Sep 2007 05:20:25 +0000 (05:20 +0000)]
FIX #1689 (openTempFile returns wrong filename)

16 years agoTAG ghc-6.8 branched 2007-09-03
Ian Lynagh [Mon, 3 Sep 2007 15:55:41 +0000 (15:55 +0000)]
TAG ghc-6.8 branched 2007-09-03

16 years agoRemove some incorrect rules; fixes #1658: CSE [of Doubles] changes semantics
Ian Lynagh [Tue, 4 Sep 2007 13:41:40 +0000 (13:41 +0000)]
Remove some incorrect rules; fixes #1658: CSE [of Doubles] changes semantics

16 years agomake hWaitForInput/hReady not fail with "invalid argument" on Windows
Simon Marlow [Thu, 30 Aug 2007 13:11:15 +0000 (13:11 +0000)]
make hWaitForInput/hReady not fail with "invalid argument" on Windows
See #1198.  This doesn't fully fix it, because hReady still always
returns False on file handles.  I'm not really sure how to fix that.

16 years agoFix haddock docs in Hashtable
Ian Lynagh [Thu, 30 Aug 2007 15:41:31 +0000 (15:41 +0000)]
Fix haddock docs in Hashtable

16 years agoFix building HashTable: Use ord rather than fromEnum
Ian Lynagh [Thu, 30 Aug 2007 15:02:14 +0000 (15:02 +0000)]
Fix building HashTable: Use ord rather than fromEnum

16 years agoBetter hash functions for Data.HashTable, from Jan-Willem Maessen
Ian Lynagh [Thu, 30 Aug 2007 14:28:44 +0000 (14:28 +0000)]
Better hash functions for Data.HashTable, from Jan-Willem Maessen

16 years agoRemove redundant include/Makefile
Ian Lynagh [Tue, 28 Aug 2007 20:56:59 +0000 (20:56 +0000)]
Remove redundant include/Makefile

16 years agoMake arrays safer (e.g. trac #1046)
Ian Lynagh [Fri, 10 Aug 2007 16:34:05 +0000 (16:34 +0000)]
Make arrays safer (e.g. trac #1046)

16 years agodelete configure droppings in setup clean
Simon Marlow [Fri, 24 Aug 2007 10:41:00 +0000 (10:41 +0000)]
delete configure droppings in setup clean

16 years agoFIX #1282: 64-bit unchecked shifts are not exported from base
Simon Marlow [Thu, 23 Aug 2007 13:50:33 +0000 (13:50 +0000)]
FIX #1282: 64-bit unchecked shifts are not exported from base
I've exported these functions from GHC.Exts.  They are still
implemented using the FFI underneath, though.

To avoid conditional exports, on a 64-bit build:

  uncheckedShiftL64# = uncheckShiftL#

(etc.) which has a different type than the 32-bit version of
uncheckedShiftL64#, but at least GHC.Exts exports the same names.

16 years agoFix hashInt
Ian Lynagh [Tue, 21 Aug 2007 14:07:06 +0000 (14:07 +0000)]
Fix hashInt
As pointed out in
http://www.haskell.org/pipermail/glasgow-haskell-bugs/2007-August/009545.html
the old behaviour was
Prelude Data.HashTable> map hashInt [0..10]
[0,-1,-1,-2,-2,-2,-3,-3,-4,-4,-4]

Fixed according to the "Fibonacci Hashing" algorithm described in
http://www.brpreiss.com/books/opus4/html/page213.html
http://www.brpreiss.com/books/opus4/html/page214.html

16 years agotest impl(ghc) instead of IsGHC
Ross Paterson [Sun, 19 Aug 2007 23:35:00 +0000 (23:35 +0000)]
test impl(ghc) instead of IsGHC

16 years agofpstring.h has moved to bytestring
Ross Paterson [Sun, 19 Aug 2007 23:38:15 +0000 (23:38 +0000)]
fpstring.h has moved to bytestring

16 years agoremove now-unused SIG constants
Ross Paterson [Sun, 19 Aug 2007 23:37:45 +0000 (23:37 +0000)]
remove now-unused SIG constants

16 years agoinclude Win32 extra-libraries for non-GHC's too
Ross Paterson [Sun, 19 Aug 2007 23:36:11 +0000 (23:36 +0000)]
include Win32 extra-libraries for non-GHC's too

16 years agoDon't import Distribution.Setup in Setup.hs as we no longer need it
Ian Lynagh [Thu, 16 Aug 2007 15:16:43 +0000 (15:16 +0000)]
Don't import Distribution.Setup in Setup.hs as we no longer need it

16 years agoCorrect the swapMVar haddock doc
Ian Lynagh [Tue, 14 Aug 2007 14:50:28 +0000 (14:50 +0000)]
Correct the swapMVar haddock doc

16 years agoinstall Typeable.h for use by other packages
Malcolm.Wallace@cs.york.ac.uk [Mon, 13 Aug 2007 11:28:55 +0000 (11:28 +0000)]
install Typeable.h for use by other packages

16 years agoDon't try to build modules no longer living in base.
Malcolm.Wallace@cs.york.ac.uk [Mon, 13 Aug 2007 11:28:03 +0000 (11:28 +0000)]
Don't try to build modules no longer living in base.

16 years agoMove Data.{Foldable,Traversable} back to base
Ian Lynagh [Sun, 12 Aug 2007 16:56:54 +0000 (16:56 +0000)]
Move Data.{Foldable,Traversable} back to base
The Array instances are now in Data.Array.

16 years agoRemove bits left over from the old build system
Ian Lynagh [Sat, 11 Aug 2007 13:50:19 +0000 (13:50 +0000)]
Remove bits left over from the old build system

16 years agoMove the datamap001 (our only test) to the containers package
Ian Lynagh [Fri, 3 Aug 2007 18:09:32 +0000 (18:09 +0000)]
Move the datamap001 (our only test) to the containers package

16 years agoData.Array* and Data.PackedString have now moved to their own packages
Ian Lynagh [Wed, 1 Aug 2007 23:55:42 +0000 (23:55 +0000)]
Data.Array* and Data.PackedString have now moved to their own packages

16 years agoRemove a number of modules now in a "containers" package
Ian Lynagh [Wed, 1 Aug 2007 22:38:58 +0000 (22:38 +0000)]
Remove a number of modules now in a "containers" package

16 years agoRemove System.Posix.Signals (moving to unix)
Ian Lynagh [Sun, 29 Jul 2007 21:52:13 +0000 (21:52 +0000)]
Remove System.Posix.Signals (moving to unix)

16 years agobytestring is now in its own package
Ian Lynagh [Sun, 29 Jul 2007 13:22:15 +0000 (13:22 +0000)]
bytestring is now in its own package

16 years agoExport throwErrnoPath* functions
Ian Lynagh [Sun, 22 Jul 2007 00:29:23 +0000 (00:29 +0000)]
Export throwErrnoPath* functions

16 years agoAdd simple haddock docs for throwErrnoPath* functions
Ian Lynagh [Sun, 22 Jul 2007 00:28:17 +0000 (00:28 +0000)]
Add simple haddock docs for throwErrnoPath* functions

16 years agoMove throwErrnoPath* functions from unix:System.Posix.Error
Ian Lynagh [Sun, 22 Jul 2007 00:27:46 +0000 (00:27 +0000)]
Move throwErrnoPath* functions from unix:System.Posix.Error

16 years agoClarify the swapMVar haddock doc
Ian Lynagh [Tue, 7 Aug 2007 18:55:57 +0000 (18:55 +0000)]
Clarify the swapMVar haddock doc

16 years agofix Haddock markup
Simon Marlow [Thu, 2 Aug 2007 08:17:17 +0000 (08:17 +0000)]
fix Haddock markup

16 years agoTemporarily fix breakage for nhc98.
Malcolm.Wallace@cs.york.ac.uk [Wed, 1 Aug 2007 16:37:50 +0000 (16:37 +0000)]
Temporarily fix breakage for nhc98.
A recent patch to System.IO introduced a cyclic dependency on Foreign.C.Error,
and also inadvertently dragged along System.Posix.Internals which has
non-H'98 layout, causing many build problems.  The solution for now
is to #ifndef __NHC__ all of the recent the openTempFile additions,
and mark them non-portable once again.  (I also took the opportunity
to note a number of other non-portable functions in their Haddock
comments.)

16 years agoGeneralise the type of synthesize, as suggested by Trac #1571
simonpj@microsoft [Wed, 1 Aug 2007 12:52:08 +0000 (12:52 +0000)]
Generalise the type of synthesize, as suggested by Trac #1571

I have not looked at the details, but the type checker is happy with the
more general type, and more general types are usually a Good Thing.

16 years agoFix fdToHandle on Windows
Ian Lynagh [Mon, 30 Jul 2007 13:31:39 +0000 (13:31 +0000)]
Fix fdToHandle on Windows
The old setmode code was throwing an exception, and I'm not sure it is
meant to do what we need anyway. For now we assume that all FDs are
both readable and writable.

16 years agoCorrect Windows OS name in cabal configuration
Ian Lynagh [Sun, 29 Jul 2007 16:17:39 +0000 (16:17 +0000)]
Correct Windows OS name in cabal configuration

16 years agoUse cabal configurations rather than Setup hacks
Ian Lynagh [Sun, 29 Jul 2007 13:21:57 +0000 (13:21 +0000)]
Use cabal configurations rather than Setup hacks

16 years agoHandle buffers should be allocated with newPinnedByteArray# always
Simon Marlow [Wed, 25 Jul 2007 09:55:50 +0000 (09:55 +0000)]
Handle buffers should be allocated with newPinnedByteArray# always
Not just on Windows.  This change is required because we now use safe
foreign calls for I/O on blocking file descriptors with the threaded
RTS.  Exposed by concio001.thr on MacOS X: MacOS apparently uses
smaller buffers by default, so they weren't being allocated as large
objects.

16 years agofix Hugs implementation of openTempFile
Ross Paterson [Tue, 24 Jul 2007 11:40:03 +0000 (11:40 +0000)]
fix Hugs implementation of openTempFile

16 years agoHugs only: avoid dependency cycle
Ross Paterson [Tue, 24 Jul 2007 11:38:52 +0000 (11:38 +0000)]
Hugs only: avoid dependency cycle

16 years agoopen(Binary)TempFile is now portable
Ian Lynagh [Sun, 22 Jul 2007 15:27:52 +0000 (15:27 +0000)]
open(Binary)TempFile is now portable

16 years agoTweak temporary file filename chooser
Ian Lynagh [Sun, 22 Jul 2007 10:54:45 +0000 (10:54 +0000)]
Tweak temporary file filename chooser

16 years agoMove open(Binary)TempFile to System.IO
Ian Lynagh [Sun, 22 Jul 2007 01:02:05 +0000 (01:02 +0000)]
Move open(Binary)TempFile to System.IO

16 years agoRename openFd to fdToHandle'
Ian Lynagh [Sat, 21 Jul 2007 23:55:38 +0000 (23:55 +0000)]
Rename openFd to fdToHandle'
The name collision with System.Posix.IO.openFd made my brain hurt.

16 years agoAdd a test for Data.Map, for a bug on the libraries@ list
Ian Lynagh [Sat, 21 Jul 2007 00:21:19 +0000 (00:21 +0000)]
Add a test for Data.Map, for a bug on the libraries@ list

16 years agofix Data.Map.updateAt
Bertram Felgenhauer [Wed, 18 Jul 2007 15:03:40 +0000 (15:03 +0000)]
fix Data.Map.updateAt
See http://haskell.org/pipermail/libraries/2007-July/007785.html for a piece
of code triggering the bug. updateAt threw away parts of the tree making up
the map.

16 years agoin hClose, free the handle buffer by replacing it with an empty one
Simon Marlow [Thu, 19 Jul 2007 16:14:19 +0000 (16:14 +0000)]
in hClose, free the handle buffer by replacing it with an empty one
This helps reduce the memory requirements for a closed but unfinalised
Handle.

16 years agoImplement GHC.Environment.getFullArgs
Ian Lynagh [Tue, 17 Jul 2007 14:19:18 +0000 (14:19 +0000)]
Implement GHC.Environment.getFullArgs
This returns all the arguments, including those normally eaten by the
RTS (+RTS ... -RTS).
This is mainly for ghc-inplace, where we need to pass /all/ the
arguments on to the real ghc. e.g. ioref001(ghci) was failing because
the +RTS -K32m -RTS wasn't getting passed on.

16 years agoDefine stripPrefix; fixes trac #1464
Ian Lynagh [Sat, 14 Jul 2007 23:52:04 +0000 (23:52 +0000)]
Define stripPrefix; fixes trac #1464

16 years agono need to hide Maybe
Malcolm.Wallace@cs.york.ac.uk [Tue, 10 Jul 2007 15:40:58 +0000 (15:40 +0000)]
no need to hide Maybe

16 years agoAdd a more efficient Data.List.foldl' for GHC (from GHC's utils/Util.lhs)
Ian Lynagh [Fri, 6 Jul 2007 20:55:26 +0000 (20:55 +0000)]
Add a more efficient Data.List.foldl' for GHC (from GHC's utils/Util.lhs)

16 years agoRemove include-dirs ../../includes and ../../rts
Ian Lynagh [Thu, 5 Jul 2007 20:53:56 +0000 (20:53 +0000)]
Remove include-dirs ../../includes and ../../rts
We get these by virtue of depending on the rts package.

16 years agoFIX #1131 (newArray_ allocates an array full of garbage)
Simon Marlow [Wed, 4 Jul 2007 10:20:20 +0000 (10:20 +0000)]
FIX #1131 (newArray_ allocates an array full of garbage)
Now newArray_ returns a deterministic result in the ST monad, and
behaves as before in other contexts.  The current newArray_ is renamed
to unsafeNewArray_; the MArray class therefore has one more method
than before.

16 years agochange nhc98 option from -prelude to --prelude
Malcolm.Wallace@cs.york.ac.uk [Mon, 2 Jul 2007 15:03:55 +0000 (15:03 +0000)]
change nhc98 option from -prelude to --prelude

16 years agoWord is a type synonym in nhc98 - so class instance not permitted.
Malcolm.Wallace@cs.york.ac.uk [Fri, 29 Jun 2007 12:20:35 +0000 (12:20 +0000)]
Word is a type synonym in nhc98 - so class instance not permitted.

16 years agofix bug in writes to blocking FDs in the non-threaded RTS
Simon Marlow [Thu, 28 Jun 2007 13:43:20 +0000 (13:43 +0000)]
fix bug in writes to blocking FDs in the non-threaded RTS

16 years agoModernize printf.
lennart.augustsson@credit-suisse.com [Thu, 28 Jun 2007 08:38:52 +0000 (08:38 +0000)]
Modernize printf.

Add instances for Int8, Int16, Int32, Int64, Word, Word8, Word16, Word32, and
Word64.
Handle + flag.
Handle X, E, and G formatting characters.
Rewrite internals to make it simpler.

16 years agoSpeed up number printing and remove the need for Array by using the standard 'intToDi...
John Meacham [Fri, 8 Jun 2007 18:23:53 +0000 (18:23 +0000)]
Speed up number printing and remove the need for Array by using the standard 'intToDigit' routine

16 years agoUse "-- //" (2 spaces) rather than "-- //" (1) to avoid tripping haddock up
Ian Lynagh [Wed, 27 Jun 2007 01:09:30 +0000 (01:09 +0000)]
Use "--  //" (2 spaces) rather than "-- //" (1) to avoid tripping haddock up
Are we nearly there yet?

16 years agoUse a combination of Haskell/C comments to ensure robustness.
Malcolm.Wallace@cs.york.ac.uk [Tue, 26 Jun 2007 09:52:22 +0000 (09:52 +0000)]
Use a combination of Haskell/C comments to ensure robustness.
e.g. -- // ensures that _no_ preprocessor will try to tokenise the
rest of the line.

16 years agoChange C-style comments to Haskell-style.
Malcolm.Wallace@cs.york.ac.uk [Mon, 25 Jun 2007 09:45:15 +0000 (09:45 +0000)]
Change C-style comments to Haskell-style.
These two headers are only ever used for pre-processing Haskell code,
and are never seen by any C tools except cpp.  Using the Haskell comment
convention means that cpphs no longer needs to be given the --strip
option to remove C comments from open code.  This is a Good Thing,
because all of /* */ and // are valid Haskell operator names, and there
is no compelling reason to forbid using them in files which also happen
to have C-preprocessor directives.

16 years agomakefileHook needs to generate PrimopWrappers.hs too
Simon Marlow [Fri, 22 Jun 2007 07:34:24 +0000 (07:34 +0000)]
makefileHook needs to generate PrimopWrappers.hs too

16 years agoHugs now gets MonadFix(mfix) from its prelude
Ross Paterson [Wed, 20 Jun 2007 00:03:43 +0000 (00:03 +0000)]
Hugs now gets MonadFix(mfix) from its prelude

16 years agoTypo (consUtils.hs -> consUtils.h)
Ian Lynagh [Tue, 19 Jun 2007 12:41:40 +0000 (12:41 +0000)]
Typo (consUtils.hs -> consUtils.h)

16 years agoinstall dependent include files and Typeable.h
Bertram Felgenhauer [Wed, 13 Jun 2007 04:17:34 +0000 (04:17 +0000)]
install dependent include files and Typeable.h