Skip to content

Commit

Permalink
Works with devel-server again
Browse files Browse the repository at this point in the history
  • Loading branch information
snoyberg committed Oct 16, 2010
1 parent 6bf9c54 commit 154dbcd
Show file tree
Hide file tree
Showing 10 changed files with 12 additions and 3 deletions.
1 change: 1 addition & 0 deletions Handler/Admin.hs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{-# LANGUAGE QuasiQuotes, OverloadedStrings, TemplateHaskell #-}
{-# LANGUAGE CPP #-}
module Handler.Admin
( postAdminR
, postUnadminR
Expand Down
1 change: 1 addition & 0 deletions Handler/Email.hs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{-# LANGUAGE TemplateHaskell, OverloadedStrings, QuasiQuotes #-}
{-# LANGUAGE CPP #-}
module Handler.Email
( postResetEmailR
, postSendVerifyR
Expand Down
3 changes: 2 additions & 1 deletion Handler/News.hs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{-# LANGUAGE TemplateHaskell, OverloadedStrings #-}
{-# LANGUAGE TemplateHaskell, OverloadedStrings, QuasiQuotes #-}
{-# LANGUAGE CPP #-}
module Handler.News
( getNewsR
, postNewsR
Expand Down
1 change: 1 addition & 0 deletions Handler/Package.hs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{-# LANGUAGE QuasiQuotes, OverloadedStrings, TemplateHaskell #-}
{-# LANGUAGE CPP #-}
module Handler.Package
( postDeletePackageR
, postPackagesR
Expand Down
1 change: 1 addition & 0 deletions Handler/Profile.hs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{-# LANGUAGE QuasiQuotes, OverloadedStrings, TemplateHaskell #-}
{-# LANGUAGE CPP #-}
module Handler.Profile
( getProfileR
, postProfileR
Expand Down
1 change: 1 addition & 0 deletions Handler/Root.hs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{-# LANGUAGE TemplateHaskell, OverloadedStrings #-}
{-# LANGUAGE CPP #-}
module Handler.Root
( getRootR
, getUsersR
Expand Down
1 change: 1 addition & 0 deletions Handler/Skills.hs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{-# LANGUAGE TemplateHaskell, OverloadedStrings, QuasiQuotes #-}
{-# LANGUAGE CPP #-}
module Handler.Skills
( postAllSkillsR
, getAllSkillsR
Expand Down
1 change: 1 addition & 0 deletions Handler/User.hs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{-# LANGUAGE QuasiQuotes, TemplateHaskell #-}
{-# LANGUAGE CPP #-}
module Handler.User
( getUserR
, getByIdentR
Expand Down
1 change: 1 addition & 0 deletions Haskellers.hs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{-# LANGUAGE QuasiQuotes, TemplateHaskell, TypeFamilies #-}
{-# LANGUAGE CPP #-}
module Haskellers
( Haskellers (..)
, HaskellersRoute (..)
Expand Down
4 changes: 2 additions & 2 deletions haskellers.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ executable simple-server
neither,
utf8-string
ghc-options: -Wall -Werror
extensions: TemplateHaskell, QuasiQuotes, TypeFamilies, CPP
extensions: TemplateHaskell, QuasiQuotes, TypeFamilies

executable fastcgi
if flag(production)
Expand All @@ -53,4 +53,4 @@ executable fastcgi
main-is: fastcgi.hs
build-depends: wai-handler-fastcgi
ghc-options: -Wall -threaded
extensions: TemplateHaskell, QuasiQuotes, TypeFamilies, CPP
extensions: TemplateHaskell, QuasiQuotes, TypeFamilies

0 comments on commit 154dbcd

Please sign in to comment.