From patchwork Wed Jan 20 20:14:12 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Juan Quintela X-Patchwork-Id: 43360 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [199.232.76.165]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 4B7A3B7CD6 for ; Thu, 21 Jan 2010 07:58:27 +1100 (EST) Received: from localhost ([127.0.0.1]:40962 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NXhVu-0006SW-18 for incoming@patchwork.ozlabs.org; Wed, 20 Jan 2010 15:50:54 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NXgwz-0003he-KK for qemu-devel@nongnu.org; Wed, 20 Jan 2010 15:14:49 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1NXgwu-0003aS-BV for qemu-devel@nongnu.org; Wed, 20 Jan 2010 15:14:49 -0500 Received: from [199.232.76.173] (port=60175 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NXgwt-0003Zq-UQ for qemu-devel@nongnu.org; Wed, 20 Jan 2010 15:14:44 -0500 Received: from mx1.redhat.com ([209.132.183.28]:3815) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1NXgwt-0002fo-FN for qemu-devel@nongnu.org; Wed, 20 Jan 2010 15:14:43 -0500 Received: from int-mx08.intmail.prod.int.phx2.redhat.com (int-mx08.intmail.prod.int.phx2.redhat.com [10.5.11.21]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id o0KKEgGv014117 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Wed, 20 Jan 2010 15:14:42 -0500 Received: from localhost.localdomain (ovpn01.gateway.prod.ext.phx2.redhat.com [10.5.9.1]) by int-mx08.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id o0KKEJUp017611; Wed, 20 Jan 2010 15:14:41 -0500 From: Juan Quintela To: qemu-devel@nongnu.org Date: Wed, 20 Jan 2010 21:14:12 +0100 Message-Id: In-Reply-To: References: In-Reply-To: References: X-Scanned-By: MIMEDefang 2.67 on 10.5.11.21 X-detected-operating-system: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Qemu-devel] [PATCH 16/17] Check availavility of -fstack-protector-all X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Signed-off-by: Juan Quintela --- configure | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/configure b/configure index 5556b9d..d8af978 100755 --- a/configure +++ b/configure @@ -101,7 +101,7 @@ QEMU_CFLAGS="-D_FORTIFY_SOURCE=2 $QEMU_CFLAGS" QEMU_CFLAGS="-I. -I\$(SRC_PATH) $QEMU_CFLAGS" LDFLAGS="-g $LDFLAGS" -gcc_flags="-Wold-style-declaration -Wold-style-definition" +gcc_flags="-Wold-style-declaration -Wold-style-definition -fstack-protector-all" cat > $TMPC << EOF int main(void) { } EOF