summary refs log tree commit diff
path: root/pkgs/games/hedgewars
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/games/hedgewars')
-rw-r--r--pkgs/games/hedgewars/fix-ghc-7.8-build-failure.diff16
1 files changed, 0 insertions, 16 deletions
diff --git a/pkgs/games/hedgewars/fix-ghc-7.8-build-failure.diff b/pkgs/games/hedgewars/fix-ghc-7.8-build-failure.diff
deleted file mode 100644
index 7974c6797fc..00000000000
--- a/pkgs/games/hedgewars/fix-ghc-7.8-build-failure.diff
+++ /dev/null
@@ -1,16 +0,0 @@
-## fix-ghc-7.8-build-failure.diff [diff]
-diff --git a/gameServer/Actions.hs b/gameServer/Actions.hs
-index 2cebe4f..355ee26 100644
---- a/gameServer/Actions.hs
-+++ b/gameServer/Actions.hs
-@@ -562,7 +562,7 @@ processAction (AddClient cl) = do
-     si <- gets serverInfo
-     newClId <- io $ do
-         ci <- addClient rnc cl
--        _ <- Exception.mask (forkIO . clientRecvLoop (clientSocket cl) (coreChan si) (sendChan cl) ci)
-+        _ <- Exception.mask (\x -> forkIO $ clientRecvLoop (clientSocket cl) (coreChan si) (sendChan cl) ci x)
- 
-         infoM "Clients" (show ci ++ ": New client. Time: " ++ show (connectTime cl))
- 
-
-