From eb23089183745853fac9414d45a559a478ef51d6 Mon Sep 17 00:00:00 2001 From: JuanJo Ciarlante Date: Thu, 26 May 2011 19:01:42 +0200 Subject: USE_PF_INET6 by default for v2.3 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - put all #ifdef'd code in place, kill the cpp symbol, - thus in v2.3 it's not actually possible to --disable-ipv6 :) RATIONALE: #1 some wacky compilers choke on #ifdef'd constructions for concatenated strings, and given that: #2 v2.3 has already transport ipv6 by default => doesn't justify putting effort on #1 to keep USE_PF_INET6 ifdef wraps. Signed-off-by: JuanJo Ciarlante Signed-off-by: Samuli Seppänen Acked-by: David Sommerseth Signed-off-by: David Sommerseth --- syshead.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'syshead.h') diff --git a/syshead.h b/syshead.h index c6b131b..87cc369 100644 --- a/syshead.h +++ b/syshead.h @@ -29,7 +29,7 @@ * Only include if not during configure */ #ifdef WIN32 -/* USE_PF_INET6: win32 ipv6 exists only after 0x0501 (XP) */ +/* PF_INET6: win32 ipv6 exists only after 0x0501 (XP) */ #define WINVER 0x0501 #endif #ifndef PACKAGE_NAME @@ -344,7 +344,7 @@ #include #include #include -/* The following two headers are needed of USE_PF_INET6 */ +/* The following two headers are needed of PF_INET6 */ #include #include #endif -- cgit