RE: [Haskell] package with ghc and ghci

2004-11-23 Thread Simon Marlow
I'm afraid that hasn't helped. GHC appears to be looking for a package '=DSP', but there's no indication why. Could you give us enough instructions to be able to reproduce the problem here, please? Including: - full source code, or where to get it - complete command lines - platform, GHC

Re: [Haskell] package with ghc and ghci

2004-11-20 Thread Fred Nicolier
Simon Marlow wrote: Please send the output of command (2) with -v added to the command line. Cheers, Simon I have isolated the dependancies of the packages : the work file is now : \begin{code} module Main where import Data.Array import DSP.Filter.FIR.FIR import DSP.Filter.FIR.Sharpen

RE: [Haskell] package with ghc and ghci

2004-11-16 Thread Simon Marlow
[ moved to [EMAIL PROTECTED] ] On 16 November 2004 07:51, Fred Nicolier wrote: I have some packages for doing signal and image processing stuff. Here is a little test program : \begin{code} module Main where import Hips a = listSignal (1,10) [1..10] b = liftSignals (:+) a a c = fft

[Haskell] package with ghc and ghci

2004-11-15 Thread Fred Nicolier
Hello, I have some packages for doing signal and image processing stuff. Here is a little test program : \begin{code} module Main where import Hips a = listSignal (1,10) [1..10] b = liftSignals (:+) a a c = fft b main = do putStrLn $ show a putStrLn $ show b putStrLn $