fix: SMB support for MacOS with vendored build of libsmbclient.

closes #334
This commit is contained in:
veeso
2025-09-20 18:07:26 +02:00
parent 3c79e812eb
commit 86660a0cc9
5 changed files with 56 additions and 6 deletions

View File

@@ -10,8 +10,8 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
posix: { target_family = "unix" },
win: { target_family = "windows" },
// exclusive features
smb: { all(feature = "smb", not( macos )) },
smb_unix: { all(unix, feature = "smb", not(macos)) },
smb: { feature = "smb" },
smb_unix: { all(unix, feature = "smb") },
smb_windows: { all(windows, feature = "smb") }
}