Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1 | SUMMARY = "Shared memory 'SyncFence' synchronization primitive" |
| 2 | |
| 3 | DESCRIPTION = "This library offers a CPU-based synchronization primitive compatible \ |
| 4 | with the X SyncFence objects that can be shared between processes \ |
| 5 | using file descriptor passing." |
| 6 | |
| 7 | require xorg-lib-common.inc |
| 8 | |
| 9 | LICENSE = "MIT-style" |
| 10 | LIC_FILES_CHKSUM = "file://COPYING;md5=47e508ca280fde97906eacb77892c3ac" |
| 11 | |
| 12 | DEPENDS += "virtual/libx11" |
| 13 | |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 14 | EXTRA_OECONF += "--with-shared-memory-dir=/dev/shm" |
| 15 | |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 16 | SRC_URI += "file://0001-xshmfence_futex.h-Define-SYS_futex-if-it-does-not-ex.patch" |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 17 | |
| 18 | SRC_URI[md5sum] = "42dda8016943dc12aff2c03a036e0937" |
| 19 | SRC_URI[sha256sum] = "b884300d26a14961a076fbebc762a39831cb75f92bed5ccf9836345b459220c7" |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 20 | |
| 21 | BBCLASSEXTEND = "native nativesdk" |