diff options
author | Daniel Stenberg <daniel@haxx.se> | 2005-07-13 18:06:40 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2005-07-13 18:06:40 +0000 |
commit | 16bbd13af7244cc0967d9f12327f63ffcaeac4bd (patch) | |
tree | 345f4e74a520be8b1ef6cae6bd9a171938198b79 /lib/config-amigaos.h | |
parent | ee0666c8df0022a13fd478fe4a916f647a6338c5 (diff) | |
download | curl-16bbd13af7244cc0967d9f12327f63ffcaeac4bd.tar.gz |
Diego Casorran patches to make (lib)curl build fine on Amiga again
Diffstat (limited to 'lib/config-amigaos.h')
-rw-r--r-- | lib/config-amigaos.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/config-amigaos.h b/lib/config-amigaos.h index 88779753d..2bc7c424a 100644 --- a/lib/config-amigaos.h +++ b/lib/config-amigaos.h @@ -54,6 +54,7 @@ #define HAVE_UTIME_H 1 #define HAVE_WRITABLE_ARGV 1 #define HAVE_ZLIB_H 1 +#define HAVE_SYS_IOCTL_H 1 #define USE_OPENSSL 1 #define USE_SSLEAY 1 @@ -80,7 +81,9 @@ #define TIME_WITH_SYS_TIME 1 #define in_addr_t int -#define socklen_t int +#ifndef socklen_t +# define socklen_t int +#endif #ifndef O_RDONLY # define O_RDONLY 0x0000 |