Restore limited support for static linking
authorGreg Hudson <ghudson@mit.edu>
Mon, 8 Jun 2009 10:01:57 +0000 (10:01 +0000)
committerGreg Hudson <ghudson@mit.edu>
Mon, 8 Jun 2009 10:01:57 +0000 (10:01 +0000)
commitaf44e8dee9b5bfffb05eb5a9b89c79c02ab7c2ff
tree80783e20aa0a982df33d64b6fbba75f63c03ab18
parent2bb6a5e140cb3d53ff454e624b5fe8aa1d53409f
Restore limited support for static linking

Add enough static linking support to run the test suite without shared
libraries, to facilitate gcov and other kinds of instrumentation.  The
necessary changes include:

* Undo some of the changes which removed static linking support,
  and cannibalize the defunct krb5_force_static conditional block
  in aclocal.m4.
* Add --enable-static-only configure option.
* For plugins, use a different symbol name for static and dynamic
  builds, via a macro in k5plugin.h.
* Add build machinery for building static libraries for plugins
  (somewhat grotty due to the difference in names).
* Move plugin subdirs earlier in SUBDIRS in src/Makefile.in.
* Make the in-tree KDB5 plugins dependencies of libkdb5 in a static
  build (aclocal.m4 has to know what they are).
* In kdb5.c, cannibalize the broken _KDB5_STATIC_LINK support to
  allow "loading" of statically linked plugin libraries.

Preauth, authdata, locate, and GSSAPI plugins are not handled by this
change, as they are not currently necessary to the test suite.
Supporting GSSAPI plugins may be a bit tricky but the others should be
straightforward if they become needed.

$(STLIBEXT) changes from .a-nobuild to .a in a normal shared build as
a result of these changes (except on AIX where aclocal.m4 changes it).
This does not seem to be important as we avoid selecting the static
library for building via other means.

ticket: 6510

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@22406 dc483132-0cff-0310-8789-dd5450dbe970
17 files changed:
src/Makefile.in
src/aclocal.m4
src/config/libnover.in
src/config/libpriv.in
src/config/pre.in
src/include/k5-plugin.h
src/lib/kdb/kdb5.c
src/plugins/authdata/greet/Makefile.in
src/plugins/kdb/db2/Makefile.in
src/plugins/kdb/db2/db2_exp.c
src/plugins/kdb/ldap/Makefile.in
src/plugins/kdb/ldap/ldap_exp.c
src/plugins/locate/python/Makefile.in
src/plugins/preauth/encrypted_challenge/Makefile.in
src/plugins/preauth/pkinit/Makefile.in
src/plugins/preauth/pkinit/pkinit_clnt.c
src/plugins/preauth/pkinit/pkinit_srv.c