mirror of
https://git.tukaani.org/xz.git
synced 2024-04-04 12:36:23 +02:00
Update the home page URLs to HTTPS.
This commit is contained in:
parent
2a4b2fa75d
commit
70f4792119
10 changed files with 14 additions and 14 deletions
2
COPYING
2
COPYING
|
@ -47,7 +47,7 @@ XZ Utils Licensing
|
||||||
naturally it is not legally required. Here is an example of a good
|
naturally it is not legally required. Here is an example of a good
|
||||||
notice to put into "about box" or into documentation:
|
notice to put into "about box" or into documentation:
|
||||||
|
|
||||||
This software includes code from XZ Utils <http://tukaani.org/xz/>.
|
This software includes code from XZ Utils <https://tukaani.org/xz/>.
|
||||||
|
|
||||||
The following license texts are included in the following files:
|
The following license texts are included in the following files:
|
||||||
- COPYING.LGPLv2.1: GNU Lesser General Public License version 2.1
|
- COPYING.LGPLv2.1: GNU Lesser General Public License version 2.1
|
||||||
|
|
2
README
2
README
|
@ -291,7 +291,7 @@ XZ Utils
|
||||||
XZ Embedded is a limited implementation written for use in the Linux
|
XZ Embedded is a limited implementation written for use in the Linux
|
||||||
kernel, but it is also suitable for other embedded use.
|
kernel, but it is also suitable for other embedded use.
|
||||||
|
|
||||||
http://tukaani.org/xz/embedded.html
|
https://tukaani.org/xz/embedded.html
|
||||||
|
|
||||||
|
|
||||||
6. Contact information
|
6. Contact information
|
||||||
|
|
|
@ -18,7 +18,7 @@
|
||||||
AC_PREREQ([2.64])
|
AC_PREREQ([2.64])
|
||||||
|
|
||||||
AC_INIT([XZ Utils], m4_esyscmd([/bin/sh build-aux/version.sh]),
|
AC_INIT([XZ Utils], m4_esyscmd([/bin/sh build-aux/version.sh]),
|
||||||
[lasse.collin@tukaani.org], [xz], [http://tukaani.org/xz/])
|
[lasse.collin@tukaani.org], [xz], [https://tukaani.org/xz/])
|
||||||
AC_CONFIG_SRCDIR([src/liblzma/common/common.h])
|
AC_CONFIG_SRCDIR([src/liblzma/common/common.h])
|
||||||
AC_CONFIG_AUX_DIR([build-aux])
|
AC_CONFIG_AUX_DIR([build-aux])
|
||||||
AC_CONFIG_MACRO_DIR([m4])
|
AC_CONFIG_MACRO_DIR([m4])
|
||||||
|
|
|
@ -206,7 +206,7 @@ Q: How do I build a program that needs liblzmadec (lzmadec.h)?
|
||||||
A: liblzmadec is part of LZMA Utils. XZ Utils has liblzma, but no
|
A: liblzmadec is part of LZMA Utils. XZ Utils has liblzma, but no
|
||||||
liblzmadec. The code using liblzmadec should be ported to use
|
liblzmadec. The code using liblzmadec should be ported to use
|
||||||
liblzma instead. If you cannot or don't want to do that, download
|
liblzma instead. If you cannot or don't want to do that, download
|
||||||
LZMA Utils from <http://tukaani.org/lzma/>.
|
LZMA Utils from <https://tukaani.org/lzma/>.
|
||||||
|
|
||||||
|
|
||||||
Q: The default build of liblzma is too big. How can I make it smaller?
|
Q: The default build of liblzma is too big. How can I make it smaller?
|
||||||
|
@ -220,5 +220,5 @@ A: Give --enable-small to the configure script. Use also appropriate
|
||||||
If the result is still too big, take a look at XZ Embedded. It is
|
If the result is still too big, take a look at XZ Embedded. It is
|
||||||
a separate project, which provides a limited but significantly
|
a separate project, which provides a limited but significantly
|
||||||
smaller XZ decoder implementation than XZ Utils. You can find it
|
smaller XZ decoder implementation than XZ Utils. You can find it
|
||||||
at <http://tukaani.org/xz/embedded.html>.
|
at <https://tukaani.org/xz/embedded.html>.
|
||||||
|
|
||||||
|
|
|
@ -126,7 +126,7 @@
|
||||||
#define PACKAGE_NAME "XZ Utils"
|
#define PACKAGE_NAME "XZ Utils"
|
||||||
|
|
||||||
/* Define to the home page for this package. */
|
/* Define to the home page for this package. */
|
||||||
#define PACKAGE_URL "http://tukaani.org/xz/"
|
#define PACKAGE_URL "https://tukaani.org/xz/"
|
||||||
|
|
||||||
/* The size of `size_t', as computed by sizeof. */
|
/* The size of `size_t', as computed by sizeof. */
|
||||||
#define SIZEOF_SIZE_T 4
|
#define SIZEOF_SIZE_T 4
|
||||||
|
|
|
@ -17,7 +17,7 @@
|
||||||
#define MY_VERSION LZMA_VERSION_MAJOR,LZMA_VERSION_MINOR,LZMA_VERSION_PATCH,MY_BUILD
|
#define MY_VERSION LZMA_VERSION_MAJOR,LZMA_VERSION_MINOR,LZMA_VERSION_PATCH,MY_BUILD
|
||||||
|
|
||||||
#define MY_FILENAME MY_NAME MY_SUFFIX
|
#define MY_FILENAME MY_NAME MY_SUFFIX
|
||||||
#define MY_COMPANY "The Tukaani Project <http://tukaani.org/>"
|
#define MY_COMPANY "The Tukaani Project <https://tukaani.org/>"
|
||||||
#define MY_PRODUCT PACKAGE_NAME " <" PACKAGE_URL ">"
|
#define MY_PRODUCT PACKAGE_NAME " <" PACKAGE_URL ">"
|
||||||
|
|
||||||
LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
|
LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
.\" This file has been put into the public domain.
|
.\" This file has been put into the public domain.
|
||||||
.\" You can do whatever you want with this file.
|
.\" You can do whatever you want with this file.
|
||||||
.\"
|
.\"
|
||||||
.TH XZ 1 "2015-05-11" "Tukaani" "XZ Utils"
|
.TH XZ 1 "2017-04-19" "Tukaani" "XZ Utils"
|
||||||
.
|
.
|
||||||
.SH NAME
|
.SH NAME
|
||||||
xz, unxz, xzcat, lzma, unlzma, lzcat \- Compress or decompress .xz and .lzma files
|
xz, unxz, xzcat, lzma, unlzma, lzcat \- Compress or decompress .xz and .lzma files
|
||||||
|
@ -2779,8 +2779,8 @@ have the same number of bytes per pixel.
|
||||||
.BR bzip2 (1),
|
.BR bzip2 (1),
|
||||||
.BR 7z (1)
|
.BR 7z (1)
|
||||||
.PP
|
.PP
|
||||||
XZ Utils: <http://tukaani.org/xz/>
|
XZ Utils: <https://tukaani.org/xz/>
|
||||||
.br
|
.br
|
||||||
XZ Embedded: <http://tukaani.org/xz/embedded.html>
|
XZ Embedded: <https://tukaani.org/xz/embedded.html>
|
||||||
.br
|
.br
|
||||||
LZMA SDK: <http://7-zip.org/sdk.html>
|
LZMA SDK: <http://7-zip.org/sdk.html>
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
.\" This file has been put into the public domain.
|
.\" This file has been put into the public domain.
|
||||||
.\" You can do whatever you want with this file.
|
.\" You can do whatever you want with this file.
|
||||||
.\"
|
.\"
|
||||||
.TH XZDEC 1 "2013-06-30" "Tukaani" "XZ Utils"
|
.TH XZDEC 1 "2017-04-19" "Tukaani" "XZ Utils"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
xzdec, lzmadec \- Small .xz and .lzma decompressors
|
xzdec, lzmadec \- Small .xz and .lzma decompressors
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
|
@ -143,4 +143,4 @@ decompressor, consider using XZ Embedded.
|
||||||
.SH "SEE ALSO"
|
.SH "SEE ALSO"
|
||||||
.BR xz (1)
|
.BR xz (1)
|
||||||
.PP
|
.PP
|
||||||
XZ Embedded: <http://tukaani.org/xz/embedded.html>
|
XZ Embedded: <https://tukaani.org/xz/embedded.html>
|
||||||
|
|
|
@ -7,7 +7,7 @@ Introduction
|
||||||
|
|
||||||
This package includes command line tools (xz.exe and a few others)
|
This package includes command line tools (xz.exe and a few others)
|
||||||
and the liblzma compression library from XZ Utils. You can find the
|
and the liblzma compression library from XZ Utils. You can find the
|
||||||
latest version and full source code from <http://tukaani.org/xz/>.
|
latest version and full source code from <https://tukaani.org/xz/>.
|
||||||
|
|
||||||
The parts of the XZ Utils source code, that are relevant to this
|
The parts of the XZ Utils source code, that are relevant to this
|
||||||
binary package, are in the public domain. XZ Utils have been built
|
binary package, are in the public domain. XZ Utils have been built
|
||||||
|
|
|
@ -134,7 +134,7 @@
|
||||||
#define PACKAGE_NAME "XZ Utils"
|
#define PACKAGE_NAME "XZ Utils"
|
||||||
|
|
||||||
/* Define to the home page for this package. */
|
/* Define to the home page for this package. */
|
||||||
#define PACKAGE_URL "http://tukaani.org/xz/"
|
#define PACKAGE_URL "https://tukaani.org/xz/"
|
||||||
|
|
||||||
/* The size of `size_t', as computed by sizeof. */
|
/* The size of `size_t', as computed by sizeof. */
|
||||||
#ifdef _WIN64
|
#ifdef _WIN64
|
||||||
|
|
Loading…
Reference in a new issue