Lines Matching refs:gethostbyname_r
4208 # sigh -- gethostbyname_r is a mess; it can have 3, 5 or 6 arguments :-(
4210 [Define this if you have some version of gethostbyname_r()])
4212 AC_CHECK_FUNC(gethostbyname_r, [
4214 AC_MSG_CHECKING([gethostbyname_r with 6 args])
4226 (void) gethostbyname_r(name, he, buffer, buflen, &res, &h_errnop)
4230 [Define this if you have the 6-arg version of gethostbyname_r().])
4234 AC_MSG_CHECKING([gethostbyname_r with 5 args])
4244 (void) gethostbyname_r(name, he, buffer, buflen, &h_errnop)
4249 [Define this if you have the 5-arg version of gethostbyname_r().])
4253 AC_MSG_CHECKING([gethostbyname_r with 3 args])
4261 (void) gethostbyname_r(name, he, &data);
4266 [Define this if you have the 3-arg version of gethostbyname_r().])