summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'dev-lang/ghc/files/ghc-6.4.1-openal.patch')
-rw-r--r--dev-lang/ghc/files/ghc-6.4.1-openal.patch29
1 files changed, 0 insertions, 29 deletions
diff --git a/dev-lang/ghc/files/ghc-6.4.1-openal.patch b/dev-lang/ghc/files/ghc-6.4.1-openal.patch
deleted file mode 100644
index 44a71d336ede..000000000000
--- a/dev-lang/ghc/files/ghc-6.4.1-openal.patch
+++ /dev/null
@@ -1,29 +0,0 @@
-diff -urwpN ghc-6.4.1-orig/libraries/OpenAL/Sound/OpenAL/ALC/Context.hs ghc-6.4.1/libraries/OpenAL/Sound/OpenAL/ALC/Context.hs
---- ghc-6.4.1-orig/libraries/OpenAL/Sound/OpenAL/ALC/Context.hs 2006-02-11 22:28:57.000000000 +0100
-+++ ghc-6.4.1/libraries/OpenAL/Sound/OpenAL/ALC/Context.hs 2006-02-11 22:31:39.000000000 +0100
-@@ -66,10 +66,10 @@ foreign import CALLCONV unsafe "alcCreat
- -- | Destroys the given context.
-
- destroyContext :: Context -> IO ()
--destroyContext = ignore . alcDestroyContext
-+destroyContext = alcDestroyContext
-
- foreign import CALLCONV unsafe "alcDestroyContext"
-- alcDestroyContext :: Context -> IO ALCenum
-+ alcDestroyContext :: Context -> IO ()
-
- --------------------------------------------------------------------------------
-
-@@ -102,10 +102,10 @@ foreign import CALLCONV unsafe "alcMakeC
- -- | Performs processing on a synced context, nop on an asynchronous context.
-
- processContext :: Context -> IO ()
--processContext = ignore . alcProcessContext
-+processContext = alcProcessContext
-
- foreign import CALLCONV unsafe "alcProcessContext"
-- alcProcessContext :: Context -> IO Context
-+ alcProcessContext :: Context -> IO ()
-
- -- | Suspends processing on an asynchronous context. This is a legal nop on a
- -- synced context.