1
0

CREDITS 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. Wayland — Display Server Protocol Library
  2. ==========================================
  3. Source: https://gitlab.freedesktop.org/wayland/wayland
  4. License: MIT
  5. This directory contains a modified subset of the Wayland protocol library
  6. (libwayland-client and libwayland-server) adapted for ArkOS static linking
  7. with musl-libc. The original dynamic libffi dependency has been replaced with
  8. a lightweight static stub (ffi_stubs.c) that correctly forwards protocol
  9. handler arguments on x86_64.
  10. Principal Copyright Holders:
  11. - Copyright © 2008-2012 Kristian Høgsberg
  12. - Copyright © 2010-2012 Intel Corporation
  13. - Copyright © 2011 Benjamin Franzke
  14. - Copyright © 2012 Collabora, Ltd.
  15. Modified files:
  16. - ffi_stubs.c: Custom static FFI implementation (ArkOS, Apache 2.0)
  17. - ffi.h: Minimal FFI type definitions (ArkOS, Apache 2.0)
  18. Permission is hereby granted, free of charge, to any person obtaining a
  19. copy of this software and associated documentation files (the "Software"),
  20. to deal in the Software without restriction, including without limitation
  21. the rights to use, copy, modify, merge, publish, distribute, sublicense,
  22. and/or sell copies of the Software, and to permit persons to whom the
  23. Software is furnished to do so, subject to the following conditions:
  24. The above copyright notice and this permission notice shall be included
  25. in all copies or substantial portions of the Software.
  26. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  27. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  28. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
  29. THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  30. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  31. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  32. THE SOFTWARE.