diff options
author | Gisle Vanem <gvanem@broadpark.no> | 2006-08-29 18:45:55 +0000 |
---|---|---|
committer | Gisle Vanem <gvanem@broadpark.no> | 2006-08-29 18:45:55 +0000 |
commit | 59cf6fd4f058917839a407f5a206f5f1c1a004a6 (patch) | |
tree | cc4800cc4cd220351c1475b9f3f6acaff6549bee /lib | |
parent | 6de9732a8869f8a7b07ad9b393984a838c1dc566 (diff) | |
download | curl-59cf6fd4f058917839a407f5a206f5f1c1a004a6.tar.gz |
Watcom lacks <sys/time.h>.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/connect.c | 2 | ||||
-rw-r--r-- | lib/cookie.h | 2 | ||||
-rw-r--r-- | lib/dict.c | 2 | ||||
-rw-r--r-- | lib/easy.c | 2 | ||||
-rw-r--r-- | lib/file.c | 2 | ||||
-rw-r--r-- | lib/http.c | 2 | ||||
-rw-r--r-- | lib/telnet.c | 2 | ||||
-rw-r--r-- | lib/tftp.c | 2 | ||||
-rw-r--r-- | lib/timeval.h | 2 | ||||
-rw-r--r-- | lib/transfer.c | 2 | ||||
-rw-r--r-- | lib/url.c | 2 |
11 files changed, 21 insertions, 1 deletions
diff --git a/lib/connect.c b/lib/connect.c index 4e7f4f8ea..d28f1f094 100644 --- a/lib/connect.c +++ b/lib/connect.c @@ -25,7 +25,9 @@ #ifndef WIN32 /* headers for non-win32 */ +#ifndef __WATCOMC__ #include <sys/time.h> +#endif #ifdef HAVE_SYS_TYPES_H #include <sys/types.h> #endif diff --git a/lib/cookie.h b/lib/cookie.h index 22dc755c4..6d1b065b2 100644 --- a/lib/cookie.h +++ b/lib/cookie.h @@ -24,7 +24,7 @@ ***************************************************************************/ #include <stdio.h> -#ifdef WIN32 +#if defined(WIN32) || defined(__WATCOMC__) #include <time.h> #else #include <sys/time.h> diff --git a/lib/dict.c b/lib/dict.c index d5a2400ca..86d00c961 100644 --- a/lib/dict.c +++ b/lib/dict.c @@ -46,7 +46,9 @@ #include <sys/socket.h> #endif #include <netinet/in.h> +#ifndef __WATCOMC__ #include <sys/time.h> +#endif #ifdef HAVE_UNISTD_H #include <unistd.h> #endif diff --git a/lib/easy.c b/lib/easy.c index 827463ad8..5a4138361 100644 --- a/lib/easy.c +++ b/lib/easy.c @@ -48,7 +48,9 @@ #include <sys/socket.h> #endif #include <netinet/in.h> +#ifndef __WATCOMC__ #include <sys/time.h> +#endif #ifdef HAVE_UNISTD_H #include <unistd.h> #endif diff --git a/lib/file.c b/lib/file.c index 7ac53f19b..83cf8c679 100644 --- a/lib/file.c +++ b/lib/file.c @@ -48,7 +48,9 @@ #ifdef HAVE_NETINET_IN_H #include <netinet/in.h> #endif +#ifndef __WATCOMC__ #include <sys/time.h> +#endif #ifdef HAVE_UNISTD_H #include <unistd.h> #endif diff --git a/lib/http.c b/lib/http.c index aab0b85a2..c148b4c79 100644 --- a/lib/http.c +++ b/lib/http.c @@ -47,7 +47,9 @@ #ifdef HAVE_NETINET_IN_H #include <netinet/in.h> #endif +#ifndef __WATCOMC__ #include <sys/time.h> +#endif #ifdef HAVE_TIME_H #ifdef TIME_WITH_SYS_TIME diff --git a/lib/telnet.c b/lib/telnet.c index 8939dd1a6..9cbc666bc 100644 --- a/lib/telnet.c +++ b/lib/telnet.c @@ -45,7 +45,9 @@ #include <sys/socket.h> #endif #include <netinet/in.h> +#ifndef __WATCOMC__ #include <sys/time.h> +#endif #ifdef HAVE_UNISTD_H #include <unistd.h> #endif diff --git a/lib/tftp.c b/lib/tftp.c index 61800cc3d..9ae339734 100644 --- a/lib/tftp.c +++ b/lib/tftp.c @@ -45,7 +45,9 @@ #include <sys/socket.h> #endif #include <netinet/in.h> +#ifndef __WATCOMC__ #include <sys/time.h> +#endif #ifdef HAVE_UNISTD_H #include <unistd.h> #endif diff --git a/lib/timeval.h b/lib/timeval.h index 6be5e4276..a03ba2a6e 100644 --- a/lib/timeval.h +++ b/lib/timeval.h @@ -33,8 +33,10 @@ #if defined(WIN32) && !defined(__GNUC__) || defined(__MINGW32__) #include <time.h> #else +#ifndef __WATCOMC__ /* todo: Add HAVE_SYS_TIME_H */ #include <sys/time.h> #endif +#endif #ifndef HAVE_GETTIMEOFDAY #if !defined(_WINSOCKAPI_) && !defined(__MINGW32__) && !defined(_AMIGASF) && \ diff --git a/lib/transfer.c b/lib/transfer.c index fb1bcb286..79ce14df2 100644 --- a/lib/transfer.c +++ b/lib/transfer.c @@ -51,7 +51,9 @@ #ifdef HAVE_NETINET_IN_H #include <netinet/in.h> #endif +#ifndef __WATCOMC__ #include <sys/time.h> +#endif #ifdef HAVE_UNISTD_H #include <unistd.h> #endif @@ -46,7 +46,9 @@ #include <sys/socket.h> #endif #include <netinet/in.h> +#ifndef __WATCOMC__ #include <sys/time.h> +#endif #ifdef HAVE_UNISTD_H #include <unistd.h> #endif |