Browse Source

Add SPDX license identifier into 0BSD source code files.

v5.6
Lasse Collin 2 months ago
parent
commit
22af94128b
  1. 2
      .github/workflows/ci.yml
  2. 2
      .github/workflows/windows-ci.yml
  3. 2
      CMakeLists.txt
  4. 3
      Makefile.am
  5. 1
      autogen.sh
  6. 3
      build-aux/ci_build.sh
  7. 3
      build-aux/manconv.sh
  8. 3
      build-aux/version.sh
  9. 2
      cmake/remove-ordinals.cmake
  10. 4
      cmake/tuklib_common.cmake
  11. 4
      cmake/tuklib_cpucores.cmake
  12. 4
      cmake/tuklib_integer.cmake
  13. 4
      cmake/tuklib_large_file_support.cmake
  14. 4
      cmake/tuklib_mbstr.cmake
  15. 4
      cmake/tuklib_physmem.cmake
  16. 4
      cmake/tuklib_progname.cmake
  17. 4
      configure.ac
  18. 3
      debug/Makefile.am
  19. 2
      debug/crc32.c
  20. 2
      debug/full_flush.c
  21. 2
      debug/hex2bin.c
  22. 2
      debug/known_sizes.c
  23. 2
      debug/memusage.c
  24. 2
      debug/repeat.c
  25. 2
      debug/sync_flush.c
  26. 1
      debug/translation.bash
  27. 2
      doc/examples/01_compress_easy.c
  28. 2
      doc/examples/02_decompress.c
  29. 2
      doc/examples/03_compress_custom.c
  30. 2
      doc/examples/04_compress_easy_mt.c
  31. 2
      doc/examples/11_file_info.c
  32. 3
      doc/examples/Makefile
  33. 2
      dos/Makefile
  34. 2
      dos/config.h
  35. 3
      doxygen/update-doxygen
  36. 3
      extra/7z2lzma/7z2lzma.bash
  37. 8
      m4/tuklib_common.m4
  38. 8
      m4/tuklib_cpucores.m4
  39. 8
      m4/tuklib_integer.m4
  40. 8
      m4/tuklib_mbstr.m4
  41. 8
      m4/tuklib_physmem.m4
  42. 8
      m4/tuklib_progname.m4
  43. 2
      po/POTFILES.in
  44. 2
      po4a/po4a.conf
  45. 3
      po4a/update-po
  46. 3
      src/Makefile.am
  47. 2
      src/common/common_w32res.rc
  48. 2
      src/common/mythread.h
  49. 2
      src/common/sysdefs.h
  50. 2
      src/common/tuklib_common.h
  51. 2
      src/common/tuklib_config.h
  52. 2
      src/common/tuklib_cpucores.c
  53. 2
      src/common/tuklib_cpucores.h
  54. 2
      src/common/tuklib_exit.c
  55. 2
      src/common/tuklib_exit.h
  56. 2
      src/common/tuklib_gettext.h
  57. 2
      src/common/tuklib_integer.h
  58. 2
      src/common/tuklib_mbstr.h
  59. 2
      src/common/tuklib_mbstr_fw.c
  60. 2
      src/common/tuklib_mbstr_width.c
  61. 2
      src/common/tuklib_open_stdxxx.c
  62. 2
      src/common/tuklib_open_stdxxx.h
  63. 2
      src/common/tuklib_physmem.c
  64. 2
      src/common/tuklib_physmem.h
  65. 2
      src/common/tuklib_progname.c
  66. 2
      src/common/tuklib_progname.h
  67. 3
      src/liblzma/Makefile.am
  68. 3
      src/liblzma/api/Makefile.am
  69. 2
      src/liblzma/api/lzma.h
  70. 2
      src/liblzma/api/lzma/base.h
  71. 2
      src/liblzma/api/lzma/bcj.h
  72. 2
      src/liblzma/api/lzma/block.h
  73. 2
      src/liblzma/api/lzma/check.h
  74. 2
      src/liblzma/api/lzma/container.h
  75. 2
      src/liblzma/api/lzma/delta.h
  76. 2
      src/liblzma/api/lzma/filter.h
  77. 2
      src/liblzma/api/lzma/hardware.h
  78. 2
      src/liblzma/api/lzma/index.h
  79. 2
      src/liblzma/api/lzma/index_hash.h
  80. 2
      src/liblzma/api/lzma/lzma12.h
  81. 2
      src/liblzma/api/lzma/stream_flags.h
  82. 2
      src/liblzma/api/lzma/version.h
  83. 2
      src/liblzma/api/lzma/vli.h
  84. 4
      src/liblzma/check/Makefile.inc
  85. 2
      src/liblzma/check/check.c
  86. 2
      src/liblzma/check/check.h
  87. 2
      src/liblzma/check/crc32_arm64.h
  88. 2
      src/liblzma/check/crc32_fast.c
  89. 2
      src/liblzma/check/crc32_small.c
  90. 2
      src/liblzma/check/crc32_table.c
  91. 2
      src/liblzma/check/crc32_tablegen.c
  92. 2
      src/liblzma/check/crc32_x86.S
  93. 2
      src/liblzma/check/crc64_fast.c
  94. 2
      src/liblzma/check/crc64_small.c
  95. 2
      src/liblzma/check/crc64_table.c
  96. 2
      src/liblzma/check/crc64_tablegen.c
  97. 2
      src/liblzma/check/crc64_x86.S
  98. 2
      src/liblzma/check/crc_common.h
  99. 2
      src/liblzma/check/crc_x86_clmul.h
  100. 2
      src/liblzma/check/sha256.c

