Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
donald committed Dec 11, 2018
1 parent 23ad3a8 commit 67c99a5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion krb5.be0
Expand Up @@ -49,7 +49,8 @@ sourcesubdir_append src

mee_configure() {
bee_configure \
--with-system-et
--with-system-et \
--without-system-verto
}

#mee_build() {
Expand Down

0 comments on commit 67c99a5

Please sign in to comment.