From owner-dev-commits-src-main@freebsd.org Thu May 20 17:42:37 2021 Return-Path: Delivered-To: dev-commits-src-main@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 4D3E3644C03 for ; Thu, 20 May 2021 17:42:37 +0000 (UTC) (envelope-from jrtc27@jrtc27.com) Received: from mail-wr1-f48.google.com (mail-wr1-f48.google.com [209.85.221.48]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (2048 bits) client-digest SHA256) (Client CN "smtp.gmail.com", Issuer "GTS CA 1O1" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4FmHBP1cJBz4rmm for ; Thu, 20 May 2021 17:42:37 +0000 (UTC) (envelope-from jrtc27@jrtc27.com) Received: by mail-wr1-f48.google.com with SMTP id d11so18488011wrw.8 for ; Thu, 20 May 2021 10:42:37 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:subject:from:in-reply-to:date:cc :content-transfer-encoding:message-id:references:to; bh=DD5J9xP9FCMUZ9HyHsOWuhxobAQG8y22hwkMVJsMWX8=; b=IWyqEfDWe0fByBXVIgWTz+W3nV5FRVgqfKnK3ChDNHKpjxeVsYryj2dPu0BCG9WCvN WTiU3Ss1X6zxyWBfSH9US0lwtPTsOWMMq7lS+yuaVRJlxzw4cI0N8pZ30yy009pUa5Ut Kko16oyF3WDaiD032GZWN3RstmOa6UuBE9b6h56TU1IpZQ3xLDBfEKyi+IvfPPx24f7X nQpHtPDYZCRdu+6dQydnKMFOWg6OsAdel0PalFeYtYpEcDEgSXyBW9KK6OLCGOExVoqq SiyGWLwHDG3r35hzb1AGqE4fd/lCnWDv6X+T3xNxNh3YTgncDA2sjSiWAMnVnWrt1eHR QDVQ== X-Gm-Message-State: AOAM533VifUYoUQSm2Aiiya938CfluCqaNgNFXnLUN7kUWDKzTQRMGV+ bpAz11mwWp8DhZgMI7vVs4yDQQ== X-Google-Smtp-Source: ABdhPJywIWabfgrrCc+Vyq2ksf1krYddFRFOGE4FO8cOAyLUHDRri065zP3MTQG1Sw6+xiD4lXP3Jw== X-Received: by 2002:a5d:4e0b:: with SMTP id p11mr5378977wrt.220.1621532555466; Thu, 20 May 2021 10:42:35 -0700 (PDT) Received: from [192.168.150.48] (trinity-students-nat.trin.cam.ac.uk. [131.111.193.104]) by smtp.gmail.com with ESMTPSA id y22sm11720988wma.36.2021.05.20.10.42.34 (version=TLS1_2 cipher=ECDHE-ECDSA-AES128-GCM-SHA256 bits=128/128); Thu, 20 May 2021 10:42:35 -0700 (PDT) Content-Type: text/plain; charset=us-ascii Mime-Version: 1.0 (Mac OS X Mail 14.0 \(3654.60.0.2.21\)) Subject: Re: git: d0ea5e467f3c - main - md5: portability fix -- include stdbool.h explicitly From: Jessica Clarke In-Reply-To: <202105201730.14KHUaq5005019@gitrepo.freebsd.org> Date: Thu, 20 May 2021 18:42:33 +0100 Cc: "src-committers@freebsd.org" , "dev-commits-src-all@freebsd.org" , "dev-commits-src-main@freebsd.org" Content-Transfer-Encoding: quoted-printable Message-Id: <1D5D272D-639A-4CA3-BCBC-F1386E6991DB@freebsd.org> References: <202105201730.14KHUaq5005019@gitrepo.freebsd.org> To: Warner Losh X-Mailer: Apple Mail (2.3654.60.0.2.21) X-Rspamd-Queue-Id: 4FmHBP1cJBz4rmm X-Spamd-Bar: ---- Authentication-Results: mx1.freebsd.org; none X-Spamd-Result: default: False [-4.00 / 15.00]; REPLY(-4.00)[] X-BeenThere: dev-commits-src-main@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Commit messages for the main branch of the src repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 May 2021 17:42:37 -0000 =3DOn 20 May 2021, at 18:30, Warner Losh wrote: >=20 > The branch main has been updated by imp: >=20 > URL: = https://cgit.FreeBSD.org/src/commit/?id=3Dd0ea5e467f3c44909667c5ee90c3d266= 53fb6687 >=20 > commit d0ea5e467f3c44909667c5ee90c3d26653fb6687 > Author: Warner Losh > AuthorDate: 2021-05-20 17:26:46 +0000 > Commit: Warner Losh > CommitDate: 2021-05-20 17:28:18 +0000 >=20 > md5: portability fix -- include stdbool.h explicitly >=20 > stdbool.h needs to be included to use type bool variables. Due to > namespace pollution, this gets brought in on FreeBSD, but not on > other systems. Include it explicilty. Thanks! > Noticed by: arichards@ For once a cross-building issue not reported by Alex, though still Cambridge :) Jess