File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -122,7 +122,7 @@ def cmd_msbuild(
122
122
"LIBWEBP" : "1.5.0" ,
123
123
"OPENJPEG" : "2.5.3" ,
124
124
"TIFF" : "4.7.0" ,
125
- "XZ" : "5.6.4" if struct . calcsize ( "P" ) == 4 else "5. 8.1" ,
125
+ "XZ" : "5.8.1" ,
126
126
"ZLIBNG" : "2.2.4" ,
127
127
}
128
128
V ["LIBPNG_XY" ] = "" .join (V ["LIBPNG" ].split ("." )[:2 ])
@@ -181,7 +181,11 @@ def cmd_msbuild(
181
181
"filename" : f"xz-{ V ['XZ' ]} .tar.gz" ,
182
182
"license" : "COPYING" ,
183
183
"build" : [
184
- * cmds_cmake ("liblzma" , "-DBUILD_SHARED_LIBS:BOOL=OFF" ),
184
+ * cmds_cmake (
185
+ "liblzma" ,
186
+ "-DBUILD_SHARED_LIBS:BOOL=OFF"
187
+ + (" -DXZ_CLMUL_CRC:BOOL=OFF" if struct .calcsize ("P" ) == 4 else "" ),
188
+ ),
185
189
cmd_mkdir (r"{inc_dir}\lzma" ),
186
190
cmd_copy (r"src\liblzma\api\lzma\*.h" , r"{inc_dir}\lzma" ),
187
191
],
You can’t perform that action at this time.
0 commit comments