From patchwork Sat Jul 19 17:55:23 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jonathan Wakely X-Patchwork-Id: 371855 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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id E7EE814012E for ; Sun, 20 Jul 2014 03:55:36 +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:date :from:to:subject:message-id:mime-version:content-type; q=dns; s= default; b=YzLdOfltOjIXtqCFDdJlLeUIVt0dDPUHI4nj1ll2eWy7l+maqUZhr sTD9Y1egb36b9cZck2pAidIEX5Z2tdiJYY8dWTJ0cNoxjY0eqv4J/A7mJiYQTncb weJjQyIAUXYnCm9NTE4n5G37QWV5wi1wpAJXqUQ79ifG1h5OExnTSo= 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:date :from:to:subject:message-id:mime-version:content-type; s= default; bh=LOzxwq1M+M3e7cpGyCFhx208USE=; b=FHpHX+QzOWWmYprgyxfF n6OyNNGGfHVKKuI+QDGQwLx4vFMevjFdIZNYt62LfDtUGNW9JRT/7pcIfDLfKhDr lFj0e00UIr3fe5qe156ImGfcwUPba07Pv1r0/5COyDkWOzedKVVtt6KPp7QWzuvL xAOulG7HM6n2c/NMdbBpgLU= Received: (qmail 25896 invoked by alias); 19 Jul 2014 17:55:29 -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 25854 invoked by uid 89); 19 Jul 2014 17:55:28 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.0 required=5.0 tests=AWL, BAYES_00, RP_MATCHES_RCVD, SPF_HELO_PASS, SPF_PASS autolearn=ham version=3.3.2 X-Spam-User: qpsmtpd, 2 recipients X-HELO: mx1.redhat.com Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-GCM-SHA384 encrypted) ESMTPS; Sat, 19 Jul 2014 17:55:26 +0000 Received: from int-mx09.intmail.prod.int.phx2.redhat.com (int-mx09.intmail.prod.int.phx2.redhat.com [10.5.11.22]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id s6JHtOnB001931 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=OK); Sat, 19 Jul 2014 13:55:24 -0400 Received: from localhost (ovpn-116-30.ams2.redhat.com [10.36.116.30]) by int-mx09.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id s6JHtN7S007828; Sat, 19 Jul 2014 13:55:24 -0400 Date: Sat, 19 Jul 2014 18:55:23 +0100 From: Jonathan Wakely To: libstdc++@gcc.gnu.org, gcc-patches@gcc.gnu.org Subject: [patch] fix libstdc++ configure output Message-ID: <20140719175523.GH2361@redhat.com> MIME-Version: 1.0 Content-Disposition: inline User-Agent: Mutt/1.5.23 (2014-03-12) Fix a minor issue in the configure output. Tested x86_64-linux, committed to trunk. commit 199a8ec797d04b96f36d64ed0fb064209ff07c04 Author: Jonathan Wakely Date: Sat Jul 19 18:23:12 2014 +0100 * acinclude.m4 (GLIBCXX_CHECK_SDT_H): Replace AC_MSG_RESULT with AC_MSG_CHECKING. diff --git a/libstdc++-v3/acinclude.m4 b/libstdc++-v3/acinclude.m4 index 69b165f..2650a5a 100644 --- a/libstdc++-v3/acinclude.m4 +++ b/libstdc++-v3/acinclude.m4 @@ -3806,7 +3806,7 @@ dnl Check to see if sys/sdt.h exists and that it is suitable for use. dnl Some versions of sdt.h were not compatible with C++11. dnl AC_DEFUN([GLIBCXX_CHECK_SDT_H], [ - AC_MSG_RESULT([for suitable sys/sdt.h]) + AC_MSG_CHECKING([for suitable sys/sdt.h]) # Note that this test has to be run with the C language. # Otherwise, sdt.h will try to include some headers from # libstdc++ itself.