// surfman/surfman/src/platform/unix/mod.rs
////! Backends specific to Unix-like systems, particularly Linux.
// The default when x11 is enabled, and wayland default is not explicitly selected.
#[cfg(all(x11_platform,not(wayland_default)))]pubmoddefault;#[cfg(wayland_default)]pubuse wayland as default;#[cfg(free_unix)]pubmodgeneric;#[cfg(wayland_platform)]pubmodwayland;#[cfg(x11_platform)]pubmodx11;