From owner-freebsd-stable@FreeBSD.ORG Sat Nov 3 23:38:14 2012 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 24F37DE2 for ; Sat, 3 Nov 2012 23:38:14 +0000 (UTC) (envelope-from dim@FreeBSD.org) Received: from tensor.andric.com (tensor.andric.com [87.251.56.140]) by mx1.freebsd.org (Postfix) with ESMTP id CC0848FC08 for ; Sat, 3 Nov 2012 23:38:13 +0000 (UTC) Received: from [192.168.0.6] (spaceball.home.andric.com [192.168.0.6]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by tensor.andric.com (Postfix) with ESMTPSA id 835AB5C59; Sun, 4 Nov 2012 00:38:07 +0100 (CET) Message-ID: <5095AAE1.5070901@FreeBSD.org> Date: Sun, 04 Nov 2012 00:38:09 +0100 From: Dimitry Andric Organization: The FreeBSD Project User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko/17.0 Thunderbird/17.0 MIME-Version: 1.0 To: "Oleg V. Nauman" Subject: Re: WITH_LIBCPLUSPLUS buildworld broken on STABLE-9 References: <20121102202258.12004cox9k4zrq0w@webmail7.opentransfer.com> In-Reply-To: <20121102202258.12004cox9k4zrq0w@webmail7.opentransfer.com> Content-Type: multipart/mixed; boundary="------------000802080608050502020505" Cc: freebsd-stable@freebsd.org X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 03 Nov 2012 23:38:14 -0000 This is a multi-part message in MIME format. --------------000802080608050502020505 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit On 2012-11-02 19:22, Oleg V. Nauman wrote: ... > /usr/src/lib/libc++/../../contrib/libc++/include/cstdlib:134:9: error: > no member named > 'at_quick_exit' in the global namespace > using ::at_quick_exit; > ~~^ This was fixed in head by r242472, I will merge it as soon as the MFC timer expires (Nov 5). Sorry about the breakage, this was my fault. In the meantime, you can use the attached diff. --------------000802080608050502020505 Content-Type: text/x-diff; name="mfc-r242472.diff" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="mfc-r242472.diff" Index: lib/libc++/Makefile =================================================================== --- lib/libc++/Makefile (revision 242535) +++ lib/libc++/Makefile (working copy) @@ -53,7 +53,7 @@ cxxrt_${_S}: WARNS= 0 CFLAGS+= -I${HDRDIR} -I${LIBCXXRTDIR} -nostdlib -DLIBCXXRT -.if !defined(CXXFLAGS) || ${CXXFLAGS:M-std=*}" == "" +.if empty(CXXFLAGS:M-std=*) CXXFLAGS+= -std=c++0x .endif --------------000802080608050502020505--