Modified to automatically enable getaddrinfo emulation if lwres is not used and

getaddrinfo is not found in the system.


git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@427 f882894a-f735-0410-b71e-b25c423dba1c
This commit is contained in:
Jeremy T. Bouse 2003-03-16 23:54:24 +00:00
parent 33cce285cb
commit 704b1e2dca

View file

@ -327,6 +327,7 @@ AC_ARG_ENABLE([emulate-getaddrinfo],
[enable getaddrinfo emulation (default=no)]),
,
enable_emulate_getaddrinfo=no)
AC_ARG_WITH(lwres,
ACX_HELP_STRING([--with-lwres=DIR],
[use lwres library for getaddrinfo (default=no)]),
@ -384,7 +385,9 @@ if test x$have_getaddrinfo != xno ; then
[Does system provide RFC 2553/Posix getaddrinfo?])
else
if test x$enable_emulate_getaddrinfo != xyes ; then
AC_MSG_ERROR([getaddrinfo not found: try --with-lwres or --enable-emulate-getaddrinfo])
dnl AC_MSG_ERROR([getaddrinfo not found: try --with-lwres or --enable-emulate-getaddrinfo])
enable_emulate_getaddrinfo=yes
AC_MSG_WARN([enabling getaddrinfo emulation])
fi
EXTRA_NETOBJS="$EXTRA_NETOBJS getaddrinfo.o"
fi