diff options
author | Alberto Ruiz <aruiz@um.es> | 2007-11-14 18:44:25 +0000 |
---|---|---|
committer | Alberto Ruiz <aruiz@um.es> | 2007-11-14 18:44:25 +0000 |
commit | 2f45fdd97f80c0ffd0e10cce68d1cd24a43696c0 (patch) | |
tree | 3943a7e98e147f3ce1344c2fdb73c1d727997b15 | |
parent | 119709739fd76d3995b571397cb9a1d8cbbb40ac (diff) |
minor changes
-rw-r--r-- | README | 4 | ||||
-rw-r--r-- | hssl.cabal | 13 |
2 files changed, 8 insertions, 9 deletions
@@ -19,9 +19,7 @@ For example, in Ubuntu Linux we need: | |||
19 | - atlas3-base-dev | 19 | - atlas3-base-dev |
20 | 20 | ||
21 | You can also install an atlas version specifically tuned | 21 | You can also install an atlas version specifically tuned |
22 | for your machine (e.g., atlas3-sse2-dev, atlas3-3dnow-dev, etc.). | 22 | for your machine (but see the TESTS section below). |
23 | However, do not install atlas3-sse2-dev on ubuntu 6.06 Dapper | ||
24 | (see the TESTS section below). | ||
25 | 23 | ||
26 | The following packages are used for simple graphics: | 24 | The following packages are used for simple graphics: |
27 | 25 | ||
@@ -18,17 +18,18 @@ tested-with: GHC ==6.6.1, GHC ==6.8.1 | |||
18 | cabal-version: >=1.2 | 18 | cabal-version: >=1.2 |
19 | 19 | ||
20 | flag splitBase | 20 | flag splitBase |
21 | description: Choose the new smaller, split-up base package. | 21 | description: Choose the new smaller, split-up base package. |
22 | 22 | ||
23 | library | 23 | library |
24 | if flag(splitBase) | 24 | if flag(splitBase) |
25 | build-depends: base >= 3, array | 25 | build-depends: base >= 3, array |
26 | ghc-options: -O -fvia-C | 26 | ghc-options: -O -fvia-C |
27 | |||
27 | else | 28 | else |
28 | build-depends: base < 3 | 29 | build-depends: base < 3 |
29 | ghc-options: -O | 30 | ghc-options: -O |
30 | 31 | ||
31 | Build-Depends: base, haskell98 | 32 | Build-Depends: haskell98 |
32 | Extensions: ForeignFunctionInterface | 33 | Extensions: ForeignFunctionInterface |
33 | 34 | ||
34 | hs-source-dirs: lib | 35 | hs-source-dirs: lib |