From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from simark.ca by simark.ca with LMTP id 5V4LJEVDYmNSIxMAWB0awg (envelope-from ) for ; Wed, 02 Nov 2022 06:15:33 -0400 Received: by simark.ca (Postfix, from userid 112) id 853391E124; Wed, 2 Nov 2022 06:15:33 -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=ncp8UWSy; 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 3B7501E0D3 for ; Wed, 2 Nov 2022 06:15:33 -0400 (EDT) Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id 8E0D93858CDA for ; Wed, 2 Nov 2022 10:15:32 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 8E0D93858CDA DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1667384132; bh=q/0uUYp2IiD9Ep/0bFBSIfs+pyWSuAdoRizAcjjJg4I=; 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=ncp8UWSybk3ibWhfqt4ZMnC7yijcvM/JVDfSciCnCvaaVx3GOAT7Ae6DYCheMiYX4 X2nLBPAvhWnbep9BdtfyyCLtonQ9SBUe9se/cB7qRCVPMgkT6JlU/YtNfmWW8uB252 Fc2R23446R5bdu4MsyTWeQL7F1/a/XD5nPXvb8Xw= Received: from latitanza.investici.org (latitanza.investici.org [IPv6:2001:888:2000:56::19]) by sourceware.org (Postfix) with ESMTPS id CAE143858C50 for ; Wed, 2 Nov 2022 10:15:02 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org CAE143858C50 Received: from 1.mail-backend.investici.org (unknown [10.0.0.11]) by latitanza.investici.org (Postfix) with ESMTP id 4N2N6t07C0zGnxn for ; Wed, 2 Nov 2022 10:15:02 +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 4N2N6s6831z5t7d for ; Wed, 2 Nov 2022 10:15:01 +0000 (UTC) MIME-Version: 1.0 Date: Wed, 02 Nov 2022 10:15:01 +0000 To: gdb@sourceware.org Subject: Re: _WIN32_WINNT redefined? In-Reply-To: References: <6485dbfe07e21a1c451b17d3fda5b3d9@autistici.org> <41193fbdb742b1c2d4d7b4ab06561822@autistici.org> User-Agent: Roundcube Webmail Message-ID: <6acd12904c2bedb0a96162354d1ee8dd@autistici.org> 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 09:46, niXman via Gdb wrote: > 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? right, with commented out the entire PP block the build was successful! best!