diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2006-05-14 15:38:42 +0000 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2006-05-14 15:38:42 +0000 |
commit | 79e020ff5c9a81232cc2bd72e3f1045432926eea (patch) | |
tree | e701d0dcc6c8807e6e3f4f979418c5ab0aea6a4e | |
parent | dc8108d6cf7fc7dc54d897b18414b3f10717db58 (diff) | |
download | fetchmail-79e020ff5c9a81232cc2bd72e3f1045432926eea.tar.gz fetchmail-79e020ff5c9a81232cc2bd72e3f1045432926eea.tar.bz2 fetchmail-79e020ff5c9a81232cc2bd72e3f1045432926eea.zip |
Drop #include <com_err.h> from Kerberos 5 header file, fixes compile error on SUSE Linux 10.0.
svn path=/branches/BRANCH_6-3/; revision=4829
-rw-r--r-- | NEWS | 2 | ||||
-rw-r--r-- | kerberos.h | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -60,6 +60,8 @@ fetchmail 6.3.5 (not yet released): completing NTLM handshake, for robustness and consistency. (Taken from the NetBSD portable packages collection, patch-ac.) * On NetBSD, link against -lroken -lcom_err if --with-kerberos is enabled. +* Drop #include <com_err.h> from Kerberos 5 header file, fixes compile error on + SUSE Linux 10.0. # CHANGES: * Rename all fetchmail-internal lock_* functions to fm_lock_*. Obsoletes @@ -11,7 +11,7 @@ #ifdef KERBEROS_V5 #include <krb5.h> -#include <com_err.h> +/* #include <com_err.h> */ #endif #ifdef KERBEROS_V4 |