diff options
author | Brent Yorgey <byorgey@gmail.com> | 2008-01-15 20:48:11 +0100 |
---|---|---|
committer | Brent Yorgey <byorgey@gmail.com> | 2008-01-15 20:48:11 +0100 |
commit | fd3c7b145560eeb959fea0d47495eae757e43b72 (patch) | |
tree | 30e225b1d956b97b433d8ee4c41e109dce7f7a31 | |
parent | c8551aa41646ee8b8f654cc1f4e83390daceaa29 (diff) | |
download | XMonadContrib-fd3c7b145560eeb959fea0d47495eae757e43b72.tar.gz XMonadContrib-fd3c7b145560eeb959fea0d47495eae757e43b72.tar.xz XMonadContrib-fd3c7b145560eeb959fea0d47495eae757e43b72.zip |
Reflect.hs: use -fglasgow-exts for now instead of LANGUAGE pragmas, for compatibility with ghc 6.6
darcs-hash:20080115194811-bd4d7-217e9c6fe19c7faf1f6e4061c9f7b7ee91d81515.gz
-rw-r--r-- | XMonad/Layout/Reflect.hs | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/XMonad/Layout/Reflect.hs b/XMonad/Layout/Reflect.hs index 84ae9a8..8c4ea64 100644 --- a/XMonad/Layout/Reflect.hs +++ b/XMonad/Layout/Reflect.hs @@ -1,4 +1,8 @@ -{-# LANGUAGE FlexibleInstances, MultiParamTypeClasses, DeriveDataTypeable, TypeSynonymInstances #-} +{-# OPTIONS_GHC -fglasgow-exts #-} + +-- for now, use -fglasgow-exts for compatibility with ghc 6.6, which chokes +-- on some of the LANGUAGE pragmas below +{- LANGUAGE FlexibleInstances, MultiParamTypeClasses, DeriveDataTypeable, TypeSynonymInstances -} ----------------------------------------------------------------------------- -- | |