From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 22120 invoked by alias); 22 Mar 2015 16:39:35 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Received: (qmail 22111 invoked by uid 89); 22 Mar 2015 16:39:34 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-3.9 required=5.0 tests=AWL,BAYES_00,SPF_HELO_PASS,SPF_PASS,T_RP_MATCHES_RCVD autolearn=ham version=3.3.2 X-HELO: mx1.redhat.com Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-GCM-SHA384 encrypted) ESMTPS; Sun, 22 Mar 2015 16:39:33 +0000 Received: from int-mx09.intmail.prod.int.phx2.redhat.com (int-mx09.intmail.prod.int.phx2.redhat.com [10.5.11.22]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id t2MGdR6I031662 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=FAIL); Sun, 22 Mar 2015 12:39:27 -0400 Received: from host1.jankratochvil.net (ovpn-204-23.brq.redhat.com [10.40.204.23]) by int-mx09.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id t2MGdMpK002240 (version=TLSv1/SSLv3 cipher=AES256-SHA bits=256 verify=NO); Sun, 22 Mar 2015 12:39:25 -0400 Date: Sun, 22 Mar 2015 16:39:00 -0000 From: Jan Kratochvil To: gdb-patches@sourceware.org Cc: Eli Zaretskii , ktietz@redhat.com, Joel Brobecker , Paul Fertser Subject: Re: [PATCH] Add IPv6 support for remote TCP connections Message-ID: <20150322163922.GA31444@host1.jankratochvil.net> References: <1391878435-19340-1-git-send-email-fercerpav@gmail.com> <20140209083056.GA32481@host2.jankratochvil.net> <20140209095308.GH2320@home.lan> <20140209130501.GA15183@host2.jankratochvil.net> <83k3d4utwr.fsf@gnu.org> <20140209164748.GA25629@host2.jankratochvil.net> <20140209170821.GI2320@home.lan> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20140209170821.GI2320@home.lan> User-Agent: Mutt/1.5.23 (2014-03-12) X-IsSubscribed: yes X-SW-Source: 2015-03/txt/msg00697.txt.bz2 On Sun, 09 Feb 2014 18:08:21 +0100, Paul Fertser wrote: https://www.gnu.org/software/gnulib/manual/html_node/getaddrinfo.html > But gnulib docs say "This function is missing on some platforms: HP-UX > 11.11, IRIX 6.5, OSF/1 5.1, Solaris 7, Cygwin 1.5.x, mingw, MSVC 9, > Interix 3.5, BeOS", is it really ok this way? + On Mon, 10 Feb 2014 18:45:15 +0100, Eli Zaretskii wrote: > Cygwin 1.5, MSVC, and Interix aren't supported, AFAIK, and MinGW is > not relevant. + On Sun, 09 Feb 2014 17:47:48 +0100, Jan Kratochvil wrote: > The patch with really builds OK on Fedora mingw64. HP-UX 11.11: Removed by Jan: 61a12cfa7b25746914493cc0d94e5053a8492aa5 IRIX 6.5: Removed by Pedro: 3831839c089cf3b65ad6b2efbc608e5a24a40379 OSF/1 5.1: Removed by Pedro: 32a8097ba5dd6ddb71c0fb2fccbac262c371846a Solaris 7: ??? Cygwin 1.5.x: Unsupported by GDB according to Eli. mingw: mingw-w64 is compatible as tested by Jan. MSVC 9: Unsupported by GDB according to Eli. Interix 3.5: Unsupported by GDB according to Eli. BeOS: Jan thinks the OS is unsupported by GDB. Does anyone has Solaris 7 host available? GDB should complain there during configure but I guess from configure.host it will not. Although do we care? Are there any files that could be removed if Solaris 7 host support gets removed? I do not see any. Otherwise the compilation of GDB will start failing there on getaddrinfo(). Do we care? Jan