Skip to content

Commit 82853c6

Browse files
committedOct 30, 2022
Update URLs
1 parent d053161 commit 82853c6

7 files changed

+16
-16
lines changed
 

‎README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -135,12 +135,12 @@ required varies per platform, but there are three broad categories:
135135
the appropriate developer tools shell.
136136
* Windows platforms targeting MinGW (e.g. your target triple ends in `-gnu`)
137137
require `cc` to be available in `PATH`. We recommend the
138-
[MinGW-w64](http://mingw-w64.org) distribution, which is using the
139-
[Win-builds](http://win-builds.org) installation system.
138+
[MinGW-w64](https://www.mingw-w64.org/) distribution, which is using the
139+
[Win-builds](http://win-builds.org/) installation system.
140140
You may also acquire it via
141141
[MSYS2](https://www.msys2.org/), as explained [here][msys2-help]. Make sure
142142
to install the appropriate architecture corresponding to your installation of
143-
rustc. GCC from older [MinGW](http://www.mingw.org) project is compatible
143+
rustc. GCC from older [MinGW](http://www.mingw.org/) project is compatible
144144
only with 32-bit rust compiler.
145145

146146
[msys2-help]: https://github.com/rust-lang/rust#building-on-windows

‎src/com.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright © 2017 winapi-rs developers
22
// Licensed under the Apache License, Version 2.0
3-
// <LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
4-
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your option.
3+
// <LICENSE-APACHE or https://www.apache.org/licenses/LICENSE-2.0> or the MIT license
4+
// <LICENSE-MIT or https://opensource.org/licenses/MIT>, at your option.
55
// All files in the project carrying such notice may not be copied, modified, or distributed
66
// except according to those terms.
77

‎src/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -2227,7 +2227,7 @@ impl Build {
22272227
/*
22282228
* TODO we probably ultimately want the -fembed-bitcode-marker flag
22292229
* but can't have it now because of an issue in LLVM:
2230-
* https://github.com/alexcrichton/cc-rs/issues/301
2230+
* https://github.com/rust-lang/cc-rs/issues/301
22312231
* https://github.com/rust-lang/rust/pull/48896#comment-372192660
22322232
*/
22332233
/*
@@ -3261,7 +3261,7 @@ fn spawn(cmd: &mut Command, program: &str) -> Result<(Child, JoinHandle<()>), Er
32613261
}
32623262
Err(ref e) if e.kind() == io::ErrorKind::NotFound => {
32633263
let extra = if cfg!(windows) {
3264-
" (see https://github.com/alexcrichton/cc-rs#compile-time-requirements \
3264+
" (see https://github.com/rust-lang/cc-rs#compile-time-requirements \
32653265
for help)"
32663266
} else {
32673267
""

‎src/registry.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
// http://rust-lang.org/COPYRIGHT.
44
//
55
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6-
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7-
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
6+
// https://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7+
// <LICENSE-MIT or https://opensource.org/licenses/MIT>, at your
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

‎src/setup_config.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright © 2017 winapi-rs developers
22
// Licensed under the Apache License, Version 2.0
3-
// <LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
4-
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your option.
3+
// <LICENSE-APACHE or https://www.apache.org/licenses/LICENSE-2.0> or the MIT license
4+
// <LICENSE-MIT or https://opensource.org/licenses/MIT>, at your option.
55
// All files in the project carrying such notice may not be copied, modified, or distributed
66
// except according to those terms.
77

‎src/winapi.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright © 2015-2017 winapi-rs developers
22
// Licensed under the Apache License, Version 2.0
3-
// <LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
4-
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your option.
3+
// <LICENSE-APACHE or https://www.apache.org/licenses/LICENSE-2.0> or the MIT license
4+
// <LICENSE-MIT or https://opensource.org/licenses/MIT>, at your option.
55
// All files in the project carrying such notice may not be copied, modified, or distributed
66
// except according to those terms.
77

‎src/windows_registry.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
// http://rust-lang.org/COPYRIGHT.
44
//
55
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6-
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7-
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
6+
// https://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7+
// <LICENSE-MIT or https://opensource.org/licenses/MIT>, at your
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

@@ -393,7 +393,7 @@ mod impl_ {
393393
// according to Microsoft. To help head off potential regressions though,
394394
// we keep the registry method as a fallback option.
395395
//
396-
// [more reliable]: https://github.com/alexcrichton/cc-rs/pull/331
396+
// [more reliable]: https://github.com/rust-lang/cc-rs/pull/331
397397
fn find_tool_in_vs15_path(tool: &str, target: &str) -> Option<Tool> {
398398
let mut path = match vs15plus_instances(target) {
399399
Some(instances) => instances

0 commit comments

Comments
 (0)
Please sign in to comment.