diff options
| author | Linus Färnstrand <linus@mullvad.net> | 2019-04-12 11:51:19 +0200 |
|---|---|---|
| committer | Linus Färnstrand <linus@mullvad.net> | 2019-04-12 12:26:05 +0200 |
| commit | 333bcbbed79f58efa398390bcd957fc71f46d5e8 (patch) | |
| tree | a17e98f3aa04b8e4c2c1fcd82a9aacdba0306bf3 | |
| parent | 7368e09f55f5ca033bb8242737b94caf8bd03026 (diff) | |
| download | mullvadvpn-333bcbbed79f58efa398390bcd957fc71f46d5e8.tar.xz mullvadvpn-333bcbbed79f58efa398390bcd957fc71f46d5e8.zip | |
Only include subprocess module on macOS/linux
| -rw-r--r-- | talpid-core/src/routing/mod.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/talpid-core/src/routing/mod.rs b/talpid-core/src/routing/mod.rs index b2e299553f..1fdd818025 100644 --- a/talpid-core/src/routing/mod.rs +++ b/talpid-core/src/routing/mod.rs @@ -15,6 +15,7 @@ mod imp; pub use self::imp::Error; +#[cfg(any(target_os = "macos", target_os = "linux"))] mod subprocess; /// A single route |
