Skip to content

Commit f69c838

Browse files
dannycjonescberner
authored andcommitted
Remove target OS 'bitrig' which is unsupported by Rust
Signed-off-by: Daniel Carl Jones <[email protected]>
1 parent 67a25df commit f69c838

File tree

4 files changed

+0
-5
lines changed

4 files changed

+0
-5
lines changed

src/mnt/fuse2.rs

-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,6 @@ impl Drop for Mount {
5555
target_os = "freebsd",
5656
target_os = "dragonfly",
5757
target_os = "openbsd",
58-
target_os = "bitrig",
5958
target_os = "netbsd"
6059
)))]
6160
unsafe {

src/mnt/fuse2_sys.rs

-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ extern "C" {
2727
target_os = "freebsd",
2828
target_os = "dragonfly",
2929
target_os = "openbsd",
30-
target_os = "bitrig",
3130
target_os = "netbsd"
3231
)))]
3332
pub fn fuse_unmount_compat22(mountpoint: *const c_char);

src/mnt/fuse_pure.rs

-1
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,6 @@ fn receive_fusermount_message(socket: &UnixStream) -> Result<File, Error> {
178178
target_os = "freebsd",
179179
target_os = "dragonfly",
180180
target_os = "openbsd",
181-
target_os = "bitrig",
182181
target_os = "netbsd"
183182
))]
184183
{

src/mnt/mod.rs

-2
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,6 @@ fn libc_umount(mnt: &CStr) -> io::Result<()> {
6464
target_os = "freebsd",
6565
target_os = "dragonfly",
6666
target_os = "openbsd",
67-
target_os = "bitrig",
6867
target_os = "netbsd"
6968
))]
7069
let r = unsafe { libc::unmount(mnt.as_ptr(), 0) };
@@ -74,7 +73,6 @@ fn libc_umount(mnt: &CStr) -> io::Result<()> {
7473
target_os = "freebsd",
7574
target_os = "dragonfly",
7675
target_os = "openbsd",
77-
target_os = "bitrig",
7876
target_os = "netbsd"
7977
)))]
8078
let r = unsafe { libc::umount(mnt.as_ptr()) };

0 commit comments

Comments
 (0)