diff options
| author | Greg Hudson <ghudson@mit.edu> | 2012-07-08 18:04:56 -0400 |
|---|---|---|
| committer | Greg Hudson <ghudson@mit.edu> | 2012-09-04 01:31:46 -0400 |
| commit | c91cda209a1e2467bbb5fbb5a3116757d38ef374 (patch) | |
| tree | 96f17a8541bc5e637f4fc0cb90d354bcf2fb3fda /src/config | |
| parent | 6b60871d961eff2fa4c476867ae9d8cbcffb8953 (diff) | |
| download | krb5-c91cda209a1e2467bbb5fbb5a3116757d38ef374.tar.gz krb5-c91cda209a1e2467bbb5fbb5a3116757d38ef374.tar.xz krb5-c91cda209a1e2467bbb5fbb5a3116757d38ef374.zip | |
Avoid libdl dependencies in bundled libverto
The upstream libverto depends on dynamic loading and in particular on
dladdr(), which is not universal. To avoid this dependency, stub out
support for module loading (by replacing module.c) and instead
integrate the k5ev module directly into the bundled verto library.
This change removes the need to link, include, and invoke libverto
differently depending on whether we're using the bundled library; we
can always just link with -lverto and call verto_default().
bigredbutton: whitespace
ticket: 7351 (new)
Diffstat (limited to 'src/config')
| -rw-r--r-- | src/config/pre.in | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/config/pre.in b/src/config/pre.in index e5a087c02..1ba26d850 100644 --- a/src/config/pre.in +++ b/src/config/pre.in @@ -369,9 +369,6 @@ VERTO_VERSION = @VERTO_VERSION@ VERTO_DEPS = $(VERTO_DEPS-@VERTO_VERSION@) VERTO_DEPS-sys = VERTO_DEPS-k5 = $(BUILDTOP)/include/verto.h -VERTO_K5EV_DEPS = $(VERTO_K5EV_DEPS-@VERTO_VERSION@) -VERTO_K5EV_DEPS-sys = -VERTO_K5EV_DEPS-k5 = $(BUILDTOP)/include/verto-k5ev.h # LIBS gets substituted in... e.g. -lnsl -lsocket @@ -389,7 +386,7 @@ KDB5_LIB = -lkdb5 $(KDB5_PLUGIN_LIBS) VERTO_DEPLIB = $(VERTO_DEPLIB-@VERTO_VERSION@) VERTO_DEPLIB-sys = # empty -VERTO_DEPLIB-k5 = $(TOPLIBD)/libverto-k5ev$(DEPLIBEXT) $(TOPLIBD)/libverto$(DEPLIBEXT) +VERTO_DEPLIB-k5 = $(TOPLIBD)/libverto$(DEPLIBEXT) VERTO_CFLAGS = @VERTO_CFLAGS@ VERTO_LIBS = @VERTO_LIBS@ |
