Hi,
Attached is a patch for a minor problem with building fetchmail after
adding the <netinet/in.h> include to kerberos.c.  There are quite a few
Unixish OS's which require <sys/types.h> to be included before in.h,
and there's no harm in doing it anyway :)
Thanks for all the good work on fetchmail!
G'luck,
Peter
-- 
What would this sentence be like if pi were 3?
--- kerberos.c  Mon Feb 19 11:50:46 2001
+++ kerberos.c  Mon Feb 19 11:51:08 2001
@@ -13,6 +13,7 @@
 #include  "fetchmail.h"
 #include  "socket.h"
 
+#include <sys/types.h>
 #include <netinet/in.h>  /* for htonl/ntohl */
 
 #ifdef KERBEROS_V4