mirror of
https://git.tukaani.org/xz.git
synced 2024-04-04 12:36:23 +02:00
liblzma: Rename crc_macros.h to crc_common.h.
This commit is contained in:
parent
37947d4a75
commit
233885a437
5 changed files with 5 additions and 5 deletions
|
@ -217,7 +217,7 @@ add_library(liblzma
|
|||
src/liblzma/api/lzma/vli.h
|
||||
src/liblzma/check/check.c
|
||||
src/liblzma/check/check.h
|
||||
src/liblzma/check/crc_macros.h
|
||||
src/liblzma/check/crc_common.h
|
||||
src/liblzma/common/block_util.c
|
||||
src/liblzma/common/common.c
|
||||
src/liblzma/common/common.h
|
||||
|
|
|
@ -12,7 +12,7 @@ EXTRA_DIST += \
|
|||
liblzma_la_SOURCES += \
|
||||
check/check.c \
|
||||
check/check.h \
|
||||
check/crc_macros.h
|
||||
check/crc_common.h
|
||||
|
||||
if COND_CHECK_CRC32
|
||||
if COND_SMALL
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
///////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#include "check.h"
|
||||
#include "crc_macros.h"
|
||||
#include "crc_common.h"
|
||||
|
||||
|
||||
// If you make any changes, do some benchmarking! Seemingly unrelated
|
||||
|
|
|
@ -77,7 +77,7 @@
|
|||
|
||||
#ifdef CRC_GENERIC
|
||||
|
||||
#include "crc_macros.h"
|
||||
#include "crc_common.h"
|
||||
|
||||
|
||||
#ifdef WORDS_BIGENDIAN
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
///////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
/// \file crc_macros.h
|
||||
/// \file crc_common.h
|
||||
/// \brief Some endian-dependent macros for CRC32 and CRC64
|
||||
//
|
||||
// Author: Lasse Collin
|
Loading…
Reference in a new issue