提交 f09846d3 authored 作者: Michael Jerris's avatar Michael Jerris

proper gethostebyname_r detection

git-svn-id: http://svn.openzap.org/svn/openzap/trunk@421 a93c3328-9c30-0410-af19-c9cd2b2d52af
上级 9c95febc
......@@ -45,7 +45,8 @@ sun)
;;
esac
AC_CHECK_HEADERS([netinet/sctp.h])
AC_CHECK_HEADERS([netinet/sctp.h netdb.h])
AC_CHECK_FUNCS([gethostbyname_r])
# Enable debugging
AC_ARG_ENABLE(debug,
......
......@@ -30,15 +30,21 @@
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#if HAVE_NETDB_H
#include <netdb.h>
#endif
#include "openzap.h"
#include <ss7_boost_client.h>
#ifndef gethostbyname_r
extern int gethostbyname_r (__const char *__restrict __name,
struct hostent *__restrict __result_buf,
char *__restrict __buf, size_t __buflen,
struct hostent **__restrict __result,
int *__restrict __h_errnop);
#ifndef HAVE_GETHOSTBYNAME_R
extern int gethostbyname_r (const char *__name,
struct hostent *__result_buf,
char *__buf, size_t __buflen,
struct hostent **__result,
int *__h_errnop);
#endif
struct ss7bc_map {
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论