Skip to content

Commit 97679d2

Browse files
LarhzuJiaT75
authored andcommitted
Change a few HTTP URLs to HTTPS.
The xz man page timestamp was intentionally left unchanged.
1 parent 01a67e8 commit 97679d2

File tree

8 files changed

+19
-19
lines changed

8 files changed

+19
-19
lines changed

INSTALL

+1-1
Original file line numberDiff line numberDiff line change
@@ -596,7 +596,7 @@ XZ Utils Installation
596596
a fallback xzdiff will use mkdir to securely create a temporary
597597
directory. Having mktemp available is still recommended since the
598598
mkdir fallback method isn't as robust as mktemp is. The original
599-
mktemp can be found from <http://www.mktemp.org/>. On GNU, most will
599+
mktemp can be found from <https://www.mktemp.org/>. On GNU, most will
600600
use the mktemp program from GNU coreutils instead of the original
601601
implementation. Both mktemp versions are fine.
602602

README

+4-4
Original file line numberDiff line numberDiff line change
@@ -113,8 +113,8 @@ XZ Utils
113113
Since the liblzma API has similarities to the zlib API, some people
114114
may find it useful to read the zlib docs and tutorial too:
115115

116-
http://zlib.net/manual.html
117-
http://zlib.net/zlib_how.html
116+
https://zlib.net/manual.html
117+
https://zlib.net/zlib_how.html
118118

119119

120120
2. Version numbering
@@ -281,8 +281,8 @@ XZ Utils
281281
7-Zip and the p7zip port of 7-Zip support the .xz format starting
282282
from the version 9.00alpha.
283283

284-
http://7-zip.org/
285-
http://p7zip.sourceforge.net/
284+
https://7-zip.org/
285+
https://p7zip.sourceforge.net/
286286

287287
XZ Embedded is a limited implementation written for use in the Linux
288288
kernel, but it is also suitable for other embedded use.

configure.ac

+1-1
Original file line numberDiff line numberDiff line change
@@ -596,7 +596,7 @@ echo "Initializing Automake:"
596596

597597
# We don't use "subdir-objects" yet because it breaks "make distclean" when
598598
# dependencies are enabled (as of Automake 1.14.1) due to this bug:
599-
# http://debbugs.gnu.org/cgi/bugreport.cgi?bug=17354
599+
# https://debbugs.gnu.org/cgi/bugreport.cgi?bug=17354
600600
# The -Wno-unsupported is used to silence warnings about missing
601601
# "subdir-objects".
602602
AM_INIT_AUTOMAKE([1.12 foreign tar-v7 filename-length-max=99 -Wno-unsupported])

dos/INSTALL.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@ Introduction
1717

1818
Getting and Installing DJGPP
1919

20-
You may use <http://www.delorie.com/djgpp/zip-picker.html> to help
20+
You may use <https://www.delorie.com/djgpp/zip-picker.html> to help
2121
deciding what to download. If you are only interested in building
2222
XZ Utils, the zip-picker may list files that you don't strictly
2323
need. However, using the zip-picker can still be worth it to get a
2424
nice short summary of installation instructions (they can be found
2525
from readme.1st too).
2626

2727
For a more manual method, first select a mirror from
28-
<http://www.delorie.com/djgpp/getting.html> and go the
28+
<https://www.delorie.com/djgpp/getting.html> and go the
2929
subdirectory named "current". You need the following files:
3030

