mirror of
https://github.com/joleuger/vuinputd.git
synced 2026-07-17 16:36:03 +00:00
fix build failure with nixos libfuse3 headers
it pulls in reference to libfuse_version which is currently blacklisted
This commit is contained in:
parent
4c4fefb0c6
commit
134b41fa98
1 changed files with 2 additions and 1 deletions
|
|
@ -23,7 +23,8 @@ fn fuse_binding_filter(builder: bindgen::Builder) -> bindgen::Builder {
|
|||
.allowlist_function("(?i)^fuse.*")
|
||||
.allowlist_var("(?i)^fuse.*")
|
||||
.blocklist_type("fuse_log_func_t")
|
||||
.blocklist_function("fuse_set_log_func");
|
||||
.blocklist_function("fuse_set_log_func")
|
||||
.allowlist_type("^libfuse_version$");
|
||||
builder
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue