Re: [Haskell] cannot compile ghc on Debian unstable

2005-08-27 Thread Michael Vanier
> From: Michael Vanier <[EMAIL PROTECTED]> > Date: Sat, 27 Aug 2005 22:06:40 -0700 (PDT) > > > Right now, the Debian unstable package for GHC 6.4 won't install due to > some conflict with libgmp3 (the package maintainer has been notified). I > tried to compile the sources from scratch but found

[Haskell] cannot compile ghc on Debian unstable

2005-08-27 Thread Michael Vanier
Right now, the Debian unstable package for GHC 6.4 won't install due to some conflict with libgmp3 (the package maintainer has been notified). I tried to compile the sources from scratch but found out that GHC requires a previously-existing version of itself to compile. I have hugs working fine,

Re: [Haskell] Parsing binary data

2005-08-27 Thread Donald Bruce Stewart
joelr1: > Folks, > > I'm trying to parse chunks of binary data that arrive through a > socket. There's a defined format of these chunks where the first 4 > bytes are an id, then could come a Pascal (size first) string, then > some more data. > > I'm trying to figure out how to read and writ

Re: [Haskell] Parsing binary data

2005-08-27 Thread Alistair Bayley
> I'm trying to parse chunks of binary data that arrive through a > socket. There's a defined format of these chunks where the first 4 > bytes are an id, then could come a Pascal (size first) string, then > some more data. > > I'm trying to figure out how to read and write Haskell data in this > f

[Haskell] Parsing binary data

2005-08-27 Thread Joel Reymont
Folks, I'm trying to parse chunks of binary data that arrive through a socket. There's a defined format of these chunks where the first 4 bytes are an id, then could come a Pascal (size first) string, then some more data. I'm trying to figure out how to read and write Haskell data in this