From patchwork Mon Jun 19 16:19:14 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Florian Weimer X-Patchwork-Id: 777848 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 3wrx4r59vjz9s7m for ; Tue, 20 Jun 2017 02:19:24 +1000 (AEST) Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; secure) header.d=sourceware.org header.i=@sourceware.org header.b="hFomDOn3"; dkim-atps=neutral DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:date:to:subject:mime-version:content-type :content-transfer-encoding:message-id:from; q=dns; s=default; b= s9NBAi/zYFezursGJ40iFFDUhQu3FssmTzSh6l87B/BfpFW280wOH9zq1kfgoAmj 0A4gNgsk252jnIWR1ViCSIg9cSBCEiu/5NYA/g0lz9+3ATXPY0Q4mZTTIYAkmlg8 sVOJ/h5MzjV/5PxO5BOz8RfN0XortK1RF+S9MaWPKLI= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:date:to:subject:mime-version:content-type :content-transfer-encoding:message-id:from; s=default; bh=g7ZSBE arLBWG20Hqvc31igqV6t4=; b=hFomDOn3FttuaNu73NmB1qmMHNWRTDIHWfozgK tDLjIQtZpVir1dHMEcdY/Mg5PXGyQaBNOZBmvBEqvEb4p4fNASxTWDIB8hT2eNg5 4kEvGmQhEqqhGoNxG3n4zjmaGUqhfsXJVLm2q6+zlulaawYagGMp7zjc3TdkDzua d+5ss= Received: (qmail 82915 invoked by alias); 19 Jun 2017 16:19:13 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Delivered-To: mailing list libc-alpha@sourceware.org Received: (qmail 82886 invoked by uid 89); 19 Jun 2017 16:19:12 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-26.9 required=5.0 tests=BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, SPF_HELO_PASS, T_RP_MATCHES_RCVD autolearn=ham version=3.3.2 spammy= X-HELO: mx1.redhat.com DMARC-Filter: OpenDMARC Filter v1.3.2 mx1.redhat.com 5C5A44E884 Authentication-Results: ext-mx09.extmail.prod.ext.phx2.redhat.com; dmarc=none (p=none dis=none) header.from=redhat.com Authentication-Results: ext-mx09.extmail.prod.ext.phx2.redhat.com; spf=pass smtp.mailfrom=fweimer@redhat.com DKIM-Filter: OpenDKIM Filter v2.11.0 mx1.redhat.com 5C5A44E884 Date: Mon, 19 Jun 2017 18:19:14 +0200 To: libc-alpha@sourceware.org Subject: [PATCH] intl/Makefile: Prevent use of alloca, VLAs User-Agent: Heirloom mailx 12.5 7/5/10 MIME-Version: 1.0 Message-Id: <20170619161914.9CB16402AEC0E@oldenburg.str.redhat.com> From: fweimer@redhat.com (Florian Weimer) 2017-06-19 Florian Weimer * intl/Makefile (CFLAGS-.o, CFLAGS-.os): Add $(CFLAGS-no-alloca). diff --git a/intl/Makefile b/intl/Makefile index 60d5d24..c5b882c 100644 --- a/intl/Makefile +++ b/intl/Makefile @@ -21,6 +21,9 @@ subdir = intl include ../Makeconfig +CFLAGS-.o += $(CFLAGS-no-alloca) +CFLAGS-.os += $(CFLAGS-no-alloca) + headers = libintl.h routines = bindtextdom dcgettext dgettext gettext \ dcigettext dcngettext dngettext ngettext \