Hello,<br><br>&nbsp;&nbsp;&nbsp;&nbsp; On my personal computer, I added some functionality to the unix package and&nbsp; now I want to test this functionality. Basically I did a cabal install to the global env on my laptop. I just ran a session of ghci:<br>
<br>vigalchin@ubuntu:~$ ghci<br>GHCi, version 6.8.2: <a href="http://www.haskell.org/ghc/">http://www.haskell.org/ghc/</a>&nbsp; :? for help<br>Loading package base ... linking ... done.<br>Prelude&gt; :m System.Posix<br>Prelude System.Posix&gt; :t openFd<br>
openFd :: FilePath -&gt; OpenMode -&gt; Maybe FileMode -&gt; OpenFileFlags -&gt; IO Fd<br>Prelude System.Posix&gt; :t mqOpen<br><br>&lt;interactive&gt;:1:0: Not in scope: `mqOpen&#39;<br><br>There is a signature for openFd (existing functionality) but not mqOpen (new functionality!)&nbsp; The new functionality got some warnings vis-a-vis Storage because I have defined &quot;alignment&quot; and something else yet. However, when I did &quot;runhaskell Setup.hs install&quot; everything seemed to get installed. ???<br>
<br><br>Thanks, B. <br>