svn rev #25517: branches/krb5-1-10/src/

tlyu@MIT.EDU tlyu at MIT.EDU
Mon Dec 5 18:43:11 EST 2011


http://src.mit.edu/fisheye/changelog/krb5/?cs=25517
Commit By: tlyu
Log Message:
ticket: 7029
version_fixed: 1.10
status: resolved

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.


Changed Files:
U   branches/krb5-1-10/src/configure.in
Modified: branches/krb5-1-10/src/configure.in
===================================================================
--- branches/krb5-1-10/src/configure.in	2011-12-05 23:12:03 UTC (rev 25516)
+++ branches/krb5-1-10/src/configure.in	2011-12-05 23:43:11 UTC (rev 25517)
@@ -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