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:
889 bytes
|
Line | |
---|
1 | ## SPDX-License-Identifier: 0BSD
|
---|
2 | ## Author: Lasse Collin
|
---|
3 |
|
---|
4 | liblzma_la_SOURCES += \
|
---|
5 | simple/simple_coder.c \
|
---|
6 | simple/simple_coder.h \
|
---|
7 | simple/simple_private.h
|
---|
8 |
|
---|
9 | if COND_ENCODER_SIMPLE
|
---|
10 | liblzma_la_SOURCES += \
|
---|
11 | simple/simple_encoder.c \
|
---|
12 | simple/simple_encoder.h
|
---|
13 | endif
|
---|
14 |
|
---|
15 | if COND_DECODER_SIMPLE
|
---|
16 | liblzma_la_SOURCES += \
|
---|
17 | simple/simple_decoder.c \
|
---|
18 | simple/simple_decoder.h
|
---|
19 | endif
|
---|
20 |
|
---|
21 | if COND_FILTER_X86
|
---|
22 | liblzma_la_SOURCES += simple/x86.c
|
---|
23 | endif
|
---|
24 |
|
---|
25 | if COND_FILTER_POWERPC
|
---|
26 | liblzma_la_SOURCES += simple/powerpc.c
|
---|
27 | endif
|
---|
28 |
|
---|
29 | if COND_FILTER_IA64
|
---|
30 | liblzma_la_SOURCES += simple/ia64.c
|
---|
31 | endif
|
---|
32 |
|
---|
33 | if COND_FILTER_ARM
|
---|
34 | liblzma_la_SOURCES += simple/arm.c
|
---|
35 | endif
|
---|
36 |
|
---|
37 | if COND_FILTER_ARMTHUMB
|
---|
38 | liblzma_la_SOURCES += simple/armthumb.c
|
---|
39 | endif
|
---|
40 |
|
---|
41 | if COND_FILTER_ARM64
|
---|
42 | liblzma_la_SOURCES += simple/arm64.c
|
---|
43 | endif
|
---|
44 |
|
---|
45 | if COND_FILTER_SPARC
|
---|
46 | liblzma_la_SOURCES += simple/sparc.c
|
---|
47 | endif
|
---|
48 |
|
---|
49 | if COND_FILTER_RISCV
|
---|
50 | liblzma_la_SOURCES += simple/riscv.c
|
---|
51 | endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.