From: discomfitor Date: Wed, 2 Nov 2011 02:59:36 +0000 (+0000) Subject: make ipv6 support configurable X-Git-Tag: 2.0_alpha~139^2~7 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c8a4068f245da643d38006798b8c7bde10ff1922;p=framework%2Fuifw%2Fecore.git make ipv6 support configurable git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@64631 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33 --- diff --git a/configure.ac b/configure.ac index 24066ec..3127d1d 100644 --- a/configure.ac +++ b/configure.ac @@ -1333,16 +1333,29 @@ have_cares="no" if test "x${have_ecore_con}" = "xyes" ; then # Verify IPV6 availability in headers + want_ipv6="yes" have_ipv6="no" - AC_CHECK_TYPES([struct ipv6_mreq], [have_ipv6="yes"], [have_ipv6="no"], - [[ -#ifdef HAVE_NETINET_IN_H -# include -#endif -#ifdef HAVE_WS2TCPIP_H -# include -#endif - ]]) + AC_ARG_ENABLE([ipv6], + [AC_HELP_STRING([--disable-ipv6], + [disable ipv6 functionality @<:@default=detect@:>@])], + [ + if test "x${enableval}" = "xyes" ; then + want_ipv6="yes" + else + want_ipv6="no" + fi], + [want_ipv6=auto]) + if test "x${want_ipv6}" != "xno" ; then + AC_CHECK_TYPES([struct ipv6_mreq], [have_ipv6="yes"], [have_ipv6="no"], + [[ + #ifdef HAVE_NETINET_IN_H + # include + #endif + #ifdef HAVE_WS2TCPIP_H + # include + #endif + ]]) + fi if test "x${have_ipv6}" = "xyes" ; then AC_DEFINE(HAVE_IPV6, 1, [Define if IPV6 is supported]) @@ -1817,6 +1830,7 @@ if test "x$have_gnutls" = "xyes" ; then else echo fi + echo " IPv6.......................: $have_ipv6" echo " GnuTLS.....................: $have_gnutls" echo " CURL.......................: $have_curl" echo " Local Sockets..............: $want_ecore_con_local_sockets"