Skip to content

Commit e30b5ac

Browse files
committed
removing freebsd 11 EOL proposal.
1 parent da4f8f8 commit e30b5ac

File tree

8 files changed

+9
-627
lines changed

8 files changed

+9
-627
lines changed

build.rs

+1-8
Original file line numberDiff line numberDiff line change
@@ -19,20 +19,13 @@ fn main() {
1919
);
2020
}
2121

22-
// The ABI of libc used by libstd is backward compatible with FreeBSD 10.
23-
// The ABI of libc from crates.io is backward compatible with FreeBSD 11.
24-
//
2522
// On CI, we detect the actual FreeBSD version and match its ABI exactly,
2623
// running tests to ensure that the ABI is correct.
2724
match which_freebsd() {
28-
Some(10) if libc_ci || rustc_dep_of_std => {
29-
println!("cargo:rustc-cfg=freebsd10")
30-
}
31-
Some(11) if libc_ci => println!("cargo:rustc-cfg=freebsd11"),
3225
Some(12) if libc_ci => println!("cargo:rustc-cfg=freebsd12"),
3326
Some(13) if libc_ci => println!("cargo:rustc-cfg=freebsd13"),
3427
Some(14) if libc_ci => println!("cargo:rustc-cfg=freebsd14"),
35-
Some(_) | None => println!("cargo:rustc-cfg=freebsd11"),
28+
Some(_) | None => println!("cargo:rustc-cfg=freebsd12"),
3629
}
3730

3831
// On CI: deny all warnings

ci/dox.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ while read -r target; do
4747
rustup target add "${target}" || true
4848

4949
# Enable extra configuration flags:
50-
export RUSTDOCFLAGS="--cfg freebsd11"
50+
export RUSTDOCFLAGS="--cfg freebsd12"
5151

5252
# If cargo doc fails, then try with unstable feature:
5353
if ! cargo doc --target "${target}" \

src/unix/bsd/freebsdlike/freebsd/freebsd11/b64.rs

-32
This file was deleted.

0 commit comments

Comments
 (0)