mirror of
https://git.yoctoproject.org/poky
synced 2026-03-05 14:59:41 +01:00
Get following patches Detect recursive lock between yp_all() and do_ypcall() Detect recursive NIS calls (From OE-Core rev: e3f8b1dd5fa1bb85b685148b5ba106c61367294d) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
25 lines
779 B
BlitzBasic
25 lines
779 B
BlitzBasic
# Copyright (C) 2017 Khem Raj <raj.khem@gmail.com>
|
|
# Released under the MIT license (see COPYING.MIT for the terms)
|
|
|
|
SUMMARY = "Library containing NIS functions using TI-RPC (IPv6 enabled)"
|
|
DESCRIPTION = "This library contains the public client interface for NIS(YP) and NIS+\
|
|
it was part of glibc and now is standalone packages. it also supports IPv6"
|
|
HOMEPAGE = "https://github.com/thkukuk/libnsl"
|
|
LICENSE = "LGPL-2.1"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=4fbd65380cdd255951079008b364516c"
|
|
SECTION = "libs"
|
|
DEPENDS = "libtirpc"
|
|
|
|
PV = "1.2.0+git${SRCPV}"
|
|
|
|
SRCREV = "4a062cf4180d99371198951e4ea5b4550efd58a3"
|
|
|
|
SRC_URI = "git://github.com/thkukuk/libnsl \
|
|
"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
inherit autotools pkgconfig gettext
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|