1
0
miroir de https://git.tukaani.org/xz.git synchronisé 2025-12-21 04:48:44 +00:00

liblzma: Fix a compilation issue when encoders are disabled.

When encoders were disabled and threading enabled, outqueue.c and
outqueue.h were not compiled. The multi threaded decoder required
these files, so compilation failed.
Cette révision appartient à :
Jia Tan 2022-10-05 20:57:16 +08:00 révisé par Lasse Collin
Parent 6ca5c354bd
révision 14af758a77

Voir le fichier

@ -22,7 +22,10 @@ liblzma_la_SOURCES += \
common/vli_size.c
if COND_THREADS
liblzma_la_SOURCES += common/hardware_cputhreads.c
liblzma_la_SOURCES += \
common/hardware_cputhreads.c \
common/outqueue.c \
common/outqueue.h
endif
if COND_MAIN_ENCODER
@ -50,8 +53,6 @@ liblzma_la_SOURCES += \
if COND_THREADS
liblzma_la_SOURCES += \
common/outqueue.c \
common/outqueue.h \
common/stream_encoder_mt.c
endif
endif