From: hasso Date: Thu, 30 Jun 2005 13:52:20 +0000 (+0000) Subject: * configure.ac: Actually test whether libc has IPv6 support. X-Git-Tag: frr-2.0-rc1~2963 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=850d39f3409fd9f942a9796dbe95b9e1f3c8ac5b;p=mirror%2Ffrr.git * configure.ac: Actually test whether libc has IPv6 support. [backport candidate] --- diff --git a/ChangeLog b/ChangeLog index 55e3c81bd9..3ea625535c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2005-06-30 Louis Lagendijk + + * configure.ac: Actually test whether libc has IPv6 support. + 2005-06-28 Paul Jakma * INSTALL.quagga.txt: GNU make is required now, because of manual diff --git a/configure.ac b/configure.ac index 9da0e0fe6d..6aa0050dff 100755 --- a/configure.ac +++ b/configure.ac @@ -5,7 +5,7 @@ ## Copyright (c) 1996, 97, 98, 99, 2000 Kunihiro Ishiguro ## Portions Copyright (c) 2003 Paul Jakma ## -## $Id: configure.ac,v 1.108 2005/05/13 20:11:53 paul Exp $ +## $Id: configure.ac,v 1.109 2005/06/30 13:52:20 hasso Exp $ AC_PREREQ(2.53) AC_INIT(Quagga, 0.99.1, [http://bugzilla.quagga.net]) @@ -801,6 +801,18 @@ dnl ---------- fi fi + if test "$zebra_cv_linux_ipv6" = "yes";then + AC_MSG_CHECKING(whether libc has IPv6 support) + AC_TRY_LINK([#include + ],[ int a; a = (int) in6addr_any.s6_addr[0]; if (a != 12345) return a; ], + [AC_MSG_RESULT(yes) + zebra_cv_ipv6=yes + zebra_cv_linux_ipv6=yes], + [AC_MSG_RESULT(no) + zebra_cv_ipv6=no + zebra_cv_linux_ipv6=no]) + fi + if test "$zebra_cv_linux_ipv6" = "yes";then AC_MSG_CHECKING(for GNU libc >= 2.1) AC_DEFINE(HAVE_IPV6,1,Linux IPv6)