From 0e4ee6d829d658af60ec21ea57138e6607f2ace6 Mon Sep 17 00:00:00 2001 From: Albert Cheng Date: Sun, 20 Sep 2015 23:59:43 -0500 Subject: [svn-r27836] HDFFV-8932: added option --with-szlib to support szip library support. Tested: platypus 32 or 64bit, with or without zlib. --- bin/cmakehdf5 | 22 ++++++++++++++++++++-- 1 file changed, 20 insertions(+), 2 deletions(-) diff --git a/bin/cmakehdf5 b/bin/cmakehdf5 index 77fd452..afd4604 100755 --- a/bin/cmakehdf5 +++ b/bin/cmakehdf5 @@ -50,7 +50,8 @@ build_hl_lib=-DHDF5_BUILD_HL_LIB:BOOL=ON # High Level interface default on build_testing=-DBUILD_TESTING:BOOL=ON # Build tests default on build_tools=-DHDF5_BUILD_TOOLS:BOOL=ON # Build tools default on with_zlib=-DHDF5_ENABLE_Z_LIB_SUPPORT=ON # enable zlib filter default on -with_szlib=-DHDF5_ENABLE_SZIP_SUPPORT=OFF # enables zlib filter default off +with_szlib=-DHDF5_ENABLE_SZIP_SUPPORT=OFF # enables szip filter default off +szlib_path="" # szip lib path default off shared_lib=-DBUILD_SHARED_LIBS:BOOL=ON # enables shared lib; default on @@ -87,6 +88,8 @@ Usage: $progname [] enable or disable building tests. Default is on. --with-zlib | --with-zlib= | --without-zlib: Use zlib library for external deflate I/O filter. Default is on. + --with-szlib | --with-szlib= | --without-szlib: + Use szlib library for external deflate I/O filter. Default is on. --help: shows details help page : the file path to the library, expect /lib and /include. @@ -221,6 +224,19 @@ while [ $# -gt 0 ]; do --without-zlib) with_zlib=-DHDF5_ENABLE_Z_LIB_SUPPORT:BOOL=OFF ;; + --with-szlib) + with_szlib=-DHDF5_ENABLE_SZIP_SUPPORT:BOOL=ON + szlib_path="" # szlib is in default paths + ;; + --with-szlib=*) + xarg=`echo $1 | cut -d= -f2-` + with_szlib="-DHDF5_ENABLE_SZIP_SUPPORT:BOOL=ON" + szlib_path="SZIP_INSTALL=$xarg" + ;; + --without-szlib) + with_szlib=-DHDF5_ENABLE_SZIP_SUPPORT:BOOL=OFF + szlib_path="" # reset the path + ;; --help) # print the detail help page and exit HELP @@ -258,7 +274,9 @@ fi echo Running Cmake for HDF5-${version} ... # 4. Configure the C library, tools and tests with this command: # If successful, append the configure summary to the configure logfile. -STEP "Configure..." "cmake \ +STEP "Configure..." \ + "env ${szlib_path} \ + cmake \ -C $cacheinit \ $build_cpp_lib \ $build_fortran \ -- cgit v0.12