mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-05-16 06:39:03 +00:00
uw-imap: make libpam dependency dependent on DISTRO_FEATURES
If pam is not in DISTRO_FEATURES, we shouldn't be building it. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
This commit is contained in:
parent
f81961ff20
commit
d422f96d46
@ -4,7 +4,7 @@ SECTION = "devel"
|
||||
LICENSE = "Apache-2.0"
|
||||
LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=a6a4ddbb7cd2999f6827ee143f6fcd97"
|
||||
|
||||
DEPENDS = "openssl libpam"
|
||||
DEPENDS = "openssl"
|
||||
|
||||
SRC_URI = "ftp://ftp.cac.washington.edu/imap/imap-${PV}.tar.gz \
|
||||
file://quote_cctype.patch \
|
||||
@ -17,13 +17,16 @@ SRC_URI[sha256sum] = "53e15a2b5c1bc80161d42e9f69792a3fa18332b7b771910131004eb520
|
||||
|
||||
S = "${WORKDIR}/imap-${PV}"
|
||||
|
||||
PACKAGECONFIG ??= "${@bb.utils.contains('DISTRO_FEATURES', 'pam', 'pam', '', d)}"
|
||||
PACKAGECONFIG[pam] = ",,libpam"
|
||||
|
||||
EXTRA_OEMAKE = "CC='${CC}'"
|
||||
|
||||
HEADERS = "src/c-client/*.h src/osdep/unix/*.h c-client/auths.c c-client/linkage.c c-client/linkage.h c-client/osdep.h"
|
||||
|
||||
do_compile() {
|
||||
echo "SSLINCLUDE=${STAGING_INCDIR} SSLLIB=${STAGING_LIBDIR}" > ${S}/SPECIALS
|
||||
oe_runmake lnp
|
||||
oe_runmake ${@bb.utils.contains('PACKAGECONFIG', 'pam', 'lnp', 'slx', d)}
|
||||
}
|
||||
|
||||
do_install() {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user