diff options
author | Radu Moisan <radu.moisan@intel.com> | 2013-03-14 17:28:22 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-03-18 13:18:22 +0000 |
commit | c6100c7ed7fe029fc96d17d04b8f7e4eca733ea2 (patch) | |
tree | 04c825d5a2124c236b5364e9d101753b29d32bc4 /meta/recipes-support/liburcu/liburcu_0.7.6.bb | |
parent | b03402b6a54636b58728a65212c9974565189b40 (diff) | |
download | poky-c6100c7ed7fe029fc96d17d04b8f7e4eca733ea2.tar.gz |
liburcu: Upgrade to v0.7.6
License file changed but still compliant with LGPLv2.1
(From OE-Core rev: 0aa34849b29a77ff343cefe1215f975a3abfea69)
Signed-off-by: Radu Moisan <radu.moisan@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support/liburcu/liburcu_0.7.6.bb')
-rw-r--r-- | meta/recipes-support/liburcu/liburcu_0.7.6.bb | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/meta/recipes-support/liburcu/liburcu_0.7.6.bb b/meta/recipes-support/liburcu/liburcu_0.7.6.bb new file mode 100644 index 0000000000..6e3ab22717 --- /dev/null +++ b/meta/recipes-support/liburcu/liburcu_0.7.6.bb | |||
@@ -0,0 +1,23 @@ | |||
1 | DESCRIPTION = "The userspace read-copy update library by Mathieu Desnoyers" | ||
2 | HOMEPAGE = "http://lttng.org/urcu" | ||
3 | BUGTRACKER = "http://lttng.org/project/issues" | ||
4 | |||
5 | LICENSE = "LGPLv2.1+ & MIT-style" | ||
6 | LIC_FILES_CHKSUM = "file://LICENSE;md5=0f060c30a27922ce9c0d557a639b4fa3 \ | ||
7 | file://urcu.h;beginline=4;endline=32;md5=4de0d68d3a997643715036d2209ae1d9 \ | ||
8 | file://urcu/uatomic/x86.h;beginline=4;endline=21;md5=220552f72c55b102f2ee35929734ef42" | ||
9 | |||
10 | PR = "r0" | ||
11 | |||
12 | SRC_URI = "http://lttng.org/files/urcu/userspace-rcu-${PV}.tar.bz2" | ||
13 | |||
14 | SRC_URI[md5sum] = "4c1ecb4bdcd43e36dfdffdd297023c8b" | ||
15 | SRC_URI[sha256sum] = "71f2c0b75f3473e4d7aa6ac5111ca4d9cccccd5d131e87b53a07d35bd2c5900a" | ||
16 | |||
17 | S = "${WORKDIR}/userspace-rcu-${PV}" | ||
18 | CFLAGS_append_libc-uclibc = " -D_GNU_SOURCE" | ||
19 | inherit autotools | ||
20 | |||
21 | # liburcu, which is only used by lttng-ust, may not build on other | ||
22 | # platforms, like MIPS. | ||
23 | COMPATIBLE_HOST = '(x86_64.*|i.86.*|arm.*|powerpc.*)-linux.*' | ||