quixdb / squash

Compression abstraction library and utilities
https://quixdb.github.io/squash/
MIT License
407 stars 53 forks source link

plugin/lz4: Remove use of deprecated items #220

Closed n3world closed 7 years ago

n3world commented 7 years ago

lz4 1.7.0 deprecated a handful of the compression functions and all of the lz4f configuration enums. Update all usages to the new function names or enums and add macros that convert the new name to the old name when compiling against older versions. Remove squash_lz4_compress_buffer_unsafe since all of the functions used were deprecated and the replacements are the functions used by squash_lz4_compress_buffer.

nemequ commented 7 years ago

Awesome, thanks!