From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from simark.ca by simark.ca with LMTP id QwdRAYw8YmMmIhMAWB0awg (envelope-from ) for ; Wed, 02 Nov 2022 05:46:52 -0400 Received: by simark.ca (Postfix, from userid 112) id E60641E124; Wed, 2 Nov 2022 05:46:51 -0400 (EDT) Authentication-Results: simark.ca; dkim=pass (1024-bit key; secure) header.d=sourceware.org header.i=@sourceware.org header.a=rsa-sha256 header.s=default header.b=ZzH/JQ5f; dkim-atps=neutral X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on simark.ca X-Spam-Level: X-Spam-Status: No, score=-5.3 required=5.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,MAILING_LIST_MULTI,RCVD_IN_DNSWL_MED, URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.6 Received: from sourceware.org (server2.sourceware.org [8.43.85.97]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by simark.ca (Postfix) with ESMTPS id 9C26A1E0D3 for ; Wed, 2 Nov 2022 05:46:51 -0400 (EDT) Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id 8CDB338582BA for ; Wed, 2 Nov 2022 09:46:50 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 8CDB338582BA DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1667382410; bh=BFyR/ayVTSqx9GW/K+6HfwCgOb7cZqK1fqcmNYin4Qk=; h=Date:To:Subject:In-Reply-To:References:List-Id:List-Unsubscribe: List-Archive:List-Post:List-Help:List-Subscribe:From:Reply-To: From; b=ZzH/JQ5fFnTENcM+JoAFVYEUNdQkLqRVaDb8kC68icDfYE3h04ToMdJ0tMSNTrDtT UBFk/YtPIOJy2brr/CsWvEGQBBdydJJqqQi2Y3m1YK2NBPjtT3MLdWaoGkWH4RqQtt 33ETZrQR8L2KK7+5E+AfVoREsPWWv9N+xWGW582k= Received: from latitanza.investici.org (latitanza.investici.org [IPv6:2001:888:2000:56::19]) by sourceware.org (Postfix) with ESMTPS id 3DD743858C83 for ; Wed, 2 Nov 2022 09:46:23 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 3DD743858C83 Received: from 1.mail-backend.investici.org (unknown [10.0.0.11]) by latitanza.investici.org (Postfix) with ESMTP id 4N2MTn01FQzGp3L for ; Wed, 2 Nov 2022 09:46:21 +0000 (UTC) Received: from 1.webmail.investici.org (localhost [127.0.0.1]) (Authenticated sender: i.nixman@autistici.org) by 1.mail-backend.investici.org (Postfix) with ESMTPA id 4N2MTm634Rz5t7d for ; Wed, 2 Nov 2022 09:46:20 +0000 (UTC) MIME-Version: 1.0 Date: Wed, 02 Nov 2022 09:46:20 +0000 To: gdb@sourceware.org Subject: Re: _WIN32_WINNT redefined? In-Reply-To: <41193fbdb742b1c2d4d7b4ab06561822@autistici.org> References: <6485dbfe07e21a1c451b17d3fda5b3d9@autistici.org> <41193fbdb742b1c2d4d7b4ab06561822@autistici.org> User-Agent: Roundcube Webmail Message-ID: X-Sender: i.nixman@autistici.org Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: gdb@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gdb mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , From: niXman via Gdb Reply-To: i.nixman@autistici.org Errors-To: gdb-bounces+public-inbox=simark.ca@sourceware.org Sender: "Gdb" On 2022-11-02 08:44, niXman via Gdb wrote: > On 2022-11-02 08:21, niXman via Gdb wrote: ok, I did a little research. the `_WIN32_WINNT` is defined in `gdbsupport/common-defs.h` only, but referenced in `gnulib/import/gettimeofdeay.c` and `gnulib/import/stat-w32.c` only, but not directly because those files include `windows,h` and `sdkdkver.h`. thus that `_WIN32_WINNT` define is never used! so I think the best way is to remove that define completely. ideas?