Last change
on this file since 108905 was 108905, checked in by vboxsync, 4 weeks ago |
liblzma-5.6.4: Applied and adjusted our liblzma changes to 5.6.4. jiraref:VBP-1613
|
-
Property svn:eol-style
set to
LF
-
Property svn:keywords
set to
Author Date Id Revision
|
File size:
1013 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/crc32_tablegen.c \
|
---|
9 | check/crc64_tablegen.c
|
---|
10 |
|
---|
11 | liblzma_la_SOURCES += \
|
---|
12 | check/check.c \
|
---|
13 | check/check.h \
|
---|
14 | check/crc_common.h \
|
---|
15 | check/crc_x86_clmul.h \
|
---|
16 | check/crc32_arm64.h
|
---|
17 |
|
---|
18 | if COND_SMALL
|
---|
19 | liblzma_la_SOURCES += check/crc32_small.c
|
---|
20 | else
|
---|
21 | liblzma_la_SOURCES += \
|
---|
22 | check/crc32_table.c \
|
---|
23 | check/crc32_table_le.h \
|
---|
24 | check/crc32_table_be.h
|
---|
25 | if COND_ASM_X86
|
---|
26 | liblzma_la_SOURCES += check/crc32_x86.S
|
---|
27 | else
|
---|
28 | liblzma_la_SOURCES += check/crc32_fast.c
|
---|
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_table.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 | else
|
---|
43 | liblzma_la_SOURCES += check/crc64_fast.c
|
---|
44 | endif
|
---|
45 | endif
|
---|
46 | endif
|
---|
47 |
|
---|
48 | if COND_CHECK_SHA256
|
---|
49 | if COND_INTERNAL_SHA256
|
---|
50 | liblzma_la_SOURCES += check/sha256.c
|
---|
51 | endif
|
---|
52 | endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.