File tree Expand file tree Collapse file tree 5 files changed +12
-139
lines changed Expand file tree Collapse file tree 5 files changed +12
-139
lines changed Original file line number Diff line number Diff line change @@ -1125,7 +1125,7 @@ endmacro(set_std_filter)
1125
1125
1126
1126
# Locate some compressors
1127
1127
FIND_PACKAGE (Szip)
1128
- FIND_PACKAGE (Bz2 )
1128
+ FIND_PACKAGE (BZip2 )
1129
1129
FIND_PACKAGE (Blosc)
1130
1130
FIND_PACKAGE (Zstd)
1131
1131
@@ -1135,14 +1135,14 @@ set_std_filter(Szip)
1135
1135
SET (HAVE_SZ ${Szip_FOUND} )
1136
1136
set_std_filter(Blosc)
1137
1137
set_std_filter(Zstd)
1138
- IF (Bz2_FOUND )
1139
- set_std_filter(Bz2 )
1138
+ IF (BZIP2_FOUND )
1139
+ set_std_filter(BZIP2 )
1140
1140
ELSE ()
1141
1141
# The reason we use a local version is to support a more comples test case
1142
1142
MESSAGE ("libbz2 not found using built-in version" )
1143
- SET (HAVE_LOCAL_BZ2 ON )
1144
- SET (HAVE_BZ2 ON )
1145
- set (STD_FILTERS "${STD_FILTERS} bz2 " )
1143
+ SET (HAVE_LOCAL_BZIP2 ON )
1144
+ SET (HAVE_BZIP2 ON )
1145
+ set (STD_FILTERS "${STD_FILTERS} bzip2 " )
1146
1146
ENDIF ()
1147
1147
1148
1148
# If user wants, then install selected plugins (default on)
@@ -2562,7 +2562,8 @@ is_enabled(HAVE_SZ HAS_SZIP)
2562
2562
is_enabled(HAVE_SZ HAS_SZLIB_WRITE)
2563
2563
is_enabled(HAVE_ZSTD HAS_ZSTD)
2564
2564
is_enabled(HAVE_BLOSC HAS_BLOSC)
2565
- is_enabled(HAVE_BZ2 HAS_BZ2)
2565
+ is_enabled(HAVE_BZIP2 HAS_BZIP2)
2566
+ is_enabled(HAVE_BZIP2 HAS_BZ2)
2566
2567
is_enabled(ENABLE_REMOTE_FUNCTIONALITY DO_REMOTE_FUNCTIONALITY)
2567
2568
2568
2569
if (ENABLE_S3_INTERNAL)
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -91,8 +91,8 @@ ENDIF()
91
91
IF (Zstd_FOUND)
92
92
SET (TLL_LIBS ${TLL_LIBS} ${Zstd_LIBRARIES} )
93
93
ENDIF ()
94
- IF (Bz2_FOUND )
95
- SET (TLL_LIBS ${TLL_LIBS} ${Bz2_LIBRARIES } )
94
+ IF (BZIP2_FOUND )
95
+ SET (TLL_LIBS ${TLL_LIBS} ${BZIP2_LIBRARIES } )
96
96
ENDIF ()
97
97
IF (SZIP_FOUND)
98
98
SET (TLL_LIBS ${TLL_LIBS} ${SZIP_LIBRARIES} )
Original file line number Diff line number Diff line change @@ -94,12 +94,12 @@ IF(HAVE_SZ)
94
94
buildplugin(h5szip "h5szip" ${Szip_LIBRARIES} )
95
95
ENDIF ()
96
96
97
- IF (HAVE_LOCAL_BZ2 )
97
+ IF (HAVE_LOCAL_BZIP2 )
98
98
SET (h5bzip2_SOURCES H5Zbzip2.c blocksort.c huffman.c crctable.c randtable.c compress.c decompress.c bzlib.c bzlib.h bzlib_private.h)
99
99
buildplugin(h5bzip2 "h5bzip2" )
100
100
ELSE ()
101
101
SET (h5bzip2_SOURCES H5Zbzip2.c)
102
- buildplugin(h5bzip2 "h5bzip2" ${Bzip2_LIBRARIES } )
102
+ buildplugin(h5bzip2 "h5bzip2" ${BZIP2_LIBRARIES } )
103
103
ENDIF ()
104
104
105
105
You can’t perform that action at this time.
0 commit comments