3131
unzip32.exe (if you don't already have a LFN-capable unzipper)

src/liblzma/api/lzma.h

+4-4
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,16 @@
88
* format and raw (no headers) streams are supported. Multiple compression
99
* algorithms (filters) are supported. Currently LZMA2 is the primary filter.
1010
*
11-
* liblzma is part of XZ Utils <http://tukaani.org/xz/>. XZ Utils includes
11+
* liblzma is part of XZ Utils <https://tukaani.org/xz/>. XZ Utils includes
1212
* a gzip-like command line tool named xz and some other tools. XZ Utils
1313
* is developed and maintained by Lasse Collin.
1414
*
1515
* Major parts of liblzma are based on Igor Pavlov's public domain LZMA SDK
16-
* <http://7-zip.org/sdk.html>.
16+
* <https://7-zip.org/sdk.html>.
1717
*
1818
* The SHA-256 implementation is based on the public domain code found from
19-
* 7-Zip <http://7-zip.org/>, which has a modified version of the public
20-
* domain SHA-256 code found from Crypto++ <http://www.cryptopp.com/>.
19+
* 7-Zip <https://7-zip.org/>, which has a modified version of the public
20+
* domain SHA-256 code found from Crypto++ <https://www.cryptopp.com/>.
2121
* The SHA-256 code in Crypto++ was written by Kevin Springle and Wei Dai.
2222
*/
2323

src/liblzma/check/sha256.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
/// conditionally to keep the code working on older boxes.
99
//
1010
// This code is based on the code found from 7-Zip, which has a modified
11-
// version of the SHA-256 found from Crypto++ <http://www.cryptopp.com/>.
11+
// version of the SHA-256 found from Crypto++ <https://www.cryptopp.com/>.
1212
// The code was modified a little to fit into liblzma.
1313
//
1414
// Authors: Kevin Springle

src/xz/xz.1

+1-1
Original file line numberDiff line numberDiff line change
@@ -3017,4 +3017,4 @@ XZ Utils: <https://tukaani.org/xz/>
30173017
.br
30183018
XZ Embedded: <https://tukaani.org/xz/embedded.html>
30193019
.br
3020-
LZMA SDK: <http://7-zip.org/sdk.html>
3020+
LZMA SDK: <https://7-zip.org/sdk.html>

windows/INSTALL-MinGW.txt

+5-5
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Installing the toolchain(s)
3232
So you need to pick between MinGW and MinGW-w32 when building
3333
32-bit version. You don't need both.
3434

35-
You might find 7-Zip <http://7-zip.org/> handy when extracting
35+
You might find 7-Zip <https://7-zip.org/> handy when extracting
3636
some files. The ready-made build script build.bash will also use
3737
7-Zip to create the distributable .zip and .7z files.
3838

@@ -50,7 +50,7 @@ Installing MSYS
5050

5151
You can download MSYS from MinGW's Sourceforge page:
5252

53-
http://sourceforge.net/projects/mingw/files/MSYS/Base/msys-core/
53+
https://sourceforge.net/projects/mingw/files/MSYS/Base/msys-core/
5454

5555
I recommend using MSYS 1.0.11 (MSYS-1.0.11.exe or
5656
msysCORE-1.0.11-bin.tar.gz) because that package includes all the
@@ -69,7 +69,7 @@ Installing MinGW
6969

7070
You can download the required packages from MinGW's Sourceforge page:
7171

72-
http://sourceforge.net/projects/mingw/files/
72+
https://sourceforge.net/projects/mingw/files/
7373

7474
These version numbers were the latest when I wrote this document, but
7575
you probably should pick the latest versions:
@@ -94,9 +94,9 @@ Installing MinGW-w32 or MinGW-w64
9494
toolchain. For XZ Utils 5.2.0 I used the packages from these
9595
directories:
9696

97-
http://sourceforge.net/projects/mingw-w64/files/Toolchains%20targetting%20Win32/Personal%20Builds/mingw-builds/4.9.2/threads-win32/sjlj/
97+
https://sourceforge.net/projects/mingw-w64/files/Toolchains%20targetting%20Win32/Personal%20Builds/mingw-builds/4.9.2/threads-win32/sjlj/
9898

99-
http://sourceforge.net/projects/mingw-w64/files/Toolchains%20targetting%20Win64/Personal%20Builds/mingw-builds/4.9.2/threads-win32/sjlj/
99+
https://sourceforge.net/projects/mingw-w64/files/Toolchains%20targetting%20Win64/Personal%20Builds/mingw-builds/4.9.2/threads-win32/sjlj/
100100

101101
If you install both MinGW-w32 and MinGW-w64, remember to extract
102102
them into different directories. build.bash looks at

0 commit comments

Comments
 (0)