packages feed

memory 0.5 → 0.6

raw patch · 3 files changed

+9/−1 lines, 3 files

Files

CHANGELOG.md view
@@ -1,3 +1,8 @@+## 0.6++* fix compilation on architecture where endianness is not a compile time define related+  to their cabal arch().+ ## 0.5  * Add Base32 support (Nicolas Di Prima)
Data/Memory/Endian.hs view
@@ -19,7 +19,10 @@ import Data.Word (Word16, Word32, Word64) import Foreign.Storable #if !defined(ARCH_IS_LITTLE_ENDIAN) && !defined(ARCH_IS_BIG_ENDIAN)+import Data.Word (Word8) import Data.Memory.Internal.Compat (unsafeDoIO)+import Foreign.Marshal.Alloc+import Foreign.Ptr #endif  import Data.Memory.Internal.Compat (byteSwap64, byteSwap32, byteSwap16)
memory.cabal view
@@ -1,5 +1,5 @@ Name:                memory-Version:             0.5+Version:             0.6 Synopsis:            memory and related abtraction stuff Description:     Chunk of memory, polymorphic byte array management and manipulation