[26154] in CVS-changelog-for-Kerberos-V5
svn rev #25493: trunk/src/
daemon@ATHENA.MIT.EDU (ghudson@mit.edu)
Tue Nov 29 22:05:14 2011
Date: Tue, 29 Nov 2011 17:49:56 -0500
From: ghudson@mit.edu
Message-Id: <201111292249.pATMnuoH014138@drugstore.mit.edu>
To: cvs-krb5@mit.edu
Reply-To: krbdev@mit.edu
MIME-Version: 1.0
Content-Type: text/plain; charset="us-ascii"
Content-Transfer-Encoding: 7bit
Errors-To: cvs-krb5-bounces@mit.edu
http://src.mit.edu/fisheye/changelog/krb5/?cs=25493
Commit By: ghudson
Log Message:
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.
Changed Files:
U trunk/src/configure.in
Modified: trunk/src/configure.in
===================================================================
--- trunk/src/configure.in 2011-11-29 21:22:26 UTC (rev 25492)
+++ trunk/src/configure.in 2011-11-29 22:49:56 UTC (rev 25493)
@@ -1224,7 +1224,7 @@
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])
_______________________________________________
cvs-krb5 mailing list
cvs-krb5@mit.edu
https://mailman.mit.edu/mailman/listinfo/cvs-krb5