mirror of
https://git.tukaani.org/xz.git
synced 2024-04-04 12:36:23 +02:00
Add SPDX license identifier into 0BSD source code files.
This commit is contained in:
parent
23de53421e
commit
22af94128b
290 changed files with 588 additions and 58 deletions
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
|
@ -1,3 +1,5 @@
|
||||||
|
# SPDX-License-Identifier: 0BSD
|
||||||
|
|
||||||
#############################################################################
|
#############################################################################
|
||||||
#
|
#
|
||||||
# Author: Jia Tan
|
# Author: Jia Tan
|
||||||
|
|
2
.github/workflows/windows-ci.yml
vendored
2
.github/workflows/windows-ci.yml
vendored
|
@ -1,3 +1,5 @@
|
||||||
|
# SPDX-License-Identifier: 0BSD
|
||||||
|
|
||||||
#############################################################################
|
#############################################################################
|
||||||
#
|
#
|
||||||
# Author: Jia Tan
|
# Author: Jia Tan
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
# SPDX-License-Identifier: 0BSD
|
||||||
|
|
||||||
#############################################################################
|
#############################################################################
|
||||||
#
|
#
|
||||||
# Very limited CMake support for building some parts of XZ Utils
|
# Very limited CMake support for building some parts of XZ Utils
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
##
|
## SPDX-License-Identifier: 0BSD
|
||||||
## Author: Lasse Collin
|
## Author: Lasse Collin
|
||||||
##
|
|
||||||
|
|
||||||
# Use -n to prevent gzip from adding a timestamp to the .gz headers.
|
# Use -n to prevent gzip from adding a timestamp to the .gz headers.
|
||||||
GZIP_ENV = -9n
|
GZIP_ENV = -9n
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
# SPDX-License-Identifier: 0BSD
|
||||||
|
|
||||||
###############################################################################
|
###############################################################################
|
||||||
#
|
#
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
#
|
# SPDX-License-Identifier: 0BSD
|
||||||
|
|
||||||
#############################################################################
|
#############################################################################
|
||||||
#
|
#
|
||||||
# Script meant to be used for Continuous Integration automation for POSIX
|
# Script meant to be used for Continuous Integration automation for POSIX
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
#
|
# SPDX-License-Identifier: 0BSD
|
||||||
|
|
||||||
###############################################################################
|
###############################################################################
|
||||||
#
|
#
|
||||||
# Wrapper for GNU groff to convert man pages to a few formats
|
# Wrapper for GNU groff to convert man pages to a few formats
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
#
|
# SPDX-License-Identifier: 0BSD
|
||||||
|
|
||||||
#############################################################################
|
#############################################################################
|
||||||
#
|
#
|
||||||
# Get the version string from version.h and print it out without
|
# Get the version string from version.h and print it out without
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
# SPDX-License-Identifier: 0BSD
|
||||||
|
|
||||||
#############################################################################
|
#############################################################################
|
||||||
#
|
#
|
||||||
# remove-ordinals.cmake
|
# remove-ordinals.cmake
|
||||||
|
|
|
@ -1,8 +1,12 @@
|
||||||
|
# SPDX-License-Identifier: 0BSD
|
||||||
|
|
||||||
|
#############################################################################
|
||||||
#
|
#
|
||||||
# tuklib_common.cmake - common functions and macros for tuklib_*.cmake files
|
# tuklib_common.cmake - common functions and macros for tuklib_*.cmake files
|
||||||
#
|
#
|
||||||
# Author: Lasse Collin
|
# Author: Lasse Collin
|
||||||
#
|
#
|
||||||
|
#############################################################################
|
||||||
|
|
||||||
function(tuklib_add_definitions TARGET_OR_ALL DEFINITIONS)
|
function(tuklib_add_definitions TARGET_OR_ALL DEFINITIONS)
|
||||||
# DEFINITIONS may be an empty string/list but it's fine here. There is
|
# DEFINITIONS may be an empty string/list but it's fine here. There is
|
||||||
|
|
|
@ -1,8 +1,12 @@
|
||||||
|
# SPDX-License-Identifier: 0BSD
|
||||||
|
|
||||||
|
#############################################################################
|
||||||
#
|
#
|
||||||
# tuklib_cpucores.cmake - see tuklib_cpucores.m4 for description and comments
|
# tuklib_cpucores.cmake - see tuklib_cpucores.m4 for description and comments
|
||||||
#
|
#
|
||||||
# Author: Lasse Collin
|
# Author: Lasse Collin
|
||||||
#
|
#
|
||||||
|
#############################################################################
|
||||||
|
|
||||||
include("${CMAKE_CURRENT_LIST_DIR}/tuklib_common.cmake")
|
include("${CMAKE_CURRENT_LIST_DIR}/tuklib_common.cmake")
|
||||||
include(CheckCSourceCompiles)
|
include(CheckCSourceCompiles)
|
||||||
|
|
|
@ -1,8 +1,12 @@
|
||||||
|
# SPDX-License-Identifier: 0BSD
|
||||||
|
|
||||||
|
#############################################################################
|
||||||
#
|
#
|
||||||
# tuklib_integer.cmake - see tuklib_integer.m4 for description and comments
|
# tuklib_integer.cmake - see tuklib_integer.m4 for description and comments
|
||||||
#
|
#
|
||||||
# Author: Lasse Collin
|
# Author: Lasse Collin
|
||||||
#
|
#
|
||||||
|
#############################################################################
|
||||||
|
|
||||||
include("${CMAKE_CURRENT_LIST_DIR}/tuklib_common.cmake")
|
include("${CMAKE_CURRENT_LIST_DIR}/tuklib_common.cmake")
|
||||||
include(TestBigEndian)
|
include(TestBigEndian)
|
||||||
|
|
|
@ -1,3 +1,6 @@
|
||||||
|
# SPDX-License-Identifier: 0BSD
|
||||||
|
|
||||||
|
#############################################################################
|
||||||
#
|
#
|
||||||
# tuklib_large_file_support.cmake
|
# tuklib_large_file_support.cmake
|
||||||
#
|
#
|
||||||
|
@ -8,6 +11,7 @@
|
||||||
#
|
#
|
||||||
# Author: Lasse Collin
|
# Author: Lasse Collin
|
||||||
#
|
#
|
||||||
|
#############################################################################
|
||||||
|
|
||||||
include("${CMAKE_CURRENT_LIST_DIR}/tuklib_common.cmake")
|
include("${CMAKE_CURRENT_LIST_DIR}/tuklib_common.cmake")
|
||||||
include(CheckCSourceCompiles)
|
include(CheckCSourceCompiles)
|
||||||
|
|
|
@ -1,8 +1,12 @@
|
||||||
|
# SPDX-License-Identifier: 0BSD
|
||||||
|
|
||||||
|
#############################################################################
|
||||||
#
|
#
|
||||||
# tuklib_mbstr.cmake - see tuklib_mbstr.m4 for description and comments
|
# tuklib_mbstr.cmake - see tuklib_mbstr.m4 for description and comments
|
||||||
#
|
#
|
||||||
# Author: Lasse Collin
|
# Author: Lasse Collin
|
||||||
#
|
#
|
||||||
|
#############################################################################
|
||||||
|
|
||||||
include("${CMAKE_CURRENT_LIST_DIR}/tuklib_common.cmake")
|
include("${CMAKE_CURRENT_LIST_DIR}/tuklib_common.cmake")
|
||||||
include(CheckSymbolExists)
|
include(CheckSymbolExists)
|
||||||
|
|
|
@ -1,3 +1,6 @@
|
||||||
|
# SPDX-License-Identifier: 0BSD
|
||||||
|
|
||||||
|
#############################################################################
|
||||||
#
|
#
|
||||||
# tuklib_physmem.cmake - see tuklib_physmem.m4 for description and comments
|
# tuklib_physmem.cmake - see tuklib_physmem.m4 for description and comments
|
||||||
#
|
#
|
||||||
|
@ -6,6 +9,7 @@
|
||||||
#
|
#
|
||||||
# Author: Lasse Collin
|
# Author: Lasse Collin
|
||||||
#
|
#
|
||||||
|
#############################################################################
|
||||||
|
|
||||||
include("${CMAKE_CURRENT_LIST_DIR}/tuklib_common.cmake")
|
include("${CMAKE_CURRENT_LIST_DIR}/tuklib_common.cmake")
|
||||||
include(CheckCSourceCompiles)
|
include(CheckCSourceCompiles)
|
||||||
|
|
|
@ -1,8 +1,12 @@
|
||||||
|
# SPDX-License-Identifier: 0BSD
|
||||||
|
|
||||||
|
#############################################################################
|
||||||
#
|
#
|
||||||
# tuklib_progname.cmake - see tuklib_progname.m4 for description and comments
|
# tuklib_progname.cmake - see tuklib_progname.m4 for description and comments
|
||||||
#
|
#
|
||||||
# Author: Lasse Collin
|
# Author: Lasse Collin
|
||||||
#
|
#
|
||||||
|
#############################################################################
|
||||||
|
|
||||||
include("${CMAKE_CURRENT_LIST_DIR}/tuklib_common.cmake")
|
include("${CMAKE_CURRENT_LIST_DIR}/tuklib_common.cmake")
|
||||||
include(CheckSymbolExists)
|
include(CheckSymbolExists)
|
||||||
|
|
|
@ -1,8 +1,10 @@
|
||||||
# -*- Autoconf -*-
|
# -*- 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
|
# Author: Lasse Collin
|
||||||
#
|
#
|
||||||
###############################################################################
|
###############################################################################
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
##
|
## SPDX-License-Identifier: 0BSD
|
||||||
## Author: Lasse Collin
|
## Author: Lasse Collin
|
||||||
##
|
|
||||||
|
|
||||||
EXTRA_DIST = \
|
EXTRA_DIST = \
|
||||||
translation.bash
|
translation.bash
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
// SPDX-License-Identifier: 0BSD
|
||||||
|
|
||||||
///////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
/// \file crc32.c
|
/// \file crc32.c
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
// SPDX-License-Identifier: 0BSD
|
||||||
|
|
||||||
///////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
/// \file full_flush.c
|
/// \file full_flush.c
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
// SPDX-License-Identifier: 0BSD
|
||||||
|
|
||||||
///////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
/// \file hex2bin.c
|
/// \file hex2bin.c
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
// SPDX-License-Identifier: 0BSD
|
||||||
|
|
||||||
///////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
/// \file known_sizes.c
|
/// \file known_sizes.c
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
// SPDX-License-Identifier: 0BSD
|
||||||
|
|
||||||
///////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
/// \file memusage.c
|
/// \file memusage.c
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
// SPDX-License-Identifier: 0BSD
|
||||||
|
|
||||||
///////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
/// \file repeat.c
|
/// \file repeat.c
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
// SPDX-License-Identifier: 0BSD
|
||||||
|
|
||||||
///////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
/// \file sync_flush.c
|
/// \file sync_flush.c
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
# SPDX-License-Identifier: 0BSD
|
||||||
|
|
||||||
###############################################################################
|
###############################################################################
|
||||||
#
|
#
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
// SPDX-License-Identifier: 0BSD
|
||||||
|
|
||||||
///////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
/// \file 01_compress_easy.c
|
/// \file 01_compress_easy.c
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
// SPDX-License-Identifier: 0BSD
|
||||||
|
|
||||||
///////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
/// \file 02_decompress.c
|
/// \file 02_decompress.c
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
// SPDX-License-Identifier: 0BSD
|
||||||
|
|
||||||
///////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
/// \file 03_compress_custom.c
|
/// \file 03_compress_custom.c
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
// SPDX-License-Identifier: 0BSD
|
||||||
|
|
||||||
///////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
/// \file 04_compress_easy_mt.c
|
/// \file 04_compress_easy_mt.c
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
// SPDX-License-Identifier: 0BSD
|
||||||
|
|
||||||
///////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
/// \file 11_file_info.c
|
/// \file 11_file_info.c
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
#
|
# SPDX-License-Identifier: 0BSD
|
||||||
# Author: Lasse Collin
|
# Author: Lasse Collin
|
||||||
#
|
|
||||||
|
|
||||||
CC = c99
|
CC = c99
|
||||||
CFLAGS = -g
|
CFLAGS = -g
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
# SPDX-License-Identifier: 0BSD
|
||||||
|
|
||||||
###############################################################################
|
###############################################################################
|
||||||
#
|
#
|
||||||
# Makefile to build XZ Utils using DJGPP
|
# Makefile to build XZ Utils using DJGPP
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
/* SPDX-License-Identifier: 0BSD */
|
||||||
|
|
||||||
/* How many MiB of RAM to assume if the real amount cannot be determined. */
|
/* How many MiB of RAM to assume if the real amount cannot be determined. */
|
||||||
#define ASSUME_RAM 32
|
#define ASSUME_RAM 32
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
#
|
# SPDX-License-Identifier: 0BSD
|
||||||
|
|
||||||
#############################################################################
|
#############################################################################
|
||||||
#
|
#
|
||||||
# Updates the Doxygen generated documentation files in the source tree.
|
# Updates the Doxygen generated documentation files in the source tree.
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
#
|
# SPDX-License-Identifier: 0BSD
|
||||||
|
|
||||||
#############################################################################
|
#############################################################################
|
||||||
#
|
#
|
||||||
# 7z2lzma.bash is very primitive .7z to .lzma converter. The input file must
|
# 7z2lzma.bash is very primitive .7z to .lzma converter. The input file must
|
||||||
|
|
|
@ -1,3 +1,6 @@
|
||||||
|
# SPDX-License-Identifier: 0BSD
|
||||||
|
|
||||||
|
#############################################################################
|
||||||
#
|
#
|
||||||
# SYNOPSIS
|
# SYNOPSIS
|
||||||
#
|
#
|
||||||
|
@ -7,10 +10,11 @@
|
||||||
#
|
#
|
||||||
# Common checks for tuklib.
|
# Common checks for tuklib.
|
||||||
#
|
#
|
||||||
# COPYING
|
#############################################################################
|
||||||
#
|
#
|
||||||
# Author: Lasse Collin
|
# Author: Lasse Collin
|
||||||
#
|
#
|
||||||
|
#############################################################################
|
||||||
|
|
||||||
AC_DEFUN_ONCE([TUKLIB_COMMON], [
|
AC_DEFUN_ONCE([TUKLIB_COMMON], [
|
||||||
AC_REQUIRE([AC_CANONICAL_HOST])
|
AC_REQUIRE([AC_CANONICAL_HOST])
|
||||||
|
|
|
@ -1,3 +1,6 @@
|
||||||
|
# SPDX-License-Identifier: 0BSD
|
||||||
|
|
||||||
|
#############################################################################
|
||||||
#
|
#
|
||||||
# SYNOPSIS
|
# SYNOPSIS
|
||||||
#
|
#
|
||||||
|
@ -17,10 +20,11 @@
|
||||||
# GetSystemInfo() is used on Cygwin)
|
# GetSystemInfo() is used on Cygwin)
|
||||||
# - pstat_getdynamic(): HP-UX
|
# - pstat_getdynamic(): HP-UX
|
||||||
#
|
#
|
||||||
# COPYING
|
#############################################################################
|
||||||
#
|
#
|
||||||
# Author: Lasse Collin
|
# Author: Lasse Collin
|
||||||
#
|
#
|
||||||
|
#############################################################################
|
||||||
|
|
||||||
AC_DEFUN_ONCE([TUKLIB_CPUCORES], [
|
AC_DEFUN_ONCE([TUKLIB_CPUCORES], [
|
||||||
AC_REQUIRE([TUKLIB_COMMON])
|
AC_REQUIRE([TUKLIB_COMMON])
|
||||||
|
|
|
@ -1,3 +1,6 @@
|
||||||
|
# SPDX-License-Identifier: 0BSD
|
||||||
|
|
||||||
|
#############################################################################
|
||||||
#
|
#
|
||||||
# SYNOPSIS
|
# SYNOPSIS
|
||||||
#
|
#
|
||||||
|
@ -11,10 +14,11 @@
|
||||||
# - Does the hardware support fast unaligned access to 16-bit, 32-bit,
|
# - Does the hardware support fast unaligned access to 16-bit, 32-bit,
|
||||||
# and 64-bit integers
|
# and 64-bit integers
|
||||||
#
|
#
|
||||||
# COPYING
|
#############################################################################
|
||||||
#
|
#
|
||||||
# Author: Lasse Collin
|
# Author: Lasse Collin
|
||||||
#
|
#
|
||||||
|
#############################################################################
|
||||||
|
|
||||||
AC_DEFUN_ONCE([TUKLIB_INTEGER], [
|
AC_DEFUN_ONCE([TUKLIB_INTEGER], [
|
||||||
AC_REQUIRE([TUKLIB_COMMON])
|
AC_REQUIRE([TUKLIB_COMMON])
|
||||||
|
|
|
@ -1,3 +1,6 @@
|
||||||
|
# SPDX-License-Identifier: 0BSD
|
||||||
|
|
||||||
|
#############################################################################
|
||||||
#
|
#
|
||||||
# SYNOPSIS
|
# SYNOPSIS
|
||||||
#
|
#
|
||||||
|
@ -15,10 +18,11 @@
|
||||||
# functions, but each function is put into a separate .c file so
|
# functions, but each function is put into a separate .c file so
|
||||||
# that it is possible to pick only what is strictly needed.
|
# that it is possible to pick only what is strictly needed.
|
||||||
#
|
#
|
||||||
# COPYING
|
#############################################################################
|
||||||
#
|
#
|
||||||
# Author: Lasse Collin
|
# Author: Lasse Collin
|
||||||
#
|
#
|
||||||
|
#############################################################################
|
||||||
|
|
||||||
AC_DEFUN_ONCE([TUKLIB_MBSTR], [
|
AC_DEFUN_ONCE([TUKLIB_MBSTR], [
|
||||||
AC_REQUIRE([TUKLIB_COMMON])
|
AC_REQUIRE([TUKLIB_COMMON])
|
||||||
|
|
|
@ -1,3 +1,6 @@
|
||||||
|
# SPDX-License-Identifier: 0BSD
|
||||||
|
|
||||||
|
#############################################################################
|
||||||
#
|
#
|
||||||
# SYNOPSIS
|
# SYNOPSIS
|
||||||
#
|
#
|
||||||
|
@ -29,10 +32,11 @@
|
||||||
# - sysinfo() works on Linux/dietlibc and probably on other Linux
|
# - sysinfo() works on Linux/dietlibc and probably on other Linux
|
||||||
# systems whose libc may lack sysconf().
|
# systems whose libc may lack sysconf().
|
||||||
#
|
#
|
||||||
# COPYING
|
#############################################################################
|
||||||
#
|
#
|
||||||
# Author: Lasse Collin
|
# Author: Lasse Collin
|
||||||
#
|
#
|
||||||
|
#############################################################################
|
||||||
|
|
||||||
AC_DEFUN_ONCE([TUKLIB_PHYSMEM], [
|
AC_DEFUN_ONCE([TUKLIB_PHYSMEM], [
|
||||||
AC_REQUIRE([TUKLIB_COMMON])
|
AC_REQUIRE([TUKLIB_COMMON])
|
||||||
|
|
|
@ -1,3 +1,6 @@
|
||||||
|
# SPDX-License-Identifier: 0BSD
|
||||||
|
|
||||||
|
#############################################################################
|
||||||
#
|
#
|
||||||
# SYNOPSIS
|
# SYNOPSIS
|
||||||
#
|
#
|
||||||
|
@ -11,10 +14,11 @@
|
||||||
# This .m4 file is needed allow this module to use glibc's
|
# This .m4 file is needed allow this module to use glibc's
|
||||||
# program_invocation_name.
|
# program_invocation_name.
|
||||||
#
|
#
|
||||||
# COPYING
|
#############################################################################
|
||||||
#
|
#
|
||||||
# Author: Lasse Collin
|
# Author: Lasse Collin
|
||||||
#
|
#
|
||||||
|
#############################################################################
|
||||||
|
|
||||||
AC_DEFUN_ONCE([TUKLIB_PROGNAME], [
|
AC_DEFUN_ONCE([TUKLIB_PROGNAME], [
|
||||||
AC_REQUIRE([TUKLIB_COMMON])
|
AC_REQUIRE([TUKLIB_COMMON])
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
# SPDX-License-Identifier: 0BSD
|
||||||
|
|
||||||
# List of source files which contain translatable strings.
|
# List of source files which contain translatable strings.
|
||||||
src/xz/args.c
|
src/xz/args.c
|
||||||
src/xz/coder.c
|
src/xz/coder.c
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
# SPDX-License-Identifier: 0BSD
|
||||||
|
|
||||||
# To add a new language, add it to po4a_langs and run "update-po"
|
# 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
|
# to get a new .po file. After translating the .po file, run
|
||||||
# "update-po" again to generate the translated man pages.
|
# "update-po" again to generate the translated man pages.
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
#
|
# SPDX-License-Identifier: 0BSD
|
||||||
|
|
||||||
#############################################################################
|
#############################################################################
|
||||||
#
|
#
|
||||||
# Updates xz-man.pot and the *.po files, and generates translated man pages.
|
# Updates xz-man.pot and the *.po files, and generates translated man pages.
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
##
|
## SPDX-License-Identifier: 0BSD
|
||||||
## Author: Lasse Collin
|
## Author: Lasse Collin
|
||||||
##
|
|
||||||
|
|
||||||
SUBDIRS = liblzma xzdec
|
SUBDIRS = liblzma xzdec
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
/* SPDX-License-Identifier: 0BSD */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Author: Lasse Collin
|
* Author: Lasse Collin
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
// SPDX-License-Identifier: 0BSD
|
||||||
|
|
||||||
///////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
/// \file mythread.h
|
/// \file mythread.h
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
// SPDX-License-Identifier: 0BSD
|
||||||
|
|
||||||
///////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
/// \file sysdefs.h
|
/// \file sysdefs.h
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
// SPDX-License-Identifier: 0BSD
|
||||||
|
|
||||||
///////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
/// \file tuklib_common.h
|
/// \file tuklib_common.h
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
// SPDX-License-Identifier: 0BSD
|
||||||
|
|
||||||
// If config.h isn't available, assume that the headers required by
|
// If config.h isn't available, assume that the headers required by
|
||||||
// tuklib_common.h are available. This is required by crc32_tablegen.c.
|
// tuklib_common.h are available. This is required by crc32_tablegen.c.
|
||||||
#ifdef HAVE_CONFIG_H
|
#ifdef HAVE_CONFIG_H
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
// SPDX-License-Identifier: 0BSD
|
||||||
|
|
||||||
///////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
/// \file tuklib_cpucores.c
|
/// \file tuklib_cpucores.c
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
// SPDX-License-Identifier: 0BSD
|
||||||
|
|
||||||
///////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
/// \file tuklib_cpucores.h
|
/// \file tuklib_cpucores.h
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
// SPDX-License-Identifier: 0BSD
|
||||||
|
|
||||||
///////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
/// \file tuklib_exit.c
|
/// \file tuklib_exit.c
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
// SPDX-License-Identifier: 0BSD
|
||||||
|
|
||||||
///////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
/// \file tuklib_exit.h
|
/// \file tuklib_exit.h
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
// SPDX-License-Identifier: 0BSD
|
||||||
|
|
||||||
///////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
/// \file tuklib_gettext.h
|
/// \file tuklib_gettext.h
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
// SPDX-License-Identifier: 0BSD
|
||||||
|
|
||||||
///////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
/// \file tuklib_integer.h
|
/// \file tuklib_integer.h
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
// SPDX-License-Identifier: 0BSD
|
||||||
|
|
||||||
///////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
/// \file tuklib_mbstr.h
|
/// \file tuklib_mbstr.h
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
// SPDX-License-Identifier: 0BSD
|
||||||
|
|
||||||
///////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
/// \file tuklib_mbstr_fw.c
|
/// \file tuklib_mbstr_fw.c
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
// SPDX-License-Identifier: 0BSD
|
||||||
|
|
||||||
///////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
/// \file tuklib_mbstr_width.c
|
/// \file tuklib_mbstr_width.c
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
// SPDX-License-Identifier: 0BSD
|
||||||
|
|
||||||
///////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
/// \file tuklib_open_stdxxx.c
|
/// \file tuklib_open_stdxxx.c
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
// SPDX-License-Identifier: 0BSD
|
||||||
|
|
||||||
///////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
/// \file tuklib_open_stdxxx.h
|
/// \file tuklib_open_stdxxx.h
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
// SPDX-License-Identifier: 0BSD
|
||||||
|
|
||||||
///////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
/// \file tuklib_physmem.c
|
/// \file tuklib_physmem.c
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
// SPDX-License-Identifier: 0BSD
|
||||||
|
|
||||||
///////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
/// \file tuklib_physmem.h
|
/// \file tuklib_physmem.h
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
// SPDX-License-Identifier: 0BSD
|
||||||
|
|
||||||
///////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
/// \file tuklib_progname.c
|
/// \file tuklib_progname.c
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
// SPDX-License-Identifier: 0BSD
|
||||||
|
|
||||||
///////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
/// \file tuklib_progname.h
|
/// \file tuklib_progname.h
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
##
|
## SPDX-License-Identifier: 0BSD
|
||||||
## Author: Lasse Collin
|
## Author: Lasse Collin
|
||||||
##
|
|
||||||
|
|
||||||
SUBDIRS = api
|
SUBDIRS = api
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
##
|
## SPDX-License-Identifier: 0BSD
|
||||||
## Author: Lasse Collin
|
## Author: Lasse Collin
|
||||||
##
|
|
||||||
|
|
||||||
nobase_include_HEADERS = \
|
nobase_include_HEADERS = \
|
||||||
lzma.h \
|
lzma.h \
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
/* SPDX-License-Identifier: 0BSD */
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* \file api/lzma.h
|
* \file api/lzma.h
|
||||||
* \brief The public API of liblzma data compression library
|
* \brief The public API of liblzma data compression library
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
/* SPDX-License-Identifier: 0BSD */
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* \file lzma/base.h
|
* \file lzma/base.h
|
||||||
* \brief Data types and functions used in many places in liblzma API
|
* \brief Data types and functions used in many places in liblzma API
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
/* SPDX-License-Identifier: 0BSD */
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* \file lzma/bcj.h
|
* \file lzma/bcj.h
|
||||||
* \brief Branch/Call/Jump conversion filters
|
* \brief Branch/Call/Jump conversion filters
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
/* SPDX-License-Identifier: 0BSD */
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* \file lzma/block.h
|
* \file lzma/block.h
|
||||||
* \brief .xz Block handling
|
* \brief .xz Block handling
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
/* SPDX-License-Identifier: 0BSD */
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* \file lzma/check.h
|
* \file lzma/check.h
|
||||||
* \brief Integrity checks
|
* \brief Integrity checks
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
/* SPDX-License-Identifier: 0BSD */
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* \file lzma/container.h
|
* \file lzma/container.h
|
||||||
* \brief File formats
|
* \brief File formats
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
/* SPDX-License-Identifier: 0BSD */
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* \file lzma/delta.h
|
* \file lzma/delta.h
|
||||||
* \brief Delta filter
|
* \brief Delta filter
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
/* SPDX-License-Identifier: 0BSD */
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* \file lzma/filter.h
|
* \file lzma/filter.h
|
||||||
* \brief Common filter related types and functions
|
* \brief Common filter related types and functions
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
/* SPDX-License-Identifier: 0BSD */
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* \file lzma/hardware.h
|
* \file lzma/hardware.h
|
||||||
* \brief Hardware information
|
* \brief Hardware information
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
/* SPDX-License-Identifier: 0BSD */
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* \file lzma/index.h
|
* \file lzma/index.h
|
||||||
* \brief Handling of .xz Index and related information
|
* \brief Handling of .xz Index and related information
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
/* SPDX-License-Identifier: 0BSD */
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* \file lzma/index_hash.h
|
* \file lzma/index_hash.h
|
||||||
* \brief Validate Index by using a hash function
|
* \brief Validate Index by using a hash function
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
/* SPDX-License-Identifier: 0BSD */
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* \file lzma/lzma12.h
|
* \file lzma/lzma12.h
|
||||||
* \brief LZMA1 and LZMA2 filters
|
* \brief LZMA1 and LZMA2 filters
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
/* SPDX-License-Identifier: 0BSD */
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* \file lzma/stream_flags.h
|
* \file lzma/stream_flags.h
|
||||||
* \brief .xz Stream Header and Stream Footer encoder and decoder
|
* \brief .xz Stream Header and Stream Footer encoder and decoder
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
/* SPDX-License-Identifier: 0BSD */
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* \file lzma/version.h
|
* \file lzma/version.h
|
||||||
* \brief Version number
|
* \brief Version number
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
/* SPDX-License-Identifier: 0BSD */
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* \file lzma/vli.h
|
* \file lzma/vli.h
|
||||||
* \brief Variable-length integer handling
|
* \brief Variable-length integer handling
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
##
|
## SPDX-License-Identifier: 0BSD
|
||||||
## Author: Lasse Collin
|
## Author: Lasse Collin
|
||||||
##
|
|
||||||
## Note: There is no check for COND_CHECK_CRC32 because
|
## Note: There is no check for COND_CHECK_CRC32 because
|
||||||
## currently crc32 is always enabled.
|
## currently crc32 is always enabled.
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
// SPDX-License-Identifier: 0BSD
|
||||||
|
|
||||||
///////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
/// \file check.c
|
/// \file check.c
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
// SPDX-License-Identifier: 0BSD
|
||||||
|
|
||||||
///////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
/// \file check.h
|
/// \file check.h
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
// SPDX-License-Identifier: 0BSD
|
||||||
|
|
||||||
///////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
/// \file crc32_arm64.h
|
/// \file crc32_arm64.h
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
// SPDX-License-Identifier: 0BSD
|
||||||
|
|
||||||
///////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
/// \file crc32.c
|
/// \file crc32.c
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
// SPDX-License-Identifier: 0BSD
|
||||||
|
|
||||||
///////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
/// \file crc32_small.c
|
/// \file crc32_small.c
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
// SPDX-License-Identifier: 0BSD
|
||||||
|
|
||||||
///////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
/// \file crc32_table.c
|
/// \file crc32_table.c
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
// SPDX-License-Identifier: 0BSD
|
||||||
|
|
||||||
///////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
/// \file crc32_tablegen.c
|
/// \file crc32_tablegen.c
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
/* SPDX-License-Identifier: 0BSD */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Speed-optimized CRC32 using slicing-by-eight algorithm
|
* Speed-optimized CRC32 using slicing-by-eight algorithm
|
||||||
*
|
*
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
// SPDX-License-Identifier: 0BSD
|
||||||
|
|
||||||
///////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
/// \file crc64.c
|
/// \file crc64.c
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
// SPDX-License-Identifier: 0BSD
|
||||||
|
|
||||||
///////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
/// \file crc64_small.c
|
/// \file crc64_small.c
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
// SPDX-License-Identifier: 0BSD
|
||||||
|
|
||||||
///////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
/// \file crc64_table.c
|
/// \file crc64_table.c
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
// SPDX-License-Identifier: 0BSD
|
||||||
|
|
||||||
///////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
/// \file crc64_tablegen.c
|
/// \file crc64_tablegen.c
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
/* SPDX-License-Identifier: 0BSD */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Speed-optimized CRC64 using slicing-by-four algorithm
|
* Speed-optimized CRC64 using slicing-by-four algorithm
|
||||||
*
|
*
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
// SPDX-License-Identifier: 0BSD
|
||||||
|
|
||||||
///////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
/// \file crc_common.h
|
/// \file crc_common.h
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
// SPDX-License-Identifier: 0BSD
|
||||||
|
|
||||||
///////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
/// \file crc_x86_clmul.h
|
/// \file crc_x86_clmul.h
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
// SPDX-License-Identifier: 0BSD
|
||||||
|
|
||||||
///////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
/// \file sha256.c
|
/// \file sha256.c
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue