diff options
author | Ross Burton <ross.burton@intel.com> | 2018-02-20 00:39:57 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-02-24 10:31:47 +0000 |
commit | baf263e40f34195e68db4f1e86c4216726defbad (patch) | |
tree | cbd73b4eee80a2db3f74bed332e94dfe76a67a12 /meta/recipes-extended/libtirpc | |
parent | 20e4d309e12bf10e2351e0016b606e85599b80f6 (diff) | |
download | poky-baf263e40f34195e68db4f1e86c4216726defbad.tar.gz |
libtirpc: stop dropping in NIS headers
libtirpc prior to 1.0.2 assumed that the system provided nis.h but this isn't
always true. Until now we've been using a tarball of the missing files from
Gentoo, but libtirpc 1.0.2 added a copy of nis.h to the sources so this isn't
required anymore.
(From OE-Core rev: a6e786e7c8bed33fa269aac99724df606829ec6f)
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended/libtirpc')
-rw-r--r-- | meta/recipes-extended/libtirpc/libtirpc_1.0.2.bb | 13 |
1 files changed, 3 insertions, 10 deletions
diff --git a/meta/recipes-extended/libtirpc/libtirpc_1.0.2.bb b/meta/recipes-extended/libtirpc/libtirpc_1.0.2.bb index f9718c576b..1a73de9db0 100644 --- a/meta/recipes-extended/libtirpc/libtirpc_1.0.2.bb +++ b/meta/recipes-extended/libtirpc/libtirpc_1.0.2.bb | |||
@@ -9,8 +9,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=f835cce8852481e4b2bbbdd23b5e47f3 \ | |||
9 | 9 | ||
10 | PROVIDES = "virtual/librpc" | 10 | PROVIDES = "virtual/librpc" |
11 | 11 | ||
12 | SRC_URI = "${SOURCEFORGE_MIRROR}/${BPN}/${BP}.tar.bz2;name=libtirpc \ | 12 | SRC_URI = "${SOURCEFORGE_MIRROR}/${BPN}/${BP}.tar.bz2 \ |
13 | ${GENTOO_MIRROR}/${BPN}-glibc-nfs.tar.xz;name=glibc-nfs \ | ||
14 | file://export_key_secretkey_is_set.patch \ | 13 | file://export_key_secretkey_is_set.patch \ |
15 | file://0001-replace-__bzero-with-memset-API.patch \ | 14 | file://0001-replace-__bzero-with-memset-API.patch \ |
16 | file://0001-include-stdint.h-for-uintptr_t.patch \ | 15 | file://0001-include-stdint.h-for-uintptr_t.patch \ |
@@ -20,19 +19,13 @@ SRC_URI_append_libc-musl = " \ | |||
20 | file://Use-netbsd-queue.h.patch \ | 19 | file://Use-netbsd-queue.h.patch \ |
21 | " | 20 | " |
22 | 21 | ||
23 | SRC_URI[libtirpc.md5sum] = "d5a37f1dccec484f9cabe2b97e54e9a6" | 22 | SRC_URI[md5sum] = "d5a37f1dccec484f9cabe2b97e54e9a6" |
24 | SRC_URI[libtirpc.sha256sum] = "723c5ce92706cbb601a8db09110df1b4b69391643158f20ff587e20e7c5f90f5" | 23 | SRC_URI[sha256sum] = "723c5ce92706cbb601a8db09110df1b4b69391643158f20ff587e20e7c5f90f5" |
25 | SRC_URI[glibc-nfs.md5sum] = "5ae500b9d0b6b72cb875bc04944b9445" | ||
26 | SRC_URI[glibc-nfs.sha256sum] = "2677cfedf626f3f5a8f6e507aed5bb8f79a7453b589d684dbbc086e755170d83" | ||
27 | 24 | ||
28 | inherit autotools pkgconfig | 25 | inherit autotools pkgconfig |
29 | 26 | ||
30 | EXTRA_OECONF = "--disable-gssapi" | 27 | EXTRA_OECONF = "--disable-gssapi" |
31 | 28 | ||
32 | do_configure_prepend () { | ||
33 | cp -r ${WORKDIR}/tirpc ${S} | ||
34 | } | ||
35 | |||
36 | do_install_append() { | 29 | do_install_append() { |
37 | chown root:root ${D}${sysconfdir}/netconfig | 30 | chown root:root ${D}${sysconfdir}/netconfig |
38 | } | 31 | } |