From 47463899868b46e59caf6cee016cf66873c186b4 Mon Sep 17 00:00:00 2001 From: Fredrik Fornwall Date: Wed, 8 Feb 2017 00:40:22 +0100 Subject: [PATCH] krb: Add dependencies on libutil and openssl lib/krb5/plugins/tls/k5tls.so links against libssl, and lib/krb5/plugins/preauth/pkinit.so against libcrypto, so openssl is needed. bin/kprop and bin/kpropd links against libutil if available. Also, add --without-system-verto to fix problem if building krb5 multiple times, with subsequent builds using the already installed libverto without installing it. --- packages/krb5/build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/krb5/build.sh b/packages/krb5/build.sh index de53ca6a..160ac804 100644 --- a/packages/krb5/build.sh +++ b/packages/krb5/build.sh @@ -1,12 +1,12 @@ TERMUX_PKG_HOMEPAGE='https://web.mit.edu/kerberos' TERMUX_PKG_DESCRIPTION='The Kerberos network authentication system' TERMUX_PKG_VERSION='1.15' -TERMUX_PKG_DEPENDS="libandroid-support, libandroid-glob, readline, c-ares" +TERMUX_PKG_DEPENDS="libandroid-support, libandroid-glob, readline, c-ares, openssl, libutil" TERMUX_PKG_SRCURL="https://web.mit.edu/kerberos/dist/krb5/$TERMUX_PKG_VERSION/krb5-$TERMUX_PKG_VERSION.tar.gz" TERMUX_PKG_SHA256='fd34752774c808ab4f6f864f935c49945f5a56b62240b1ad4ab1af7b4ded127c' TERMUX_PKG_FOLDERNAME="krb5-$TERMUX_PKG_VERSION/src" TERMUX_PKG_MAINTAINER='Vishal Biswas @vishalbiswas' -TERMUX_PKG_EXTRA_CONFIGURE_ARGS=' --with-readline --with-netlib=-lcares' +TERMUX_PKG_EXTRA_CONFIGURE_ARGS=' --with-readline --with-netlib=-lcares --without-system-verto' termux_step_pre_configure () { # cannot test these when cross compiling -- 2.11.0