From: abbotti Date: Mon, 18 Mar 2002 20:21:58 +0000 (-0800) Subject: [svn] Don't include netdb.h on windows. X-Git-Tag: v1.13~1831 X-Git-Url: http://sjero.net/git/?p=wget;a=commitdiff_plain;h=47a8225eda0c265b146484824b04a83068722e03 [svn] Don't include netdb.h on windows. Submitted by Ian Abbott in <3C964B8C.18942.D3115@localhost>. --- diff --git a/src/ChangeLog b/src/ChangeLog index 15139f19..da065095 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2002-03-18 Ian Abbott + + * host.h: Don't include netdb.h on windows. + 2002-02-19 Hrvoje Niksic * recur.c (retrieve_tree): Handle the case when start_url doesn't diff --git a/src/host.h b/src/host.h index 3ca6af48..058b1998 100644 --- a/src/host.h +++ b/src/host.h @@ -20,11 +20,10 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifndef HOST_H #define HOST_H -#include - #ifdef WINDOWS # include #else +# include # include # include #ifndef __BEOS__