diff options
author | Daniel Stenberg <daniel@haxx.se> | 2000-08-04 11:32:50 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2000-08-04 11:32:50 +0000 |
commit | 0d7cce1f0834c796bc7acfddfd3eb40283196ec5 (patch) | |
tree | 6fe5692489099e17035561ace162513cde7b9e28 /acconfig.h | |
parent | b174aeaac9ee854a9ba48d4546301d2d8af20fd6 (diff) | |
download | curl-0d7cce1f0834c796bc7acfddfd3eb40283196ec5.tar.gz |
updated with the latest thread-safe function stuff
Diffstat (limited to 'acconfig.h')
-rw-r--r-- | acconfig.h | 20 |
1 files changed, 16 insertions, 4 deletions
diff --git a/acconfig.h b/acconfig.h index 87e1d7cc3..cdb353e66 100644 --- a/acconfig.h +++ b/acconfig.h @@ -10,8 +10,20 @@ /* Define cpu-machine-OS */ #undef OS -/* Number of arguments your gethostbyaddr_r() function accepts */ -#undef GETHOSTBYADDR_R_NARGS +/* Define if you have the gethostbyaddr_r() function with 5 arguments */ +#undef HAVE_GETHOSTBYADDR_R_5 -/* Number of arguments your gethostbyname_r() function accepts */ -#undef GETHOSTBYNAME_R_NARGS +/* Define if you have the gethostbyaddr_r() function with 7 arguments */ +#undef HAVE_GETHOSTBYADDR_R_7 + +/* Define if you have the gethostbyaddr_r() function with 8 arguments */ +#undef HAVE_GETHOSTBYADDR_R_8 + +/* Define if you have the gethostbyname_r() function with 3 arguments */ +#undef HAVE_GETHOSTBYNAME_R_3 + +/* Define if you have the gethostbyname_r() function with 5 arguments */ +#undef HAVE_GETHOSTBYNAME_R_5 + +/* Define if you have the gethostbyname_r() function with 6 arguments */ +#undef HAVE_GETHOSTBYNAME_R_6 |