Skip to content

Commit

Permalink
Remove bitrig support
Browse files Browse the repository at this point in the history
  • Loading branch information
gnzlbg committed May 16, 2019
1 parent 9183c00 commit 77a4683
Show file tree
Hide file tree
Showing 8 changed files with 4 additions and 152 deletions.
1 change: 0 additions & 1 deletion ci/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,6 @@ thumbv7neon-linux-androideabi \
thumbv7neon-unknown-linux-gnueabihf \
thumbv8m.main-none-eabi \
x86_64-pc-windows-msvc
x86_64-unknown-bitrig \
x86_64-unknown-dragonfly \
x86_64-unknown-haiku \
x86_64-unknown-hermit \
Expand Down
3 changes: 1 addition & 2 deletions src/unix/bsd/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -663,8 +663,7 @@ cfg_if! {
if #[cfg(any(target_os = "macos", target_os = "ios"))] {
mod apple;
pub use self::apple::*;
} else if #[cfg(any(target_os = "openbsd", target_os = "netbsd",
target_os = "bitrig"))] {
} else if #[cfg(any(target_os = "openbsd", target_os = "netbsd"))] {
mod netbsdlike;
pub use self::netbsdlike::*;
} else if #[cfg(any(target_os = "freebsd", target_os = "dragonfly"))] {
Expand Down
2 changes: 1 addition & 1 deletion src/unix/bsd/netbsdlike/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -676,7 +676,7 @@ cfg_if! {
if #[cfg(target_os = "netbsd")] {
mod netbsd;
pub use self::netbsd::*;
} else if #[cfg(any(target_os = "openbsd", target_os = "bitrig"))] {
} else if #[cfg(target_os = "openbsd")] {
mod openbsdlike;
pub use self::openbsdlike::*;
} else {
Expand Down
129 changes: 0 additions & 129 deletions src/unix/bsd/netbsdlike/openbsdlike/bitrig/mod.rs

This file was deleted.

2 changes: 0 additions & 2 deletions src/unix/bsd/netbsdlike/openbsdlike/bitrig/x86.rs

This file was deleted.

10 changes: 0 additions & 10 deletions src/unix/bsd/netbsdlike/openbsdlike/bitrig/x86_64.rs

This file was deleted.

3 changes: 0 additions & 3 deletions src/unix/bsd/netbsdlike/openbsdlike/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -939,9 +939,6 @@ cfg_if! {
if #[cfg(target_os = "openbsd")] {
mod openbsd;
pub use self::openbsd::*;
} else if #[cfg(target_os = "bitrig")] {
mod bitrig;
pub use self::bitrig::*;
} else {
// Unknown target_os
}
Expand Down
6 changes: 2 additions & 4 deletions src/unix/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -327,8 +327,7 @@ cfg_if! {
} else if #[cfg(any(target_os = "macos",
target_os = "ios",
target_os = "android",
target_os = "openbsd",
target_os = "bitrig"))] {
target_os = "openbsd"))] {
#[link(name = "c")]
#[link(name = "m")]
extern {}
Expand Down Expand Up @@ -1158,8 +1157,7 @@ cfg_if! {
target_os = "freebsd",
target_os = "dragonfly",
target_os = "openbsd",
target_os = "netbsd",
target_os = "bitrig"))] {
target_os = "netbsd"))] {
mod bsd;
pub use self::bsd::*;
} else if #[cfg(any(target_os = "solaris",
Expand Down

0 comments on commit 77a4683

Please sign in to comment.