Merge pull request #2314 from dm0-/fix-cross-realmd

sys-auth/realmd: fix krb5-config detection
This commit is contained in:
David Michael 2016-12-12 11:48:32 -08:00 committed by GitHub
commit 3d577fe9a1
2 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,26 @@
From 618abb3f1336283e56571e76be405f41b7cdf7bc Mon Sep 17 00:00:00 2001
From: David Michael <david.michael@coreos.com>
Date: Sun, 11 Dec 2016 13:13:15 -0800
Subject: [PATCH] configure: Find a host-prefixed krb5-config when
cross-compiling
---
configure.ac | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/configure.ac b/configure.ac
index 5c0a8e7..e335247 100644
--- a/configure.ac
+++ b/configure.ac
@@ -163,7 +163,7 @@ if test "$KRB5_CFLAGS" != ""; then
KRB5_PASSED_CFLAGS=$KRB5_CFLAGS
fi
-AC_PATH_PROG(KRB5_CONFIG, krb5-config)
+AC_PATH_TOOL(KRB5_CONFIG, krb5-config)
AC_MSG_CHECKING(for working krb5-config)
if test -x "$KRB5_CONFIG"; then
KRB5_CFLAGS="`$KRB5_CONFIG --cflags`"
--
2.7.4

View File

@ -31,6 +31,8 @@ QA_MULTILIB_PATHS="usr/lib/realmd/realmd"
src_prepare() { src_prepare() {
sed -e '/gentoo-release/s/dnl/ /g' -i configure.ac sed -e '/gentoo-release/s/dnl/ /g' -i configure.ac
epatch "${FILESDIR}"/realmd-0.16.3-fix-krb5-config.patch
autotools-utils_src_prepare autotools-utils_src_prepare
} }