From 8f09bfe9fa0e51c2bd1e2f533eb25655e88ca43b Mon Sep 17 00:00:00 2001 From: Ken Raeburn Date: Tue, 7 Mar 2006 20:45:24 +0000 Subject: Merge from plugin branch Add plugin support: - plugin routines in support library (may break windows build!) - plugin support in KDC location code - sample Python-based plugin for KDC location, not built without tweaking sources - changed service location interface to use an enum instead of passing profile string and DNS strings and port numbers - changed pathnames for plugin locations, including kdb back end - remove locate_service from accessor API Also, do build shared libraries for Darwin just like any other UNIX box. Not present yet: - use new plugin interface for kdb back end - Windows support - Mac bundle support (but dlopen support works) - search path for libkrb5 plugins (only one hard-coded directory for now) - sorting of plugin collections for predictable ordering See the various ChangeLogs for specifics. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@17706 dc483132-0cff-0310-8789-dd5450dbe970 --- src/util/profile/ChangeLog | 4 ++++ src/util/profile/Makefile.in | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) (limited to 'src/util/profile') diff --git a/src/util/profile/ChangeLog b/src/util/profile/ChangeLog index cbb95706e..ea269e8e2 100644 --- a/src/util/profile/ChangeLog +++ b/src/util/profile/ChangeLog @@ -1,3 +1,7 @@ +2006-03-06 Ken Raeburn + + * Makefile.in (profile_tcl): Include $(LIBS). + 2005-10-21 Ken Raeburn * prof_file.c (profile_update_file_data): Drop test of diff --git a/src/util/profile/Makefile.in b/src/util/profile/Makefile.in index 067007d84..a2d4814c8 100644 --- a/src/util/profile/Makefile.in +++ b/src/util/profile/Makefile.in @@ -119,7 +119,7 @@ profile_tcl.o: $(srcdir)/profile_tcl.c profile.h profile_tcl: profile_tcl.o libprofile.a $(CC_LINK) -o profile_tcl profile_tcl.o \ $(TCL_MAYBE_RPATH) \ - -L../et -L../.. libprofile.a $(DEPLIBS) $(TCL_LIBS) + -L../et -L../.. libprofile.a $(DEPLIBS) $(TCL_LIBS) $(LIBS) clean-unix:: clean-libs clean-libobjs $(RM) $(PROGS) *.o *~ test_parse core prof_err.h \ -- cgit