aboutsummaryrefslogtreecommitdiffstats
path: root/driver.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1997-07-01 13:58:34 +0000
committerEric S. Raymond <esr@thyrsus.com>1997-07-01 13:58:34 +0000
commitd5aa82aa53596e5f05628823cfe66ca8fda749cf (patch)
treef47be543361f22f2aa142d87c4a39e4b66cb567d /driver.c
parent2513ea1bb193ad13166122ae63879078282b5612 (diff)
downloadfetchmail-d5aa82aa53596e5f05628823cfe66ca8fda749cf.tar.gz
fetchmail-d5aa82aa53596e5f05628823cfe66ca8fda749cf.tar.bz2
fetchmail-d5aa82aa53596e5f05628823cfe66ca8fda749cf.zip
Another try at Kerberos autoconfiguration.
svn path=/trunk/; revision=1130
Diffstat (limited to 'driver.c')
-rw-r--r--driver.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/driver.c b/driver.c
index c0768e6a..3d3078d4 100644
--- a/driver.c
+++ b/driver.c
@@ -41,8 +41,14 @@
#endif
#ifdef KERBEROS_V4
+#if defined (__bsdi__)
+#include <des.h> /* order of includes matters */
+#include <krb.h>
+#define krb_get_err_text(e) (krb_err_txt[e])
+#else
#include <krb.h>
#include <des.h>
+#endif /* ! defined (__bsdi__) */
#include <netinet/in.h>
#include <netdb.h>
#endif /* KERBEROS_V4 */