mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-14 05:49:57 +00:00
2156d27f27
Fixes the following compile error:
| [ 6/27] Compiling lib/replace/test/testsuite.c
| In file included from ../lib/replace/test/testsuite.c:49:0:
| ../lib/replace/system/aio.h:29:20: fatal error: libaio.h: No such file or directory
| compilation terminated.
Signed-off-by: Jonathan Liu <net147@gmail.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Joe MacDonald <joe_macdonald@mentor.com>
(cherry picked from commit 18a1d69f86)
Signed-off-by: Armin Kuster <akuster808@gmail.com>
35 lines
1.2 KiB
BlitzBasic
35 lines
1.2 KiB
BlitzBasic
SUMMARY = "Hierarchical, reference counted memory pool system with destructors"
|
|
HOMEPAGE = "http://tevent.samba.org"
|
|
SECTION = "libs"
|
|
LICENSE = "LGPLv3+"
|
|
|
|
DEPENDS += "libaio libbsd libtalloc"
|
|
RDEPENDS_python-tevent = "python"
|
|
|
|
SRC_URI = "http://samba.org/ftp/tevent/tevent-${PV}.tar.gz"
|
|
LIC_FILES_CHKSUM = "file://${COREBASE}/meta/files/common-licenses/LGPL-3.0;md5=bfccfe952269fff2b407dd11f2f3083b"
|
|
|
|
SRC_URI[md5sum] = "945845817918f5cfbe0202d80a7db118"
|
|
SRC_URI[sha256sum] = "04d953379025b1560af5c4ffcce58a3ee84db7aaa09c9f1e3eff5b2945a13529"
|
|
|
|
inherit waf-samba
|
|
|
|
PACKAGECONFIG[attr] = ",,attr"
|
|
|
|
SRC_URI += "${@bb.utils.contains('PACKAGECONFIG', 'attr', '', 'file://avoid-attr-unless-wanted.patch', d)}"
|
|
|
|
S = "${WORKDIR}/tevent-${PV}"
|
|
|
|
EXTRA_OECONF += "--disable-rpath \
|
|
--bundled-libraries=NONE \
|
|
--builtin-libraries=replace \
|
|
--with-libiconv=${STAGING_DIR_HOST}${prefix}\
|
|
--without-gettext \
|
|
"
|
|
DISABLE_STATIC = ""
|
|
|
|
PACKAGES += "python-tevent python-tevent-dbg"
|
|
|
|
FILES_python-tevent = "${libdir}/python${PYTHON_BASEVERSION}/site-packages/*"
|
|
FILES_python-tevent-dbg = "${libdir}/python${PYTHON_BASEVERSION}/site-packages/.debug"
|