Last change
on this file since 108911 was 108911, checked in by vboxsync, 4 weeks ago |
libs/liblzma: Applied and adjusted our liblzma changes to 5.8.1 and export to OSE. jiraref:VBP-1635
|
-
Property svn:eol-style
set to
native
-
Property svn:keywords
set to
Author Date Id Revision
-
Property sync-process
set to
export
|
File size:
978 bytes
|
Line | |
---|
1 | ## SPDX-License-Identifier: 0BSD
|
---|
2 | ## Author: Lasse Collin
|
---|
3 |
|
---|
4 | ## Note: There is no check for COND_CHECK_CRC32 because
|
---|
5 | ## currently crc32 is always enabled.
|
---|
6 |
|
---|
7 | EXTRA_DIST += \
|
---|
8 | check/crc_clmul_consts_gen.c \
|
---|
9 | check/crc32_tablegen.c \
|
---|
10 | check/crc64_tablegen.c
|
---|
11 |
|
---|
12 | liblzma_la_SOURCES += \
|
---|
13 | check/check.c \
|
---|
14 | check/check.h \
|
---|
15 | check/crc_common.h \
|
---|
16 | check/crc_x86_clmul.h \
|
---|
17 | check/crc32_arm64.h \
|
---|
18 | check/crc32_loongarch.h
|
---|
19 |
|
---|
20 | if COND_SMALL
|
---|
21 | liblzma_la_SOURCES += check/crc32_small.c
|
---|
22 | else
|
---|
23 | liblzma_la_SOURCES += \
|
---|
24 | check/crc32_fast.c \
|
---|
25 | check/crc32_table_le.h \
|
---|
26 | check/crc32_table_be.h
|
---|
27 | if COND_ASM_X86
|
---|
28 | liblzma_la_SOURCES += check/crc32_x86.S
|
---|
29 | endif
|
---|
30 | endif
|
---|
31 |
|
---|
32 | if COND_CHECK_CRC64
|
---|
33 | if COND_SMALL
|
---|
34 | liblzma_la_SOURCES += check/crc64_small.c
|
---|
35 | else
|
---|
36 | liblzma_la_SOURCES += \
|
---|
37 | check/crc64_fast.c \
|
---|
38 | check/crc64_table_le.h \
|
---|
39 | check/crc64_table_be.h
|
---|
40 | if COND_ASM_X86
|
---|
41 | liblzma_la_SOURCES += check/crc64_x86.S
|
---|
42 | endif
|
---|
43 | endif
|
---|
44 | endif
|
---|
45 |
|
---|
46 | if COND_CHECK_SHA256
|
---|
47 | if COND_INTERNAL_SHA256
|
---|
48 | liblzma_la_SOURCES += check/sha256.c
|
---|
49 | endif
|
---|
50 | endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.