Currently crc32 is always enabled, so COND_CHECK_CRC32 must always be
set. Because of this, it makes the recent change to conditionally
compile check/crc_clmul.c appear wrong since that file has CLMUL
implementations for both CRC32 and CRC64.
## This file has been put into the public domain.
## You can do whatever you want with this file.
##
+## Note: There is no check for COND_CHECK_CRC32 because
+## currently crc32 is always enabled.
EXTRA_DIST += \
check/crc32_tablegen.c \
check/check.h \
check/crc_common.h
-if COND_CHECK_CRC32
if COND_SMALL
liblzma_la_SOURCES += check/crc32_small.c
else
endif
endif
endif
-endif
if COND_CHECK_CRC64
if COND_SMALL