summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@intel.com>2018-02-20 00:39:57 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2018-03-15 15:47:59 -0700
commitca574f76eaf27da224d7f24f292fa9ba85d06f35 (patch)
tree45a29ddb065668640672ce0ac723974902c97223
parent5e6c7832e5d7523275ea720fbb28b54f135ab3f0 (diff)
downloadpoky-ca574f76eaf27da224d7f24f292fa9ba85d06f35.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: cc20757169f833c322fbdee592788e37ed2d549f) Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/recipes-extended/libtirpc/libtirpc_1.0.2.bb13
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 94fd5f99c1..07e4c7989a 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
10PROVIDES = "virtual/librpc" 10PROVIDES = "virtual/librpc"
11 11
12SRC_URI = "${SOURCEFORGE_MIRROR}/${BPN}/${BP}.tar.bz2;name=libtirpc \ 12SRC_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 \
@@ -23,19 +22,13 @@ SRC_URI_append_libc-musl = " \
23 file://Use-netbsd-queue.h.patch \ 22 file://Use-netbsd-queue.h.patch \
24 " 23 "
25 24
26SRC_URI[libtirpc.md5sum] = "d5a37f1dccec484f9cabe2b97e54e9a6" 25SRC_URI[md5sum] = "d5a37f1dccec484f9cabe2b97e54e9a6"
27SRC_URI[libtirpc.sha256sum] = "723c5ce92706cbb601a8db09110df1b4b69391643158f20ff587e20e7c5f90f5" 26SRC_URI[sha256sum] = "723c5ce92706cbb601a8db09110df1b4b69391643158f20ff587e20e7c5f90f5"
28SRC_URI[glibc-nfs.md5sum] = "5ae500b9d0b6b72cb875bc04944b9445"
29SRC_URI[glibc-nfs.sha256sum] = "2677cfedf626f3f5a8f6e507aed5bb8f79a7453b589d684dbbc086e755170d83"
30 27
31inherit autotools pkgconfig 28inherit autotools pkgconfig
32 29
33EXTRA_OECONF = "--disable-gssapi" 30EXTRA_OECONF = "--disable-gssapi"
34 31
35do_configure_prepend () {
36 cp -r ${WORKDIR}/tirpc ${S}
37}
38
39do_install_append() { 32do_install_append() {
40 chown root:root ${D}${sysconfdir}/netconfig 33 chown root:root ${D}${sysconfdir}/netconfig
41} 34}