Skip to content

Commit 33817d4

Browse files
authored
Add FreeBSD support (#102)
1 parent 6d17141 commit 33817d4

File tree

4 files changed

+28
-0
lines changed

4 files changed

+28
-0
lines changed

src/v4l2/api.rs

+9
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@ mod detail {
6666
pub unsafe fn close(fd: std::os::raw::c_int) -> std::os::raw::c_int {
6767
libc::close(fd)
6868
}
69+
#[cfg(any(target_os = "linux", target_os = "android"))]
6970
pub unsafe fn ioctl(
7071
fd: std::os::raw::c_int,
7172
request: vidioc::_IOC_TYPE,
@@ -80,6 +81,14 @@ mod detail {
8081
*/
8182
libc::syscall(libc::SYS_ioctl, fd, request, argp) as std::os::raw::c_int
8283
}
84+
#[cfg(target_os = "freebsd")]
85+
pub unsafe fn ioctl(
86+
fd: std::os::raw::c_int,
87+
request: vidioc::_IOC_TYPE,
88+
argp: *mut std::os::raw::c_void,
89+
) -> std::os::raw::c_int {
90+
libc::ioctl(fd, request, argp)
91+
}
8392
pub unsafe fn mmap(
8493
start: *mut std::os::raw::c_void,
8594
length: usize,

src/v4l2/vidioc.rs

+8
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,16 @@ const _IOC_SIZESHIFT: u8 = _IOC_TYPESHIFT + _IOC_TYPEBITS;
1919
const _IOC_DIRSHIFT: u8 = _IOC_SIZESHIFT + _IOC_SIZEBITS;
2020

2121
const _IOC_NONE: u8 = 0;
22+
23+
#[cfg(any(target_os = "linux", target_os = "android"))]
2224
const _IOC_WRITE: u8 = 1;
25+
#[cfg(target_os = "freebsd")]
26+
const _IOC_WRITE: u8 = 2;
27+
28+
#[cfg(any(target_os = "linux", target_os = "android"))]
2329
const _IOC_READ: u8 = 2;
30+
#[cfg(target_os = "freebsd")]
31+
const _IOC_READ: u8 = 1;
2432

2533
macro_rules! _IOC_TYPECHECK {
2634
($type:ty) => {

v4l2-sys/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,4 @@ build = "build.rs"
99

1010
[build-dependencies]
1111
bindgen = "0.69.1"
12+
pkg-config = "0.3.30"

v4l2-sys/build.rs

+10
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,18 @@ use std::env;
44
use std::path::PathBuf;
55

66
fn main() {
7+
let pkg_conf = pkg_config::Config::new()
8+
.probe("libv4l2")
9+
.expect("pkg-config has failed to find `libv4l2`");
10+
711
let bindings = bindgen::Builder::default()
812
.header("wrapper.h")
13+
.clang_args(
14+
pkg_conf
15+
.include_paths
16+
.into_iter()
17+
.map(|path| format!("-I{}", path.to_string_lossy())),
18+
)
919
.generate()
1020
.expect("Failed to generate bindings");
1121

0 commit comments

Comments
 (0)