2
.github/workflows/ci.yml

@ -1,3 +1,5 @@
# SPDX-License-Identifier: 0BSD
#############################################################################
#
# Author: Jia Tan

2
.github/workflows/windows-ci.yml

@ -1,3 +1,5 @@
# SPDX-License-Identifier: 0BSD
#############################################################################
#
# Author: Jia Tan

2
CMakeLists.txt

@ -1,3 +1,5 @@
# SPDX-License-Identifier: 0BSD
#############################################################################
#
# Very limited CMake support for building some parts of XZ Utils

3
Makefile.am

@ -1,6 +1,5 @@
##
## SPDX-License-Identifier: 0BSD
## Author: Lasse Collin
##
# Use -n to prevent gzip from adding a timestamp to the .gz headers.
GZIP_ENV = -9n

1
autogen.sh

@ -1,4 +1,5 @@
#!/bin/sh
# SPDX-License-Identifier: 0BSD
###############################################################################
#

3
build-aux/ci_build.sh

@ -1,5 +1,6 @@
#!/bin/bash
#
# SPDX-License-Identifier: 0BSD
#############################################################################
#
# Script meant to be used for Continuous Integration automation for POSIX

3
build-aux/manconv.sh

@ -1,5 +1,6 @@
#!/bin/sh
#
# SPDX-License-Identifier: 0BSD
###############################################################################
#
# Wrapper for GNU groff to convert man pages to a few formats

3
build-aux/version.sh

@ -1,5 +1,6 @@
#!/bin/sh
#
# SPDX-License-Identifier: 0BSD
#############################################################################
#
# Get the version string from version.h and print it out without

2
cmake/remove-ordinals.cmake

@ -1,3 +1,5 @@
# SPDX-License-Identifier: 0BSD
#############################################################################
#
# remove-ordinals.cmake

4
cmake/tuklib_common.cmake

@ -1,8 +1,12 @@
# SPDX-License-Identifier: 0BSD
#############################################################################
#
# tuklib_common.cmake - common functions and macros for tuklib_*.cmake files
#
# Author: Lasse Collin
#
#############################################################################
function(tuklib_add_definitions TARGET_OR_ALL DEFINITIONS)
# DEFINITIONS may be an empty string/list but it's fine here. There is

