From d8038d1d12c30d05255005a9449ad444dbf2cbca Mon Sep 17 00:00:00 2001 From: Tom Yu Date: Mon, 5 Dec 2011 23:43:11 +0000 Subject: [PATCH] pull up r25493 from trunk ------------------------------------------------------------------------ r25493 | ghudson | 2011-11-29 17:49:56 -0500 (Tue, 29 Nov 2011) | 9 lines ticket: 7029 subject: Fix --with-system-verto without pkg-config target_version: 1.10 tags: pullup If we're using the system verto and pkg-config isn't found but libverto is, set VERTO_LIBS to just -lverto as there won't be a k5ev module. ticket: 7029 version_fixed: 1.10 status: resolved git-svn-id: svn://anonsvn.mit.edu/krb5/branches/krb5-1-10@25517 dc483132-0cff-0310-8789-dd5450dbe970 --- src/configure.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/configure.in b/src/configure.in index 6aae2f5d6..d3e407a7c 100644 --- a/src/configure.in +++ b/src/configure.in @@ -1224,7 +1224,7 @@ if test "x$with_system_verto" != xno; then VERTO_LIBS=`pkg-config --libs libverto` VERTO_VERSION=sys else - AC_CHECK_LIB([verto], [verto_run], [VERTO_VERSION=sys], + AC_CHECK_LIB([verto], [verto_run], [VERTO_VERSION=sys; VERTO_LIBS=-lverto], [if test "x$with_system_verto" = xyes; then AC_MSG_ERROR([cannot detect system libverto]) fi]) -- 2.26.2