diff options
author | Jonathan Liu <net147@gmail.com> | 2016-05-29 20:43:43 +1000 |
---|---|---|
committer | Joe MacDonald <joe_macdonald@mentor.com> | 2016-06-01 19:35:50 -0400 |
commit | 18a1d69f86b7eb5d151a77665dbb6a2da5306c05 (patch) | |
tree | 23804fc3836677bb2fe94657888a0abf72a3f1df | |
parent | a6a36710a110d381b798b445b2da9d6c490215f3 (diff) | |
download | meta-openembedded-18a1d69f86b7eb5d151a77665dbb6a2da5306c05.tar.gz |
libtevent: add missing libaio dependency
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>
-rw-r--r-- | meta-networking/recipes-support/libtevent/libtevent_0.9.28.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-networking/recipes-support/libtevent/libtevent_0.9.28.bb b/meta-networking/recipes-support/libtevent/libtevent_0.9.28.bb index d0ad748f59..3f5d7f4a14 100644 --- a/meta-networking/recipes-support/libtevent/libtevent_0.9.28.bb +++ b/meta-networking/recipes-support/libtevent/libtevent_0.9.28.bb | |||
@@ -3,7 +3,7 @@ HOMEPAGE = "http://tevent.samba.org" | |||
3 | SECTION = "libs" | 3 | SECTION = "libs" |
4 | LICENSE = "LGPLv3+" | 4 | LICENSE = "LGPLv3+" |
5 | 5 | ||
6 | DEPENDS += "libbsd libtalloc" | 6 | DEPENDS += "libaio libbsd libtalloc" |
7 | RDEPENDS_python-tevent = "python" | 7 | RDEPENDS_python-tevent = "python" |
8 | 8 | ||
9 | SRC_URI = "http://samba.org/ftp/tevent/tevent-${PV}.tar.gz" | 9 | SRC_URI = "http://samba.org/ftp/tevent/tevent-${PV}.tar.gz" |