4
cmake/tuklib_cpucores.cmake

@ -1,8 +1,12 @@
# SPDX-License-Identifier: 0BSD
#############################################################################
#
# tuklib_cpucores.cmake - see tuklib_cpucores.m4 for description and comments
#
# Author: Lasse Collin
#
#############################################################################
include("${CMAKE_CURRENT_LIST_DIR}/tuklib_common.cmake")
include(CheckCSourceCompiles)

4
cmake/tuklib_integer.cmake

@ -1,8 +1,12 @@
# SPDX-License-Identifier: 0BSD
#############################################################################
#
# tuklib_integer.cmake - see tuklib_integer.m4 for description and comments
#
# Author: Lasse Collin
#
#############################################################################
include("${CMAKE_CURRENT_LIST_DIR}/tuklib_common.cmake")
include(TestBigEndian)

4
cmake/tuklib_large_file_support.cmake

@ -1,3 +1,6 @@
# SPDX-License-Identifier: 0BSD
#############################################################################
#
# tuklib_large_file_support.cmake
#
@ -8,6 +11,7 @@
#
# Author: Lasse Collin
#
#############################################################################
include("${CMAKE_CURRENT_LIST_DIR}/tuklib_common.cmake")
include(CheckCSourceCompiles)

4
cmake/tuklib_mbstr.cmake

@ -1,8 +1,12 @@
# SPDX-License-Identifier: 0BSD
#############################################################################
#
# tuklib_mbstr.cmake - see tuklib_mbstr.m4 for description and comments
#
# Author: Lasse Collin
#
#############################################################################
include("${CMAKE_CURRENT_LIST_DIR}/tuklib_common.cmake")
include(CheckSymbolExists)

4
cmake/tuklib_physmem.cmake

@ -1,3 +1,6 @@
# SPDX-License-Identifier: 0BSD
#############################################################################
#
# tuklib_physmem.cmake - see tuklib_physmem.m4 for description and comments
#
@ -6,6 +9,7 @@
#
# Author: Lasse Collin
#
#############################################################################
include("${CMAKE_CURRENT_LIST_DIR}/tuklib_common.cmake")
include(CheckCSourceCompiles)

4
cmake/tuklib_progname.cmake

@ -1,8 +1,12 @@
# SPDX-License-Identifier: 0BSD
#############################################################################
#
# tuklib_progname.cmake - see tuklib_progname.m4 for description and comments
#
# Author: Lasse Collin
#
#############################################################################
include("${CMAKE_CURRENT_LIST_DIR}/tuklib_common.cmake")
include(CheckSymbolExists)

4
configure.ac

@ -1,8 +1,10 @@
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
# SPDX-License-Identifier: 0BSD
###############################################################################
#
# Process this file with autoconf to produce a configure script.
#
# Author: Lasse Collin
#
###############################################################################

3
debug/Makefile.am

@ -1,6 +1,5 @@
##
## SPDX-License-Identifier: 0BSD
## Author: Lasse Collin
##
EXTRA_DIST = \
translation.bash

2
debug/crc32.c

@ -1,3 +1,5 @@
// SPDX-License-Identifier: 0BSD
///////////////////////////////////////////////////////////////////////////////
//
/// \file crc32.c

2
debug/full_flush.c

@ -1,3 +1,5 @@
// SPDX-License-Identifier: 0BSD
///////////////////////////////////////////////////////////////////////////////
//
/// \file full_flush.c

2
debug/hex2bin.c

@ -1,3 +1,5 @@
// SPDX-License-Identifier: 0BSD
///////////////////////////////////////////////////////////////////////////////
//
/// \file hex2bin.c

2
debug/known_sizes.c

@ -1,3 +1,5 @@
// SPDX-License-Identifier: 0BSD
///////////////////////////////////////////////////////////////////////////////
//
/// \file known_sizes.c

