Lines Matching refs:gethostbyname_r
3713 # sigh -- gethostbyname_r is a mess; it can have 3, 5 or 6 arguments :-(
3715 [Define this if you have some version of gethostbyname_r()])
3717 AC_CHECK_FUNC(gethostbyname_r, [
3719 AC_MSG_CHECKING([gethostbyname_r with 6 args])
3731 (void) gethostbyname_r(name, he, buffer, buflen, &res, &h_errnop)
3735 [Define this if you have the 6-arg version of gethostbyname_r().])
3739 AC_MSG_CHECKING([gethostbyname_r with 5 args])
3749 (void) gethostbyname_r(name, he, buffer, buflen, &h_errnop)
3754 [Define this if you have the 5-arg version of gethostbyname_r().])
3758 AC_MSG_CHECKING([gethostbyname_r with 3 args])
3766 (void) gethostbyname_r(name, he, &data);
3771 [Define this if you have the 3-arg version of gethostbyname_r().])