Skip to content

Commit 2e33c9c

Browse files
authored
Convert some user-facing legacy http URLs to https (#5073)
1 parent e87ace5 commit 2e33c9c

6 files changed

Lines changed: 7 additions & 7 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,8 @@ the full feature set of official packages from GitHub**):
7171

7272
In-depth material on building and installing LDC and the standard
7373
libraries is available on the project wiki for
74-
[Linux, macOS, BSD, and Android](http://wiki.dlang.org/Building_LDC_from_source) and
75-
[Windows](http://wiki.dlang.org/Building_and_hacking_LDC_on_Windows_using_MSVC).
74+
[Linux, macOS, BSD, and Android](https://wiki.dlang.org/Building_LDC_from_source) and
75+
[Windows](https://wiki.dlang.org/Building_and_hacking_LDC_on_Windows_using_MSVC).
7676

7777
If you have a working C++/D build environment, CMake, and a recent LLVM
7878
version (≥ 15) available, there should be no big surprises. Do not

driver/ldmd.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -739,7 +739,7 @@ void translateArgs(const llvm::SmallVectorImpl<const char *> &ldmdArgs,
739739
* -main
740740
*/
741741
else if (startsWith(p + 1, "man")) {
742-
browse("http://wiki.dlang.org/LDC");
742+
browse("https://wiki.dlang.org/LDC");
743743
exit(EXIT_SUCCESS);
744744
} else if (strcmp(p + 1, "run") == 0) {
745745
ldcArgs.insert(ldcArgs.end(), args.begin() + i, args.end());

driver/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ void printVersion(llvm::raw_ostream &OS) {
144144
CPU = "(unknown)";
145145
}
146146
OS << " Host CPU: " << CPU << "\n";
147-
OS << " http://dlang.org - http://wiki.dlang.org/LDC\n";
147+
OS << " https://dlang.org - https://wiki.dlang.org/LDC\n";
148148
OS << "\n";
149149

150150
// Without explicitly flushing here, only the target list is visible when

packaging/README

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ to your liking, e.g., adding implicit command-line options and setting up cross-
1010
compilation.
1111

1212
For further information, including on how to report bugs, please refer to the
13-
LDC wiki: http://wiki.dlang.org/LDC.
13+
LDC wiki: https://wiki.dlang.org/LDC.

packaging/README.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,4 @@ static libraries from a Visual C++ toolchain, which cannot be bundled with
2626
https://github.com/ldc-developers/mingw-w64-libs for details.
2727

2828
For further information, including on how to report bugs, please refer to the
29-
LDC wiki: http://wiki.dlang.org/LDC.
29+
LDC wiki: https://wiki.dlang.org/LDC.

utils/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ and testing LDC (`not` and `FileCheck`).
99
`FileCheck` is copied from LLVM, and versioned for each LLVM version that we support (for example, FileCheck-3.9.cpp does not compile with LLVM 3.5).
1010
Older versions of FileCheck contain modifications such that they contain new features/bugfixes but still compile with older LLVM versions.
1111

12-
How `not` and `FileCheck` are used is decribed here: [LDC Lit-based testsuite](http://wiki.dlang.org/?title=LDC_Lit-based_testsuite).
12+
How `not` and `FileCheck` are used is decribed here: [LDC Lit-based testsuite](https://wiki.dlang.org/?title=LDC_Lit-based_testsuite).

0 commit comments

Comments
 (0)