2
debug/memusage.c

@ -1,3 +1,5 @@
// SPDX-License-Identifier: 0BSD
///////////////////////////////////////////////////////////////////////////////
//
/// \file memusage.c

2
debug/repeat.c

@ -1,3 +1,5 @@
// SPDX-License-Identifier: 0BSD
///////////////////////////////////////////////////////////////////////////////
//
/// \file repeat.c

2
debug/sync_flush.c

@ -1,3 +1,5 @@
// SPDX-License-Identifier: 0BSD
///////////////////////////////////////////////////////////////////////////////
//
/// \file sync_flush.c

1
debug/translation.bash

@ -1,4 +1,5 @@
#!/bin/bash
# SPDX-License-Identifier: 0BSD
###############################################################################
#

2
doc/examples/01_compress_easy.c

@ -1,3 +1,5 @@
// SPDX-License-Identifier: 0BSD
///////////////////////////////////////////////////////////////////////////////
//
/// \file 01_compress_easy.c

2
doc/examples/02_decompress.c

@ -1,3 +1,5 @@
// SPDX-License-Identifier: 0BSD
///////////////////////////////////////////////////////////////////////////////
//
/// \file 02_decompress.c

2
doc/examples/03_compress_custom.c

@ -1,3 +1,5 @@
// SPDX-License-Identifier: 0BSD
///////////////////////////////////////////////////////////////////////////////
//
/// \file 03_compress_custom.c

2
doc/examples/04_compress_easy_mt.c

@ -1,3 +1,5 @@
// SPDX-License-Identifier: 0BSD
///////////////////////////////////////////////////////////////////////////////
//
/// \file 04_compress_easy_mt.c

2
doc/examples/11_file_info.c

@ -1,3 +1,5 @@
// SPDX-License-Identifier: 0BSD
///////////////////////////////////////////////////////////////////////////////
//
/// \file 11_file_info.c

3
doc/examples/Makefile

@ -1,6 +1,5 @@
#
# SPDX-License-Identifier: 0BSD
# Author: Lasse Collin
#
CC = c99
CFLAGS = -g

2
dos/Makefile

@ -1,3 +1,5 @@
# SPDX-License-Identifier: 0BSD
###############################################################################
#
# Makefile to build XZ Utils using DJGPP

2
dos/config.h

@ -1,3 +1,5 @@
/* SPDX-License-Identifier: 0BSD */
/* How many MiB of RAM to assume if the real amount cannot be determined. */
#define ASSUME_RAM 32

3
doxygen/update-doxygen

@ -1,5 +1,6 @@
#!/bin/sh
#
# SPDX-License-Identifier: 0BSD
#############################################################################
#
# Updates the Doxygen generated documentation files in the source tree.

3
extra/7z2lzma/7z2lzma.bash

@ -1,5 +1,6 @@
#!/bin/bash
#
# SPDX-License-Identifier: 0BSD
#############################################################################
#
# 7z2lzma.bash is very primitive .7z to .lzma converter. The input file must

8
m4/tuklib_common.m4

