diff options
author | Don Stewart <dons@cse.unsw.edu.au> | 2007-06-05 11:26:59 +0200 |
---|---|---|
committer | Don Stewart <dons@cse.unsw.edu.au> | 2007-06-05 11:26:59 +0200 |
commit | 6642404dc5482f737221de075c0fc9a63cdda91d (patch) | |
tree | feedef94aca98dfe516567023cef1bb4776ee642 | |
parent | 49620498cc61518f3db429b5da7416a06e9b5ff2 (diff) | |
download | metatile-6642404dc5482f737221de075c0fc9a63cdda91d.tar metatile-6642404dc5482f737221de075c0fc9a63cdda91d.zip |
mention why StackSet needs -fglasgow-exts (for deriving Typeable)
darcs-hash:20070605092659-9c5c1-7eee6ed8801aa1c81e62d8dc62fa95035c4a5523
-rw-r--r-- | Operations.hs | 5 | ||||
-rw-r--r-- | xmonad.cabal | 1 |
2 files changed, 4 insertions, 2 deletions
diff --git a/Operations.hs b/Operations.hs index cb17ec0..5ed65e8 100644 --- a/Operations.hs +++ b/Operations.hs @@ -1,5 +1,6 @@ {-# OPTIONS -fglasgow-exts #-} ------------------------------------------------------------------------------ +-- ^^ deriving Typeable +-- -------------------------------------------------------------------------- -- | -- Module : Operations.hs -- Copyright : (c) Spencer Janssen 2007 @@ -7,7 +8,7 @@ -- -- Maintainer : dons@cse.unsw.edu.au -- Stability : unstable --- Portability : not portable, mtl, posix +-- Portability : not portable, Typeable deriving, mtl, posix -- ----------------------------------------------------------------------------- diff --git a/xmonad.cabal b/xmonad.cabal index a053250..5677c3f 100644 --- a/xmonad.cabal +++ b/xmonad.cabal @@ -28,3 +28,4 @@ other-modules: Config Operations StackSet XMonad ghc-options: -funbox-strict-fields -O2 -fasm -Wall -optl-Wl,-s ghc-prof-options: -prof -auto-all extensions: GeneralizedNewtypeDeriving +-- Also requires deriving Typeable |