Re: Network.CGI missing in Hugs
Sven Panne <[email protected]> Fri, 5 Jan 2007 15:51:31 +0100
| Newsgroups | gmane.comp.lang.haskell.hugs.user |
|---|---|
| Message-ID | <[email protected]> |
Am Mittwoch, 3. Januar 2007 22:59 schrieb Lihn, Steve: > > Not possible, unfortunately: the cgi package won't work with Hugs > > because Hugs lacks one of the functions it uses. > > This sounds pretty bad. Couldn't even do some CGI programming with > Hugs... > How much does it take to make the cgi package compatible with Hugs? I've tested the new cgi package a few days ago and IIRC there were basically two problems: * Hugs doesn't support System.Environment.getEnvironment yet, but I guess that this could easily be fixed. * Some instances in Network.CGI.Monad overlap, which is not supported in Hugs. I don't know if the overlap is crucial and what the rationale behind this is. Perhaps I've missed some discussions on the libraries list. Perhaps we can simply #ifdef/remove the overlap. Ross? Cheers, S.