@ -1,3 +1,6 @@
# SPDX-License-Identifier: 0BSD
#############################################################################
#
# SYNOPSIS
#
@ -7,10 +10,11 @@
#
# Common checks for tuklib.
#
# COPYING
#############################################################################
#
# Author: Lasse Collin
# Author: Lasse Collin
#
#############################################################################
AC_DEFUN_ONCE([TUKLIB_COMMON], [
AC_REQUIRE([AC_CANONICAL_HOST])

8
m4/tuklib_cpucores.m4

@ -1,3 +1,6 @@
# SPDX-License-Identifier: 0BSD
#############################################################################
#
# SYNOPSIS
#
@ -17,10 +20,11 @@
# GetSystemInfo() is used on Cygwin)
# - pstat_getdynamic(): HP-UX
#
# COPYING
#############################################################################
#
# Author: Lasse Collin
# Author: Lasse Collin
#
#############################################################################
AC_DEFUN_ONCE([TUKLIB_CPUCORES], [
AC_REQUIRE([TUKLIB_COMMON])

8
m4/tuklib_integer.m4

@ -1,3 +1,6 @@
# SPDX-License-Identifier: 0BSD
#############################################################################
#
# SYNOPSIS
#
@ -11,10 +14,11 @@
# - Does the hardware support fast unaligned access to 16-bit, 32-bit,
# and 64-bit integers
#
# COPYING
#############################################################################
#
# Author: Lasse Collin
# Author: Lasse Collin
#
#############################################################################
AC_DEFUN_ONCE([TUKLIB_INTEGER], [
AC_REQUIRE([TUKLIB_COMMON])

8
m4/tuklib_mbstr.m4

@ -1,3 +1,6 @@
# SPDX-License-Identifier: 0BSD
#############################################################################
#
# SYNOPSIS
#
@ -15,10 +18,11 @@
# functions, but each function is put into a separate .c file so
# that it is possible to pick only what is strictly needed.
#
# COPYING
#############################################################################
#
# Author: Lasse Collin
# Author: Lasse Collin
#
#############################################################################
AC_DEFUN_ONCE([TUKLIB_MBSTR], [
AC_REQUIRE([TUKLIB_COMMON])

8
m4/tuklib_physmem.m4

@ -1,3 +1,6 @@
# SPDX-License-Identifier: 0BSD
#############################################################################
#
# SYNOPSIS
#
@ -29,10 +32,11 @@
# - sysinfo() works on Linux/dietlibc and probably on other Linux
# systems whose libc may lack sysconf().
#
# COPYING
#############################################################################
#
# Author: Lasse Collin
# Author: Lasse Collin
#
#############################################################################
AC_DEFUN_ONCE([TUKLIB_PHYSMEM], [
AC_REQUIRE([TUKLIB_COMMON])

8
m4/tuklib_progname.m4

@ -1,3 +1,6 @@
# SPDX-License-Identifier: 0BSD
#############################################################################
#
# SYNOPSIS
#
@ -11,10 +14,11 @@
# This .m4 file is needed allow this module to use glibc's
# program_invocation_name.
#
# COPYING
#############################################################################
#
# Author: Lasse Collin
# Author: Lasse Collin
#
#############################################################################
AC_DEFUN_ONCE([TUKLIB_PROGNAME], [
AC_REQUIRE([TUKLIB_COMMON])

2
po/POTFILES.in

@ -1,3 +1,5 @@
# SPDX-License-Identifier: 0BSD
# List of source files which contain translatable strings.
src/xz/args.c
src/xz/coder.c

2
po4a/po4a.conf

@ -1,3 +1,5 @@
# SPDX-License-Identifier: 0BSD
# To add a new language, add it to po4a_langs and run "update-po"
# to get a new .po file. After translating the .po file, run
# "update-po" again to generate the translated man pages.

3
po4a/update-po

@ -1,5 +1,6 @@
#!/bin/sh
#
# SPDX-License-Identifier: 0BSD
#############################################################################
#
# Updates xz-man.pot and the *.po files, and generates translated man pages.

3
src/Makefile.am

@ -1,6 +1,5 @@
##
## SPDX-License-Identifier: 0BSD
## Author: Lasse Collin
##
SUBDIRS = liblzma xzdec

2
src/common/common_w32res.rc

@ -1,3 +1,5 @@
/* SPDX-License-Identifier: 0BSD */
/*
* Author: Lasse Collin
*/

2
src/common/mythread.h

@ -1,3 +1,5 @@
// SPDX-License-Identifier: 0BSD
///////////////////////////////////////////////////////////////////////////////
//
/// \file mythread.h

2
src/common/sysdefs.h

@ -1,3 +1,5 @@
// SPDX-License-Identifier: 0BSD
///////////////////////////////////////////////////////////////////////////////
//
/// \file sysdefs.h

2
src/common/tuklib_common.h

@ -1,3 +1,5 @@
// SPDX-License-Identifier: 0BSD
///////////////////////////////////////////////////////////////////////////////
//
/// \file tuklib_common.h

2
src/common/tuklib_config.h

@ -1,3 +1,5 @@
// SPDX-License-Identifier: 0BSD
// If config.h isn't available, assume that the headers required by
// tuklib_common.h are available. This is required by crc32_tablegen.c.
#ifdef HAVE_CONFIG_H

2
src/common/tuklib_cpucores.c

@ -1,3 +1,5 @@
// SPDX-License-Identifier: 0BSD
///////////////////////////////////////////////////////////////////////////////
//
/// \file tuklib_cpucores.c

2
src/common/tuklib_cpucores.h

@ -1,3 +1,5 @@
// SPDX-License-Identifier: 0BSD
///////////////////////////////////////////////////////////////////////////////
//
/// \file tuklib_cpucores.h

2
src/common/tuklib_exit.c

@ -1,3 +1,5 @@
// SPDX-License-Identifier: 0BSD
///////////////////////////////////////////////////////////////////////////////
//
/// \file tuklib_exit.c

2
src/common/tuklib_exit.h

@ -1,3 +1,5 @@
// SPDX-License-Identifier: 0BSD
///////////////////////////////////////////////////////////////////////////////
//
/// \file tuklib_exit.h

2
src/common/tuklib_gettext.h

@ -1,3 +1,5 @@
// SPDX-License-Identifier: 0BSD
///////////////////////////////////////////////////////////////////////////////
//
/// \file tuklib_gettext.h

2
src/common/tuklib_integer.h

@ -1,3 +1,5 @@
// SPDX-License-Identifier: 0BSD
///////////////////////////////////////////////////////////////////////////////
//
/// \file tuklib_integer.h

2
src/common/tuklib_mbstr.h

@ -1,3 +1,5 @@
// SPDX-License-Identifier: 0BSD
///////////////////////////////////////////////////////////////////////////////
//
/// \file tuklib_mbstr.h

2
src/common/tuklib_mbstr_fw.c

@ -1,3 +1,5 @@
// SPDX-License-Identifier: 0BSD
///////////////////////////////////////////////////////////////////////////////
//
/// \file tuklib_mbstr_fw.c

2
src/common/tuklib_mbstr_width.c

@ -1,3 +1,5 @@
// SPDX-License-Identifier: 0BSD
///////////////////////////////////////////////////////////////////////////////
//
/// \file tuklib_mbstr_width.c

2
src/common/tuklib_open_stdxxx.c

@ -1,3 +1,5 @@
// SPDX-License-Identifier: 0BSD
///////////////////////////////////////////////////////////////////////////////
//
/// \file tuklib_open_stdxxx.c

2
src/common/tuklib_open_stdxxx.h

@ -1,3 +1,5 @@
// SPDX-License-Identifier: 0BSD
///////////////////////////////////////////////////////////////////////////////
//
/// \file tuklib_open_stdxxx.h

2
src/common/tuklib_physmem.c

@ -1,3 +1,5 @@
// SPDX-License-Identifier: 0BSD
///////////////////////////////////////////////////////////////////////////////
//
/// \file tuklib_physmem.c

2
src/common/tuklib_physmem.h

@ -1,3 +1,5 @@
// SPDX-License-Identifier: 0BSD
///////////////////////////////////////////////////////////////////////////////
//
/// \file tuklib_physmem.h

2
src/common/tuklib_progname.c

@ -1,3 +1,5 @@
// SPDX-License-Identifier: 0BSD
///////////////////////////////////////////////////////////////////////////////
//
/// \file tuklib_progname.c

2
src/common/tuklib_progname.h

@ -1,3 +1,5 @@
// SPDX-License-Identifier: 0BSD
///////////////////////////////////////////////////////////////////////////////
//
/// \file tuklib_progname.h

3
src/liblzma/Makefile.am

@ -1,6 +1,5 @@
##
## SPDX-License-Identifier: 0BSD
## Author: Lasse Collin
##
SUBDIRS = api

3
src/liblzma/api/Makefile.am

@ -1,6 +1,5 @@
##
## SPDX-License-Identifier: 0BSD
## Author: Lasse Collin
##
nobase_include_HEADERS = \
lzma.h \

2
src/liblzma/api/lzma.h

@ -1,3 +1,5 @@
/* SPDX-License-Identifier: 0BSD */
/**
* \file api/lzma.h
* \brief The public API of liblzma data compression library

2
src/liblzma/api/lzma/base.h

@ -1,3 +1,5 @@
/* SPDX-License-Identifier: 0BSD */
/**
* \file lzma/base.h
* \brief Data types and functions used in many places in liblzma API

2
src/liblzma/api/lzma/bcj.h

@ -1,3 +1,5 @@
/* SPDX-License-Identifier: 0BSD */
/**
* \file lzma/bcj.h
* \brief Branch/Call/Jump conversion filters

2
src/liblzma/api/lzma/block.h

@ -1,3 +1,5 @@
/* SPDX-License-Identifier: 0BSD */
/**
* \file lzma/block.h
* \brief .xz Block handling

2
src/liblzma/api/lzma/check.h

@ -1,3 +1,5 @@
/* SPDX-License-Identifier: 0BSD */
/**
* \file lzma/check.h
* \brief Integrity checks

2
src/liblzma/api/lzma/container.h

@ -1,3 +1,5 @@
/* SPDX-License-Identifier: 0BSD */
/**
* \file lzma/container.h
* \brief File formats

2
src/liblzma/api/lzma/delta.h

@ -1,3 +1,5 @@
/* SPDX-License-Identifier: 0BSD */
/**
* \file lzma/delta.h
* \brief Delta filter

2
src/liblzma/api/lzma/filter.h

@ -1,3 +1,5 @@
/* SPDX-License-Identifier: 0BSD */
/**
* \file lzma/filter.h
* \brief Common filter related types and functions

2
src/liblzma/api/lzma/hardware.h

@ -1,3 +1,5 @@
/* SPDX-License-Identifier: 0BSD */
/**
* \file lzma/hardware.h
* \brief Hardware information

2
src/liblzma/api/lzma/index.h

@ -1,3 +1,5 @@
/* SPDX-License-Identifier: 0BSD */
/**
* \file lzma/index.h
* \brief Handling of .xz Index and related information

2
src/liblzma/api/lzma/index_hash.h

@ -1,3 +1,5 @@
/* SPDX-License-Identifier: 0BSD */
/**
* \file lzma/index_hash.h
* \brief Validate Index by using a hash function

2
src/liblzma/api/lzma/lzma12.h

@ -1,3 +1,5 @@
/* SPDX-License-Identifier: 0BSD */
/**
* \file lzma/lzma12.h
* \brief LZMA1 and LZMA2 filters

2
src/liblzma/api/lzma/stream_flags.h

@ -1,3 +1,5 @@
/* SPDX-License-Identifier: 0BSD */
/**
* \file lzma/stream_flags.h
* \brief .xz Stream Header and Stream Footer encoder and decoder

2
src/liblzma/api/lzma/version.h

@ -1,3 +1,5 @@
/* SPDX-License-Identifier: 0BSD */
/**
* \file lzma/version.h
* \brief Version number

2
src/liblzma/api/lzma/vli.h

@ -1,3 +1,5 @@
/* SPDX-License-Identifier: 0BSD */
/**
* \file lzma/vli.h
* \brief Variable-length integer handling

4
src/liblzma/check/Makefile.inc

@ -1,6 +1,6 @@
##
## SPDX-License-Identifier: 0BSD
## Author: Lasse Collin
##
## Note: There is no check for COND_CHECK_CRC32 because
## currently crc32 is always enabled.

2
src/liblzma/check/check.c

@ -1,3 +1,5 @@
// SPDX-License-Identifier: 0BSD
///////////////////////////////////////////////////////////////////////////////
//
/// \file check.c

2
src/liblzma/check/check.h

@ -1,3 +1,5 @@
// SPDX-License-Identifier: 0BSD
///////////////////////////////////////////////////////////////////////////////
//
/// \file check.h

2
src/liblzma/check/crc32_arm64.h

@ -1,3 +1,5 @@
// SPDX-License-Identifier: 0BSD
///////////////////////////////////////////////////////////////////////////////
//
/// \file crc32_arm64.h

2
src/liblzma/check/crc32_fast.c

@ -1,3 +1,5 @@
// SPDX-License-Identifier: 0BSD
///////////////////////////////////////////////////////////////////////////////
//
/// \file crc32.c

2
src/liblzma/check/crc32_small.c

@ -1,3 +1,5 @@
// SPDX-License-Identifier: 0BSD
///////////////////////////////////////////////////////////////////////////////
//
/// \file crc32_small.c

2
src/liblzma/check/crc32_table.c

@ -1,3 +1,5 @@
// SPDX-License-Identifier: 0BSD
///////////////////////////////////////////////////////////////////////////////
//
/// \file crc32_table.c

2
src/liblzma/check/crc32_tablegen.c

@ -1,3 +1,5 @@
// SPDX-License-Identifier: 0BSD
///////////////////////////////////////////////////////////////////////////////
//
/// \file crc32_tablegen.c

2
src/liblzma/check/crc32_x86.S

@ -1,3 +1,5 @@
/* SPDX-License-Identifier: 0BSD */
/*
* Speed-optimized CRC32 using slicing-by-eight algorithm
*

2
src/liblzma/check/crc64_fast.c

@ -1,3 +1,5 @@
// SPDX-License-Identifier: 0BSD
///////////////////////////////////////////////////////////////////////////////
//
/// \file crc64.c

2
src/liblzma/check/crc64_small.c

@ -1,3 +1,5 @@
// SPDX-License-Identifier: 0BSD
///////////////////////////////////////////////////////////////////////////////
//
/// \file crc64_small.c

2
src/liblzma/check/crc64_table.c

@ -1,3 +1,5 @@
// SPDX-License-Identifier: 0BSD
///////////////////////////////////////////////////////////////////////////////
//
/// \file crc64_table.c

2
src/liblzma/check/crc64_tablegen.c

@ -1,3 +1,5 @@
// SPDX-License-Identifier: 0BSD
///////////////////////////////////////////////////////////////////////////////
//
/// \file crc64_tablegen.c

2
src/liblzma/check/crc64_x86.S

@ -1,3 +1,5 @@
/* SPDX-License-Identifier: 0BSD */
/*
* Speed-optimized CRC64 using slicing-by-four algorithm
*

2
src/liblzma/check/crc_common.h

@ -1,3 +1,5 @@
// SPDX-License-Identifier: 0BSD
///////////////////////////////////////////////////////////////////////////////
//
/// \file crc_common.h

2
src/liblzma/check/crc_x86_clmul.h

@ -1,3 +1,5 @@
// SPDX-License-Identifier: 0BSD
///////////////////////////////////////////////////////////////////////////////
//
/// \file crc_x86_clmul.h

2
src/liblzma/check/sha256.c

@ -1,3 +1,5 @@
// SPDX-License-Identifier: 0BSD
///////////////////////////////////////////////////////////////////////////////
//
/// \file sha256.c

Some files were not shown because too many files changed in this diff

Loading…
Cancel
Save