the dependency on the resolver library when DNS functionality is not
being compiled into the krb5 library.
ticket: new
target_version: 1.3.2
tags: pullup
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@15958
dc483132-0cff-0310-8789-
dd5450dbe970
+2003-12-22 Jeffrey Altman <jaltman@mit.edu>
+
+ * dnssrv.c: wrap within #ifdef KRB5_DNS_LOOKUP to prevent references
+ to resolver functions when DNS support is not being compiled
+
2003-12-19 Ken Raeburn <raeburn@mit.edu>
* realm_iter.c (krb5_realm_iterator_create): Array NAMES is now
* do DNS SRV RR queries
*/
+#ifdef KRB5_DNS_LOOKUP
#define NEED_SOCKETS
#include "k5-int.h"
#include "os-proto.h"
*answers = head;
return 0;
}
+#endif
\ No newline at end of file