svn rev #25493: trunk/src/
ghudson@MIT.EDU
ghudson at MIT.EDU
Tue Nov 29 17:49:56 EST 2011
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])
More information about the cvs-krb5
mailing list