diff options
author | Khem Raj <raj.khem@gmail.com> | 2018-04-28 00:38:47 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-05-09 10:47:51 +0100 |
commit | 1732008c6d2eea150fa0fcf9d24e7cf03f10620d (patch) | |
tree | 476c2c2189dc13cf57d6cecc8d66ceb7e475f40b /meta/recipes-extended/xinetd | |
parent | 8af23ef768a4942e39778c63e6827145942fad70 (diff) | |
download | poky-1732008c6d2eea150fa0fcf9d24e7cf03f10620d.tar.gz |
xinetd: Use libtirpc even on glibc
We dropped in-tree obsoleted rpc from glibc
(From OE-Core rev: 1df41d0b48291f586f84b6b74003ea888be72e65)
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended/xinetd')
-rw-r--r-- | meta/recipes-extended/xinetd/xinetd_2.3.15.bb | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/meta/recipes-extended/xinetd/xinetd_2.3.15.bb b/meta/recipes-extended/xinetd/xinetd_2.3.15.bb index 1beb5456e1..6e43f5be6f 100644 --- a/meta/recipes-extended/xinetd/xinetd_2.3.15.bb +++ b/meta/recipes-extended/xinetd/xinetd_2.3.15.bb | |||
@@ -6,8 +6,7 @@ HOMEPAGE = "https://github.com/xinetd-org/xinetd" | |||
6 | LICENSE = "BSD" | 6 | LICENSE = "BSD" |
7 | LIC_FILES_CHKSUM = "file://COPYRIGHT;md5=8ad8615198542444f84d28a6cf226dd8" | 7 | LIC_FILES_CHKSUM = "file://COPYRIGHT;md5=8ad8615198542444f84d28a6cf226dd8" |
8 | 8 | ||
9 | DEPENDS = "" | 9 | DEPENDS += "libtirpc" |
10 | DEPENDS_append_libc-musl = " libtirpc " | ||
11 | PR = "r2" | 10 | PR = "r2" |
12 | 11 | ||
13 | # Blacklist a bogus tag in upstream check | 12 | # Blacklist a bogus tag in upstream check |
@@ -42,8 +41,8 @@ EXTRA_OECONF="--disable-nls" | |||
42 | PACKAGECONFIG ??= "tcp-wrappers" | 41 | PACKAGECONFIG ??= "tcp-wrappers" |
43 | PACKAGECONFIG[tcp-wrappers] = "--with-libwrap,,tcp-wrappers" | 42 | PACKAGECONFIG[tcp-wrappers] = "--with-libwrap,,tcp-wrappers" |
44 | 43 | ||
45 | CFLAGS_append_libc-musl = " -I${STAGING_INCDIR}/tirpc " | 44 | CFLAGS += "-I${STAGING_INCDIR}/tirpc" |
46 | LDFLAGS_append_libc-musl = " -ltirpc " | 45 | LDFLAGS += "-ltirpc" |
47 | 46 | ||
48 | do_configure() { | 47 | do_configure() { |
49 | # Looks like configure.in is broken, so we are skipping | 48 | # Looks like configure.in is broken, so we are skipping |