fixed : pkg version

This commit is contained in:
Yann Collet 2014-12-09 09:47:54 +01:00
parent c5decf7562
commit fc4a6153b0
3 changed files with 4 additions and 2 deletions

View File

@ -31,7 +31,7 @@
# ################################################################ # ################################################################
# Version numbers # Version numbers
VERSION=125 export VERSION=125
export RELEASE=r$(VERSION) export RELEASE=r$(VERSION)
DESTDIR?= DESTDIR?=

1
NEWS
View File

@ -2,6 +2,7 @@ r125:
Changed : endian and alignment code Changed : endian and alignment code
Changed : directory structure : new "lib" directory Changed : directory structure : new "lib" directory
Updated : lz4io, now uses lz4frame Updated : lz4io, now uses lz4frame
Improved: slightly improved decoding speed
Fixed : some alignment warnings under clang Fixed : some alignment warnings under clang
Fixed : deprecated function LZ4_slideInputBufferHC() Fixed : deprecated function LZ4_slideInputBufferHC()

View File

@ -32,7 +32,8 @@
# ################################################################ # ################################################################
# Version numbers # Version numbers
RELEASE=r125 VERSION=125
RELEASE=r$(VERSION)
LIBVER_MAJOR=`sed -n '/define LZ4_VERSION_MAJOR/s/.*[[:blank:]]\([0-9][0-9]*\).*/\1/p' < lz4.h` LIBVER_MAJOR=`sed -n '/define LZ4_VERSION_MAJOR/s/.*[[:blank:]]\([0-9][0-9]*\).*/\1/p' < lz4.h`
LIBVER_MINOR=`sed -n '/define LZ4_VERSION_MINOR/s/.*[[:blank:]]\([0-9][0-9]*\).*/\1/p' < lz4.h` LIBVER_MINOR=`sed -n '/define LZ4_VERSION_MINOR/s/.*[[:blank:]]\([0-9][0-9]*\).*/\1/p' < lz4.h`
LIBVER_PATCH=`sed -n '/define LZ4_VERSION_RELEASE/s/.*[[:blank:]]\([0-9][0-9]*\).*/\1/p' < lz4.h` LIBVER_PATCH=`sed -n '/define LZ4_VERSION_RELEASE/s/.*[[:blank:]]\([0-9][0-9]*\).*/\1/p' < lz4.h`