From owner-svn-src-head@FreeBSD.ORG Sun May 10 22:11:24 2015 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 43AE7F67; Sun, 10 May 2015 22:11:24 +0000 (UTC) Received: from melamine.cuivre.fr.eu.org (houdart.cuivre.fr.eu.org [81.57.40.110]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id F1ACD129B; Sun, 10 May 2015 22:11:23 +0000 (UTC) Received: by melamine.cuivre.fr.eu.org (Postfix, from userid 1000) id 215CA1909B; Mon, 11 May 2015 00:11:21 +0200 (CEST) Date: Mon, 11 May 2015 00:11:21 +0200 From: Thomas Quinot To: Ian Lepore Cc: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: Re: svn commit: r282726 - head/lib/libmd Message-ID: <20150510221121.GB10340@melamine.cuivre.fr.eu.org> References: <201505101321.t4ADLa54030049@svn.freebsd.org> <1431266347.6170.221.camel@freebsd.org> <20150510142627.GA77866@melamine.cuivre.fr.eu.org> <1431272444.6170.231.camel@freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable In-Reply-To: <1431272444.6170.231.camel@freebsd.org> X-message-flag: WARNING! Using Outlook can damage your computer. User-Agent: Mutt/1.5.23 (2014-03-12) X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 May 2015 22:11:24 -0000 * Ian Lepore, 2015-05-10 : > That gets past the bootstrapping problem, now it dies like this: >=20 > --- lib/libcrypt__L --- > --- crypt-md5.So --- > cc -fpic -DPIC -O -pipe -I/local/build/staging/freebsd/wand/src/lib/l= ibcrypt/../libmd -I/local/build/staging/freebsd/wand/src/lib/libcrypt/../li= butil -I/local/build/staging/freebsd/wand/src/lib/libcrypt -DHAS_DES -DHAS_= BLOWFISH -DMD4Init=3D__MD4Init -DMD4Final=3D__MD4Final -DMD4Update=3D__MD4U= pdate -DMD4Pad=3D__MD4Pad -DMD5Init=3D__MD5Init -DMD5Final=3D__MD5Final -DM= D5Update=3D__MD5Update -DMD5Pad=3D__MD5Pad -DSHA256_Init=3D__SHA256_Init -D= SHA256_Final=3D__SHA256_Final -DSHA256_Update=3D__SHA256_Update -DSHA512_In= it=3D__SHA512_Init -DSHA512_Final=3D__SHA512_Final -DSHA512_Update=3D__SHA5= 12_Update -std=3Dgnu99 -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-= uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -Wno-u= nused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-paren= theses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-local= -typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Qunused-= arguments -c /local/build/staging/freebsd/wand/src/lib/libcrypt/crypt-md5.c= -o crypt-md5.So >=20 > [...] >=20 > --- lib/libcrypt__L --- > In file included from /local/build/staging/freebsd/wand/src/lib/libcrypt/= crypt-md5.c:33: > /local/build/staging/freebsd/wand/src/lib/libcrypt/../libmd/md5.h:10:9: w= arning: 'MD5Init' macro redefined [-Wmacro-redefined] > #define MD5Init _libmd_MD5Init > ^ > :8:9: note: previous definition is here > #define MD5Init __MD5Init > ^ Cumulative fix for both this issue and the previous one committed as rev. 282736. I was able to get a successul buildworld and buildkernel with -j12. Apologies for the breakage! Thomas.