[Date Prev][Date Next] [Chronological] [Thread] [Top]

Re: OpenLDAP doesn't build with IPv6 (ITS#1146)



Patch applied to OPENLDAP_REL_ENG_2, thanks.

Kurt

At 02:52 AM 5/12/01, j@pureftpd.org wrote:
>Full_Name: Frank DENIS
>Version: 2.0.8
>OS: GNU/Linux
>URL: 
>Submission from: (NULL) (212.198.0.90)
>
>
>IPv6 doesn't configure properly due to a minor typo. Here's the fix.
>
>--- openldap-2.0.8/configure.in.old     Thu May 10 06:41:48 2001
>+++ openldap-2.0.8/configure.in Sat May 12 11:48:04 2001
>@@ -739,7 +739,7 @@
> AC_CHECK_FUNCS( getaddrinfo inet_ntop )
> 
> ol_link_ipv6=no
>-if test $ac_cv_func_getaddrinfo = no -o $ac_cv_func_inet_ntop ; then
>+if test $ac_cv_func_getaddrinfo = no -o $ac_cv_func_inet_ntop = no ; then
>        if test $ol_enable_ipv6 = yes ; then
>                AC_MSG_ERROR([IPv6 support requires getaddrinfo() and inet_ntop()])
>        fi