summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGreg Hudson <ghudson@mit.edu>2013-12-19 23:47:22 -0500
committerGreg Hudson <ghudson@mit.edu>2013-12-20 23:10:03 -0500
commita47d639770f32418c6e3fa8a0503019c9b376d2a (patch)
tree704761c34e4c1fea11ac266b7bbae746b768a12b
parentcf035ea27f98f351cc87d3c3b829f3604002f119 (diff)
downloadkrb5-a47d639770f32418c6e3fa8a0503019c9b376d2a.tar.gz
krb5-a47d639770f32418c6e3fa8a0503019c9b376d2a.tar.xz
krb5-a47d639770f32418c6e3fa8a0503019c9b376d2a.zip
Test for verto_set_flags in system libverto
libkrad relies on verto_set_flags, which was added to libverto in release 0.2.4. Make sure the system libverto has this function before choosing it over the built-in version. ticket: 7808 (new) target_version: 1.12.1 tags: pullup
-rw-r--r--src/configure.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/configure.in b/src/configure.in
index 0dbfbb4dfc..5e616b62d7 100644
--- a/src/configure.in
+++ b/src/configure.in
@@ -1264,7 +1264,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_set_flags], [VERTO_VERSION=sys],
[if test "x$with_system_verto" = xyes; then
AC_MSG_ERROR([cannot detect system libverto])
fi])