@@ -300,7 +300,7 @@ expand_header_template(
300
300
},
301
301
)
302
302
303
- jconfig_nowin_common_substitutions = {
303
+ JCONFIG_NOWIN_COMMON_SUBSTITUTIONS = {
304
304
"LIBJPEG_TURBO_VERSION 0": "LIBJPEG_TURBO_VERSION 1.5.1",
305
305
"LIBJPEG_TURBO_VERSION_NUMBER 0": "LIBJPEG_TURBO_VERSION_NUMBER 1005001",
306
306
"#undef C_ARITH_CODING_SUPPORTED": "#define C_ARITH_CODING_SUPPORTED 1",
@@ -320,26 +320,26 @@ jconfig_nowin_common_substitutions = {
320
320
"#undef RIGHT_SHIFT_IS_UNSIGNED": "",
321
321
}
322
322
323
- jconfig_nowin_simd_substitutions = jconfig_nowin_common_substitutions + {
323
+ JCONFIG_NOWIN_SIMD_SUBSTITUTIONS = JCONFIG_NOWIN_COMMON_SUBSTITUTIONS + {
324
324
"#undef WITH_SIMD": "#define WITH_SIMD 1",
325
325
}
326
326
327
- jconfig_nowin_nosimd_substitutions = jconfig_nowin_common_substitutions + {
327
+ JCONFIG_NOWIN_NOSIMD_SUBSTITUTIONS = JCONFIG_NOWIN_COMMON_SUBSTITUTIONS + {
328
328
"#undef WITH_SIMD": "",
329
329
}
330
330
331
331
expand_header_template(
332
332
name = "jconfig_nowin_nosimd",
333
333
src = "jconfig.h.in",
334
334
out = "jconfig_nowin_nosimd.h",
335
- substitutions = jconfig_nowin_nosimd_substitutions ,
335
+ substitutions = JCONFIG_NOWIN_NOSIMD_SUBSTITUTIONS ,
336
336
)
337
337
338
338
expand_header_template(
339
339
name = "jconfig_nowin_simd",
340
340
src = "jconfig.h.in",
341
341
out = "jconfig_nowin_simd.h",
342
- substitutions = jconfig_nowin_simd_substitutions ,
342
+ substitutions = JCONFIG_NOWIN_SIMD_SUBSTITUTIONS ,
343
343
)
344
344
345
345
expand_header_template(
0 commit comments