From d97c3df2a57e589581b5264df0699bd58be3ce72 Mon Sep 17 00:00:00 2001 From: Andy Walsh Date: Sat, 15 Sep 2018 14:35:18 +0200 Subject: [PATCH] krb5: fix keyutils dependency * if is found krb5 pulls in the lib, which than fails to link because of a missing -fPic in libkeyutils.so * keyutils 1.5.11 will depend on krb5, so we disable it in krb5 to avoid circular dependency Signed-off-by: Andy Walsh --- net/krb5/Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/net/krb5/Makefile b/net/krb5/Makefile index 5e366e361..22388ab50 100644 --- a/net/krb5/Makefile +++ b/net/krb5/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=krb5 PKG_VERSION:=1.16.1 -PKG_RELEASE:=3 +PKG_RELEASE:=4 PKG_MAINTAINER:=W. Michael Petullo @@ -71,7 +71,8 @@ CONFIGURE_VARS += \ ac_cv_func_regcomp=yes \ ac_cv_printf_positional=yes \ ac_cv_file__etc_environment=no \ - ac_cv_file__etc_TIMEZONE=no + ac_cv_file__etc_TIMEZONE=no \ + ac_cv_header_keyutils_h=no CONFIGURE_ARGS += \ --localstatedir=/etc \