5f1ea4eb6f
Adding this comment to explain the behavior: This macro may not do what you expect. Weston doesn't guarantee any stable API between 1.X and 1.Y, and thus this macro will return FALSE on any WESTON_VERSION_AT_LEAST(1,X,0) if the actualy version is 1.Y.0 and X !=Y). In particular, it fail if X < Y, that is, 1.3.0 is considered to not be "at least" 1.4.0. If you want to test for the version number being 1.3.0 or above or maybe in a range (eg 1.2.0 to 1.4.0), just use the WESTON_VERSION_* defines above directly. Version number testing is the one thing we can't break in the weston API, so we'll have to settle for documenting the behavior and recommending using the version number macros directly. https://bugs.freedesktop.org/show_bug.cgi?id=74023 |
||
---|---|---|
clients | ||
data | ||
desktop-shell | ||
man | ||
protocol | ||
shared | ||
src | ||
tests | ||
wcap | ||
xwayland | ||
.gitignore | ||
autogen.sh | ||
configure.ac | ||
COPYING | ||
Makefile.am | ||
notes.txt | ||
README | ||
wayland-scanner.mk | ||
weston.ini.in |
Weston Weston is the reference implementation of a Wayland compositor, and a useful compositor in its own right. Weston has various backends that lets it run on Linux kernel modesetting and evdev input as well as under X11. Weston ships with a few example clients, from simple clients that demonstrate certain aspects of the protocol to more complete clients and a simplistic toolkit. There is also a quite capable terminal emulator (weston-terminal) and an toy/example desktop shell. Finally, weston also provides integration with the Xorg server and can pull X clients into the Wayland desktop and act as a X window manager. Refer to http://wayland.freedesktop.org/building.html for buiding weston and its dependencies.