From 6b9457cae1b92d98020d591daa7427d05d396c52 Mon Sep 17 00:00:00 2001 From: brendan Date: Thu, 5 Jun 2003 17:55:40 +0000 Subject: [PATCH] coordinate IPv6 change with net module svn path=/trunk/icecast/; revision=4885 --- configure.in | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/configure.in b/configure.in index 7ba3834a..c89043c4 100644 --- a/configure.in +++ b/configure.in @@ -76,11 +76,11 @@ dnl Checks for programs. dnl Checks for libraries. dnl IPV6 -AC_SEARCH_LIBS(inet_pton, socket, AC_DEFINE(HAVE_IPV6, 1, [Define if you have IPV6 support])) +AC_SEARCH_LIBS(inet_pton, socket, + [AC_DEFINE([HAVE_INET_PTON], 1, [Define if you have the `inet_pton' function])]) AC_SEARCH_LIBS(getipnodebyname, nsl, - AC_DEFINE(HAVE_GETIPNODEBYNAME, 1, - [Define if you have the getipnodebyname function]) -) + [AC_DEFINE([HAVE_GETIPNODEBYNAME], 1, + [Define if you have the `getipnodebyname' function])]) dnl Checks for header files. AC_HEADER_STDC @@ -100,7 +100,7 @@ dnl Checks for library functions. AC_CHECK_FUNCS(nanosleep) AC_CHECK_FUNCS(poll) AC_CHECK_FUNCS(sethostent endhostent) -AC_CHECK_FUNCS(getnameinfo getaddrinfo inet_pton inet_aton) +AC_CHECK_FUNCS(getnameinfo getaddrinfo inet_aton) dnl -- configure options --