diff options
Diffstat (limited to 'copypasta/src')
-rw-r--r-- | copypasta/src/lib.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/copypasta/src/lib.rs b/copypasta/src/lib.rs index 74e556a9..2857ce82 100644 --- a/copypasta/src/lib.rs +++ b/copypasta/src/lib.rs @@ -63,9 +63,9 @@ pub trait Store : Load { } } -#[cfg(any(target_os = "linux", target_os = "freebsd"))] +#[cfg(any(target_os = "linux", target_os = "freebsd", target_os = "openbsd"))] mod x11; -#[cfg(any(target_os = "linux", target_os = "freebsd"))] +#[cfg(any(target_os = "linux", target_os = "freebsd", target_os = "openbsd"))] pub use x11::{Clipboard, Error}; #[cfg(target_os = "macos")] |