From patchwork Wed Jan 28 14:07:19 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Steve Dickson X-Patchwork-Id: 5730431 Return-Path: X-Original-To: patchwork-linux-nfs@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork2.web.kernel.org (Postfix) with ESMTP id E06B7BF440 for ; Wed, 28 Jan 2015 21:11:35 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 0FC692013A for ; Wed, 28 Jan 2015 21:11:35 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id E47A6200FF for ; Wed, 28 Jan 2015 21:11:33 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757772AbbA1VLX (ORCPT ); Wed, 28 Jan 2015 16:11:23 -0500 Received: from mx1.redhat.com ([209.132.183.28]:49284 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753481AbbA1UyV (ORCPT ); Wed, 28 Jan 2015 15:54:21 -0500 Received: from int-mx14.intmail.prod.int.phx2.redhat.com (int-mx14.intmail.prod.int.phx2.redhat.com [10.5.11.27]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id t0SE7Qhh005331 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=FAIL) for ; Wed, 28 Jan 2015 09:07:26 -0500 Received: from smallhat.boston.devel.redhat.com (vpn-58-65.rdu2.redhat.com [10.10.58.65]) by int-mx14.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id t0SE7Oxl020173 for ; Wed, 28 Jan 2015 09:07:26 -0500 From: Steve Dickson To: Linux NFS Mailing list Subject: [PATCH 1/4] ipv6: Enable IPv6 support by default. Date: Wed, 28 Jan 2015 09:07:19 -0500 Message-Id: <1422454042-12840-2-git-send-email-steved@redhat.com> In-Reply-To: <1422454042-12840-1-git-send-email-steved@redhat.com> References: <1422454042-12840-1-git-send-email-steved@redhat.com> X-Scanned-By: MIMEDefang 2.68 on 10.5.11.27 Sender: linux-nfs-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-nfs@vger.kernel.org X-Spam-Status: No, score=-6.9 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_HI, T_RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Enable IPv6 support to be on by default. Use the --disable-ipv6 flag to disable the support Signed-off-by: Steve Dickson --- configure.ac | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/configure.ac b/configure.ac index 6740fda..72055be 100644 --- a/configure.ac +++ b/configure.ac @@ -171,10 +171,10 @@ AC_ARG_ENABLE(tirpc, enable_tirpc=$enableval, enable_tirpc='') AC_ARG_ENABLE(ipv6, - [AC_HELP_STRING([--enable-ipv6], - [enable support for IPv6 @<:@default=no@:>@])], + [AC_HELP_STRING([--disable-ipv6], + [disable support for IPv6 @<:@default=no@:>@])], enable_ipv6=$enableval, - enable_ipv6=no) + enable_ipv6=yes) if test "$enable_ipv6" = yes; then AC_DEFINE(IPV6_SUPPORTED, 1, [Define this if you want IPv6 support compiled in]) else