diff --git a/FModExRaw.cabal b/FModExRaw.cabal
--- a/FModExRaw.cabal
+++ b/FModExRaw.cabal
@@ -10,7 +10,7 @@
 -- PVP summary:      +-+------- breaking API changes
 --                   | | +----- non-breaking API additions
 --                   | | | +--- code changes with no API change
-version:             0.1.0.2
+version:             0.2.0.0
 
 -- A short (one-line) description of the package.
 synopsis:            The Haskell FModEx raw API.
@@ -51,7 +51,10 @@
   if os(linux)
     cpp-options:       -DFMODEX_PLATFORM_LINUX
   -- Extra libraries
-  extra-libraries:   fmodex
+  if arch(x86_64)
+    extra-libraries:   fmodex64
+  else
+    extra-libraries:   fmodex
   -- Modules exported by the library.
   exposed-modules:     Sound.FModEx.Raw
                      , Sound.FModEx.Raw.Codec
@@ -74,7 +77,7 @@
   -- other-modules:       
   
   -- Other library packages from which modules are imported.
-  build-depends:       base ==4.6.*
+  build-depends:       base >= 3 && < 5
   
   -- Extra tools (e.g. alex, hsc2hs, ...) needed to build the source.
   build-tools:         hsc2hs
diff --git a/Sound/FModEx/Raw/Core/Types.hsc b/Sound/FModEx/Raw/Core/Types.hsc
--- a/Sound/FModEx/Raw/Core/Types.hsc
+++ b/Sound/FModEx/Raw/Core/Types.hsc
@@ -305,7 +305,6 @@
  , fmod_INIT_OCCLUSION_LOWPASS         = FMOD_INIT_OCCLUSION_LOWPASS
  , fmod_INIT_HRTF_LOWPASS              = FMOD_INIT_HRTF_LOWPASS
  , fmod_INIT_DISTANCE_FILTERING        = FMOD_INIT_DISTANCE_FILTERING
- , fmod_INIT_SOFTWARE_REVERB_LOWMEM    = FMOD_INIT_SOFTWARE_REVERB_LOWMEM
  , fmod_INIT_ENABLE_PROFILE            = FMOD_INIT_ENABLE_PROFILE
  , fmod_INIT_VOL0_BECOMES_VIRTUAL      = FMOD_INIT_VOL0_BECOMES_VIRTUAL
  , fmod_INIT_WASAPI_EXCLUSIVE          = FMOD_INIT_WASAPI_EXCLUSIVE
