From patchwork Wed May 8 19:00:07 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kai Tietz X-Patchwork-Id: 242634 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "localhost", Issuer "www.qmailtoaster.com" (not verified)) by ozlabs.org (Postfix) with ESMTPS id 1B7542C00ED for ; Thu, 9 May 2013 05:00:16 +1000 (EST) DomainKey-Signature: a=rsa-sha1; c=nofws; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender :mime-version:date:message-id:subject:from:to:cc:content-type; q=dns; s=default; b=jZz1jIARuZIQO6d9xseDZcZ1mHOdMhSWG01/QdinSe2 o9avKBrqHcLqv9BOLFQOtQDLNBPwYuGY7XqLeFjclB5x1HxIHYvMuROGSNWxAAIu TbVbDt0Ah8aGbNjZ0zrNucgEmJXEOgLVzRZj55g3TjIDQ3t7YkoAw56jEPpJWWV0 = DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender :mime-version:date:message-id:subject:from:to:cc:content-type; s=default; bh=AGG+kweco4Q652zMIRb4cuMfjTQ=; b=NFQN2D5urHYQgkFw2 ifV9jbWbZV99N9pBbtmpDEmHnd2BWmTrT8yY5jGHlcZZvfT2e0tlOjWgbjYSCYfB nONLY/5q3Fu+ALSiCvVk1aSdimxxoAD+9LGKNUAr3MGnrUeHOFsywr4Zymdqia7h Y/SOxOldOkFQMuXQDr70aoTZ9Q= Received: (qmail 5007 invoked by alias); 8 May 2013 19:00:10 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Delivered-To: mailing list gcc-patches@gcc.gnu.org Received: (qmail 4986 invoked by uid 89); 8 May 2013 19:00:10 -0000 X-Spam-SWARE-Status: No, score=-1.8 required=5.0 tests=AWL, BAYES_00, FREEMAIL_ENVFROM_END_DIGIT, FREEMAIL_FROM, RCVD_IN_DNSWL_LOW, RCVD_IN_HOSTKARMA_YE, SPF_PASS autolearn=ham version=3.3.1 X-Spam-User: qpsmtpd, 2 recipients Received: from mail-ia0-f178.google.com (HELO mail-ia0-f178.google.com) (209.85.210.178) by sourceware.org (qpsmtpd/0.84/v0.84-167-ge50287c) with ESMTP; Wed, 08 May 2013 19:00:09 +0000 Received: by mail-ia0-f178.google.com with SMTP id t29so2310133iag.37 for ; Wed, 08 May 2013 12:00:07 -0700 (PDT) MIME-Version: 1.0 X-Received: by 10.50.33.11 with SMTP id n11mr2950626igi.40.1368039607578; Wed, 08 May 2013 12:00:07 -0700 (PDT) Received: by 10.64.227.205 with HTTP; Wed, 8 May 2013 12:00:07 -0700 (PDT) Date: Wed, 8 May 2013 21:00:07 +0200 Message-ID: Subject: [patch libstdc++]: Fix PR/57212 From: Kai Tietz To: GCC Patches Cc: "libstdc++" , Paolo Carlini Hi, see for details http://gcc.gnu.org/bugzilla/show_bug.cgi?id=57212 ChangeLog libstdc++ 2013-05-08 Andoni Morales Alastruey PR libstdc++/57212 * include/Makefile.am (_GLIBCXX___MINGW32_GLIBCXX___): Modify to __MINGW32__. * include/Makefile: Regenerated. I will apply this patch as obvious fix for Andoni. Regards, Kai From 694df461711448770000326f4943bb147b3fc810 Mon Sep 17 00:00:00 2001 From: Andoni Morales Alastruey Date: Wed, 8 May 2013 15:30:00 +0200 Subject: [PATCH] libstdc++: fix define for MINGW32 --- libstdc++-v3/include/Makefile.am | 1 + 1 file changed, 1 insertion(+) diff --git a/libstdc++-v3/include/Makefile.am b/libstdc++-v3/include/Makefile.am index e6de256..06c1497 100644 --- a/libstdc++-v3/include/Makefile.am +++ b/libstdc++-v3/include/Makefile.am @@ -1125,6 +1125,7 @@ ${host_builddir}/gthr.h: ${toplevel_srcdir}/libgcc/gthr.h stamp-${host_alias} sed -e '/^#pragma/b' \ -e '/^#/s/\(${uppercase}${uppercase}*\)/_GLIBCXX_\1/g' \ -e 's/_GLIBCXX_SUPPORTS_WEAK/__GXX_WEAK__/g' \ + -e 's/_GLIBCXX___MINGW32_GLIBCXX___/__MINGW32__/g' \ -e 's,^#include "\(.*\)",#include ,g' \ < $< > $@