diff options
author | Gisle Vanem <gisle.vanem@gmail.com> | 2017-08-22 23:34:47 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2017-08-22 23:34:47 +0200 |
commit | beda1dbe115f92adceba98b377021a43d0883cc0 (patch) | |
tree | e6a75262a4c0fb50aae488c1fd20687d1e287cfe /lib/config-dos.h | |
parent | f412a5aabb4d72201e80c1d31deda809becd082a (diff) | |
download | curl-beda1dbe115f92adceba98b377021a43d0883cc0.tar.gz |
config-dos: add missing defines, SIZEOF_* and two others
Bug: #1816
Diffstat (limited to 'lib/config-dos.h')
-rw-r--r-- | lib/config-dos.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/config-dos.h b/lib/config-dos.h index f2c9ff403..eec7af988 100644 --- a/lib/config-dos.h +++ b/lib/config-dos.h @@ -7,7 +7,7 @@ * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * - * Copyright (C) 1998 - 2015, Daniel Stenberg, <daniel@haxx.se>, et al. + * Copyright (C) 1998 - 2017, Daniel Stenberg, <daniel@haxx.se>, et al. * * This software is licensed as described in the file COPYING, which * you should have received as part of this distribution. The terms @@ -40,8 +40,10 @@ #define PACKAGE "curl" #define HAVE_ARPA_INET_H 1 +#define HAVE_ASSERT_H 1 #define HAVE_ERRNO_H 1 #define HAVE_FCNTL_H 1 +#define HAVE_FREEADDRINFO 1 #define HAVE_GETADDRINFO 1 #define HAVE_GETNAMEINFO 1 #define HAVE_GETPROTOBYNAME 1 @@ -85,9 +87,11 @@ #define RETSIGTYPE void #define SIZEOF_INT 4 +#define SIZEOF_LONG 4 #define SIZEOF_LONG_DOUBLE 16 #define SIZEOF_SHORT 2 #define SIZEOF_SIZE_T 4 +#define SIZEOF_CURL_OFF_T 4 #define STDC_HEADERS 1 #define TIME_WITH_SYS_TIME 1 |