From 67c99a5e2249f8260149b3ccb005f275cda64a1e Mon Sep 17 00:00:00 2001 From: Donald Buczek Date: Sun, 9 Dec 2018 00:20:49 +0100 Subject: [PATCH] krb5: Use embeedded libverto When we update krb5 the build system might find libverto in the system from the previous installation, link agains it and does't include its own library. Now when we update krb5, we'd remove the revision with the embedded library and install a revision, which uses the library but doesn't include it: krb5kdc: error while loading shared libraries: libverto.so.0: cannot open shared object file: No such file or directory Add configure flag --without-system-verto so that we use and install the build in version of libverto. --- krb5.be0 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/krb5.be0 b/krb5.be0 index 246d0535b..f38eced35 100755 --- a/krb5.be0 +++ b/krb5.be0 @@ -49,7 +49,8 @@ sourcesubdir_append src mee_configure() { bee_configure \ - --with-system-et + --with-system-et \ + --without-system-verto } #mee_build() {