This is an automated email from the ASF dual-hosted git repository.

alexey pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/kudu.git


The following commit(s) were added to refs/heads/master by this push:
     new 791502b  [thirdparty] upgrade LZ4 to 1.9.3
791502b is described below

commit 791502b821f55f510a8d98170fcd4e1dba4d123a
Author: Alexey Serbin <ale...@apache.org>
AuthorDate: Mon Jan 24 20:49:46 2022 -0800

    [thirdparty] upgrade LZ4 to 1.9.3
    
    LZ4 v1.9.3 claims to improve performance and also contains numerous
    fixes since v1.9.2, so let's uprade. LZ4 v1.9.2 --> v1.9.3 upgrade
    is claimed to be a drop-in replacement for 1.9.2 since existing libz4
    API is not modified [1].
    
    [1] https://github.com/lz4/lz4/releases/tag/v1.9.3
    
    Change-Id: I260a01d35809304f9d139890b22349b1348ef920
    Reviewed-on: http://gerrit.cloudera.org:8080/18170
    Tested-by: Alexey Serbin <aser...@cloudera.com>
    Reviewed-by: Andrew Wong <aw...@cloudera.com>
---
 thirdparty/build-definitions.sh | 4 ++--
 thirdparty/vars.sh              | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/thirdparty/build-definitions.sh b/thirdparty/build-definitions.sh
index fce6327..f4f22a7 100644
--- a/thirdparty/build-definitions.sh
+++ b/thirdparty/build-definitions.sh
@@ -579,7 +579,7 @@ build_lz4() {
     -DBUILD_STATIC_LIBS=On \
     -DCMAKE_INSTALL_PREFIX:PATH=$PREFIX \
     $EXTRA_CMAKE_FLAGS \
-    $LZ4_SOURCE/contrib/cmake_unofficial
+    $LZ4_SOURCE/build/cmake
   ${NINJA:-make} -j$PARALLEL $EXTRA_MAKEFLAGS install
   popd
 }
@@ -1124,4 +1124,4 @@ build_oatpp_swagger(){
     $OATPP_SWAGGER_SOURCE
   make -j$PARALLEL install
   popd
-}
\ No newline at end of file
+}
diff --git a/thirdparty/vars.sh b/thirdparty/vars.sh
index 6070018..6aaa73c 100644
--- a/thirdparty/vars.sh
+++ b/thirdparty/vars.sh
@@ -68,7 +68,7 @@ SNAPPY_VERSION=1.1.8
 SNAPPY_NAME=snappy-$SNAPPY_VERSION
 SNAPPY_SOURCE=$TP_SOURCE_DIR/$SNAPPY_NAME
 
-LZ4_VERSION=1.9.2
+LZ4_VERSION=1.9.3
 LZ4_NAME=lz4-$LZ4_VERSION
 LZ4_SOURCE=$TP_SOURCE_DIR/$LZ4_NAME
 
@@ -265,4 +265,4 @@ OATPP_SOURCE=$TP_SOURCE_DIR/$OATPP_NAME
 
 OATPP_SWAGGER_VERSION=1.2.5
 OATPP_SWAGGER_NAME=oatpp-swagger-$OATPP_SWAGGER_VERSION
-OATPP_SWAGGER_SOURCE=$TP_SOURCE_DIR/$OATPP_SWAGGER_NAME
\ No newline at end of file
+OATPP_SWAGGER_SOURCE=$TP_SOURCE_DIR/$OATPP_SWAGGER_NAME

Reply via email to