summaryrefslogtreecommitdiffstats
path: root/meta/recipes-extended/pam
diff options
context:
space:
mode:
authorMarcin Juszkiewicz <marcin.juszkiewicz@linaro.org>2012-08-03 10:21:30 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-09-28 16:53:03 +0100
commitc2bbe5f5d35b6d60ab1f75dc85dddd52cb8760ce (patch)
tree01f0ef503a51020bc9a7b88415814e01f5e4bf72 /meta/recipes-extended/pam
parent758677e212f59b426817e627ef7b1df02e7975a3 (diff)
downloadpoky-c2bbe5f5d35b6d60ab1f75dc85dddd52cb8760ce.tar.gz
libpam: disable NIS to not link with libtirpc when it is available
I was checking ways to make incremental builds faster so I started using sstate-cache and SSTATE_MIRRORS. But this gave me some nasty bug: | Collected errors: | * satisfy_dependencies_for: Cannot satisfy the following dependencies for php-cgi: | * libtirpc1 (>= 0.2.2) * | * opkg_install_cmd: Cannot install package php-cgi. I checked details: In my previous build libtirpc got built before libpam so libpam found it and linked. As a result packages depend on libtirpc1 but as there is no such build dependency sstate handling code did not used libtirpc copy... (From OE-Core rev: e629bdcd1bcb51f2d2101fb53daeac0bd29ab637) (From OE-Core rev: 8ff92269cd63e153892d129e6e2255812a454a99) Signed-off-by: Marcin Juszkiewicz <marcin.juszkiewicz@linaro.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended/pam')
-rw-r--r--meta/recipes-extended/pam/libpam_1.1.5.bb3
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/recipes-extended/pam/libpam_1.1.5.bb b/meta/recipes-extended/pam/libpam_1.1.5.bb
index 08ce1d13b3..e2588b97c5 100644
--- a/meta/recipes-extended/pam/libpam_1.1.5.bb
+++ b/meta/recipes-extended/pam/libpam_1.1.5.bb
@@ -9,7 +9,7 @@ SECTION = "base"
9LICENSE = "GPLv2+ | BSD" 9LICENSE = "GPLv2+ | BSD"
10LIC_FILES_CHKSUM = "file://COPYING;md5=ca0395de9a86191a078b8b79302e3083" 10LIC_FILES_CHKSUM = "file://COPYING;md5=ca0395de9a86191a078b8b79302e3083"
11 11
12PR = "r3" 12PR = "r4"
13 13
14SRC_URI = "https://fedorahosted.org/releases/l/i/linux-pam/Linux-PAM-${PV}.tar.bz2 \ 14SRC_URI = "https://fedorahosted.org/releases/l/i/linux-pam/Linux-PAM-${PV}.tar.bz2 \
15 file://99_pam \ 15 file://99_pam \
@@ -26,6 +26,7 @@ DEPENDS = "bison flex flex-native cracklib"
26EXTRA_OECONF = "--with-db-uniquename=_pam \ 26EXTRA_OECONF = "--with-db-uniquename=_pam \
27 --includedir=${includedir}/security \ 27 --includedir=${includedir}/security \
28 --libdir=${base_libdir} \ 28 --libdir=${base_libdir} \
29 --disable-nis \
29 --disable-regenerate-docu" 30 --disable-regenerate-docu"
30 31
31CFLAGS_append = " -fPIC " 32CFLAGS_append = " -fPIC "