diff -uNr QuickCheck-2.1.0.3/QuickCheck.cabal QuickCheck-2.1.0.3-new/QuickCheck.cabal
|
old
|
new
|
|
| 39 | 39 | Build-depends: base >= 3 && < 4, random |
| 40 | 40 | else |
| 41 | 41 | Build-depends: base < 3 |
| 42 | | if impl(ghc >= 6.7) |
| 43 | | Build-depends: ghc |
| 44 | 42 | if impl(ghc >= 6.9) |
| 45 | 43 | Build-depends: extensible-exceptions |
| 46 | 44 | Exposed-Modules: |
diff -uNr QuickCheck-2.1.0.3/Test/QuickCheck/Exception.hs QuickCheck-2.1.0.3-new/Test/QuickCheck/Exception.hs
|
old
|
new
|
|
| 5 | 5 | #define OLD_EXCEPTIONS |
| 6 | 6 | #endif |
| 7 | 7 | |
| 8 | | #if defined(__GLASGOW_HASKELL__) && __GLASGOW_HASKELL__ >= 607 |
| 9 | | #define GHC_INTERRUPT |
| 10 | | #endif |
| 11 | | |
| 12 | 8 | #if defined OLD_EXCEPTIONS |
| 13 | 9 | import Control.Exception(evaluate, try, Exception(..)) |
| 14 | 10 | #else |