From 6663b86f923d8ac86a1bcb627201b1c6cc0c8a6e Mon Sep 17 00:00:00 2001 From: Bart Schaefer Date: Fri, 8 Jun 2001 03:05:50 +0000 Subject: Fix #includes for gcc 2.95 compilation. --- Src/Modules/tcp.h | 23 +++++++++++++++++++++++ Src/Modules/zftp.c | 27 --------------------------- 2 files changed, 23 insertions(+), 27 deletions(-) (limited to 'Src/Modules') diff --git a/Src/Modules/tcp.h b/Src/Modules/tcp.h index edb2119ad..53e96761f 100644 --- a/Src/Modules/tcp.h +++ b/Src/Modules/tcp.h @@ -27,11 +27,34 @@ * */ +/* + * We need to include the zsh headers later to avoid clashes with + * the definitions on some systems, however we need the configuration + * file to decide whether we can include netinet/in_systm.h, which + * doesn't exist on cygwin. + */ #include "../../config.h" + #include #include #include +/* + * For some reason, configure doesn't always detect netinet/in_systm.h. + * On some systems, including linux, this seems to be because gcc is + * throwing up a warning message about the redefinition of + * __USE_LARGEFILE. This means the problem is somewhere in the + * header files where we can't get at it. For now, revert to + * not including this file only on systems where we know it's missing. + * Currently this is just cygwin. + */ +#ifndef __CYGWIN__ +# include +#endif +#include +#include +#include + /* Is IPv6 supported by the library? */ #if defined(AF_INET6) && defined(IN6ADDR_LOOPBACK_INIT) \ diff --git a/Src/Modules/zftp.c b/Src/Modules/zftp.c index 46f30da74..66bf1e662 100644 --- a/Src/Modules/zftp.c +++ b/Src/Modules/zftp.c @@ -49,33 +49,6 @@ struct sockaddr_in6; struct zftp_session; typedef struct zftp_session *Zftp_session; -/* - * We need to include the zsh headers later to avoid clashes with - * the definitions on some systems, however we need the configuration - * file to decide whether we can include netinet/in_systm.h, which - * doesn't exist on cygwin. - */ -#include "../../config.h" - -#include -#include -#include -/* - * For some reason, configure doesn't always detect netinet/in_systm.h. - * On some systems, including linux, this seems to be because gcc is - * throwing up a warning message about the redefinition of - * __USE_LARGEFILE. This means the problem is somewhere in the - * header files where we can't get at it. For now, revert to - * not including this file only on systems where we know it's missing. - * Currently this is just cygwin. - */ -#ifndef __CYGWIN__ -# include -#endif -#include -#include -#include - #include "tcp.h" #include "zftp.mdh" #include "zftp.pro" -- cgit 1.4.1