From 704b1e2dca00007d7310c129e29e708107e12f1d Mon Sep 17 00:00:00 2001 From: "Jeremy T. Bouse" Date: Sun, 16 Mar 2003 23:54:24 +0000 Subject: [PATCH] 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 --- configure.in | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/configure.in b/configure.in index 1b1ef3d..24f66d2 100644 --- a/configure.in +++ b/configure.in @@ -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 -- 2.30.2