Go to file
Bryce Harrington 430aee1c23 weston-launch: Drop redundant exit()
error(1, ...) already will exit, per man page: "If status has a nonzero
value, then error() calls exit(3) to terminate the program using the
given value as the exit status."  So exit(EXIT_FAILURE) is never
reached.

The EXIT_FAILURE macro is guaranteed to be non-zero.  Typically it's
just 1, but on some systems (e.g. OpenVMS apparently) exit(1) means
success so EXIT_FAILURE there is defined to some other non-zero value.

Signed-off-by: Bryce Harrington <bryce@osg.samsung.com>
Reviewed-by: Marek Chalupa <mchqwerty@gmail.com>
2015-07-10 00:08:58 -07:00
clients Remove weston-screensaver 2015-06-22 15:19:14 +03:00
data data: Update boilerplate from MIT X11 license to MIT Expat license 2015-06-15 13:04:18 -07:00
desktop-shell desktop-shell: Allow fullscreen windows to mode-switch their output. 2015-07-02 15:14:30 +03:00
fullscreen-shell Unified multiple definitions of container_of() macro. 2015-06-15 17:11:58 -07:00
ivi-shell text_backend: make destructor call explicit 2015-06-26 09:33:54 +03:00
m4 weston-build: Fix aclocal error during autogen.sh 2014-06-21 10:33:21 -07:00
man desktop-shell: remove screensaver support 2015-06-22 15:19:39 +03:00
protocol xdg-shell: Further clarify xdg_surface.resize semantics 2015-06-26 17:23:15 +08:00
shared Unified multiple definitions of container_of() macro. 2015-06-15 17:11:58 -07:00
src weston-launch: Drop redundant exit() 2015-07-10 00:08:58 -07:00
tests tests: test set for ivi-shell notification with bad condition in server side 2015-06-25 11:39:59 +03:00
tools/zunitc Added simple unit/integration test framework and corresponding test program. 2015-07-07 15:47:08 +03:00
wcap wcap: Prefer quote form of include for config.h 2015-06-15 13:04:19 -07:00
xwayland Unified multiple definitions of container_of() macro. 2015-06-15 17:11:58 -07:00
.gitignore Added simple unit/integration test framework and corresponding test program. 2015-07-07 15:47:08 +03:00
autogen.sh Update autotools configuration 2010-11-06 21:04:03 -04:00
configure.ac Remove weston-screensaver 2015-06-22 15:19:14 +03:00
COPYING COPYING: Specify origin of the library 2015-06-15 13:04:19 -07:00
Makefile.am Added simple unit/integration test framework and corresponding test program. 2015-07-07 15:47:08 +03:00
notes.txt notes: Don't manipulate lists while tranversing the list 2015-04-14 13:43:06 -07:00
README README: Fix typo; add link to testing docs 2014-02-05 17:20:24 -08:00
releasing.txt releasing: Convert tabs to spacing for better formatting 2015-05-27 23:55:08 -07:00
weston.ini.in desktop-shell: remove screensaver support 2015-06-22 15:19:39 +03:00

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 building
weston and its dependencies.

The test suite can be invoked via `make check`; see
http://wayland.freedesktop.org/testing.html for additional details.