diff --git a/LICENSE b/LICENSE
--- a/LICENSE
+++ b/LICENSE
@@ -8,7 +8,7 @@
 
 === unix-bytestring license ===
 
-Copyright (c) 2010, 2011, 2012, wren ng thornton.
+Copyright (c) 2010--2013, wren ng thornton.
 ALL RIGHTS RESERVED.
 
 Redistribution and use in source and binary forms, with or without
diff --git a/README b/README
--- a/README
+++ b/README
@@ -14,7 +14,11 @@
     $> runhaskell Setup.hs build
     $> runhaskell Setup.hs test
     $> runhaskell Setup.hs haddock --hyperlink-source
-    $> runhaskell Setup.hs install
+    $> runhaskell Setup.hs copy
+    $> runhaskell Setup.hs register
+
+The test step is optional and currently does nothing. The Haddock
+step is also optional.
 
 
 FFI Problems
diff --git a/VERSION b/VERSION
--- a/VERSION
+++ b/VERSION
@@ -1,3 +1,5 @@
+0.3.6 (2013-05-29):
+	- System.Posix.Types.Iovec: adjusted unsafeForeignPtrToPtr for GHC 7.8
 0.3.5.4 (2012-08-23):
 	- System.Posix.IO.ByteString: adjusted some imports for GHC 7.6
 	- Removed the custom Setup.hs, for compatibility with GHC 7.6
diff --git a/src/System/Posix/IO/ByteString/Lazy.hs b/src/System/Posix/IO/ByteString/Lazy.hs
--- a/src/System/Posix/IO/ByteString/Lazy.hs
+++ b/src/System/Posix/IO/ByteString/Lazy.hs
@@ -1,4 +1,5 @@
 {-# OPTIONS_GHC -Wall -fwarn-tabs #-}
+-- TODO: cf <http://hpaste.org/76873>
 ----------------------------------------------------------------
 --                                                    2011.03.17
 -- |
diff --git a/src/System/Posix/Types/Iovec.hsc b/src/System/Posix/Types/Iovec.hsc
--- a/src/System/Posix/Types/Iovec.hsc
+++ b/src/System/Posix/Types/Iovec.hsc
@@ -7,10 +7,10 @@
 {-# LANGUAGE ForeignFunctionInterface #-}
 {-# OPTIONS_GHC -Wall -fwarn-tabs -fno-warn-unused-imports #-}
 ----------------------------------------------------------------
---                                                    2011.03.17
+--                                                    2013.05.29
 -- |
 -- Module      :  System.Posix.Types.Iovec
--- Copyright   :  Copyright (c) 2010--2012 wren ng thornton
+-- Copyright   :  Copyright (c) 2010--2013 wren ng thornton
 -- License     :  BSD
 -- Maintainer  :  wren@community.haskell.org
 -- Stability   :  experimental
@@ -35,6 +35,10 @@
 import           Foreign.Ptr              (Ptr)
 import qualified Foreign.Ptr              as FFI (castPtr, plusPtr)
 import qualified Foreign.ForeignPtr       as FFP
+import qualified GHC.ForeignPtr           as GHC_FFP
+-- #if ???
+-- import qualified Foreign.ForeignPtr.Unsafe as FFP (unsafeForeignPtrToPtr)
+-- #endif
 import           Foreign.C.Types          (CSize)
 import           Foreign.Storable         (Storable(..))
 
@@ -98,7 +102,7 @@
 unsafeByteString2CIovec :: BS.ByteString -> CIovec
 unsafeByteString2CIovec (BSI.PS fptr offset len) =
     CIovec
-        (FFP.unsafeForeignPtrToPtr fptr `FFI.plusPtr` offset)
+        (GHC_FFP.unsafeForeignPtrToPtr fptr `FFI.plusPtr` offset)
         (fromIntegral len)
 {-# INLINE unsafeByteString2CIovec #-}
 
diff --git a/unix-bytestring.cabal b/unix-bytestring.cabal
--- a/unix-bytestring.cabal
+++ b/unix-bytestring.cabal
@@ -1,5 +1,5 @@
 ----------------------------------------------------------------
--- wren ng thornton <wren@community.haskell.org>    ~ 2012.08.23
+-- wren ng thornton <wren@community.haskell.org>    ~ 2013.05.29
 ----------------------------------------------------------------
 
 -- By and large Cabal >=1.2 is fine; but >= 1.6 gives tested-with:
@@ -8,12 +8,12 @@
 Build-Type:     Simple
 
 Name:           unix-bytestring
-Version:        0.3.5.4
+Version:        0.3.6
 Stability:      experimental
 Homepage:       http://code.haskell.org/~wren/
 Author:         wren ng thornton
 Maintainer:     wren@community.haskell.org
-Copyright:      Copyright (c) 2010--2012 wren ng thornton
+Copyright:      Copyright (c) 2010--2013 wren ng thornton
 License:        BSD3
 License-File:   LICENSE
 
@@ -33,7 +33,7 @@
     an @Fd@, so we're not offering a complete replacement.
 
 Tested-With:
-    GHC == 6.12.1, GHC == 6.12.3
+    GHC == 6.12.1, GHC == 6.12.3, GHC == 7.6.1
 Extra-source-files:
     README, VERSION
 Source-Repository head
