From patchwork Thu Aug 21 10:57:39 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Siddhesh Poyarekar X-Patchwork-Id: 381928 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 7BF4B140096 for ; Thu, 21 Aug 2014 21:52:11 +1000 (EST) DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:from:to:cc:subject:date:message-id:in-reply-to :references; q=dns; s=default; b=sk1dYsxzjImlARtk7Ztz7Dl4347TOd9 oUFmQ6X2Mw63SM/pBr3wTofsqMlHzX5zzFXutpxULhtNXijZj5tPum4cIDY7feIH LLXIojY3OAJSDaT3l1hdjv4R+L1ILlmBoOsLfbMVmvFPzdbNZ+rI0eobSeuOFocJ e2gRL3P2WBGA= 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:from:to:cc:subject:date:message-id:in-reply-to :references; s=default; bh=nq9L4w6Q/7WZV9i2TVP8k4OnsMA=; b=HDk2L E5CRcPJuQCcriIVkCPrdcSWks3sdQEHJTWhWOjjc1SP8Cim5uzDrFVP8ZnKHZMT9 oREW/RMN2PP6bJIOKOx8sChst+T9mi2bQaGc/N18vr1V0sZYV1j5l1mGfZJ/8t0b 7LDuZtLzABoluJLdVno/UhvQcU11SnPtGTq4js= Received: (qmail 28254 invoked by alias); 21 Aug 2014 11:52:06 -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 28241 invoked by uid 89); 21 Aug 2014 11:52:05 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-3.8 required=5.0 tests=AWL, BAYES_00, RP_MATCHES_RCVD, SPF_HELO_PASS, SPF_PASS autolearn=ham version=3.3.2 X-HELO: mx1.redhat.com From: Siddhesh Poyarekar To: libc-alpha@sourceware.org Cc: Siddhesh Poyarekar Subject: [PATCH 15/19] Remove last place for definition of IS_IN_* macros Date: Thu, 21 Aug 2014 16:27:39 +0530 Message-Id: <1408618663-2281-16-git-send-email-siddhesh@redhat.com> In-Reply-To: <1408618663-2281-1-git-send-email-siddhesh@redhat.com> References: <1408618663-2281-1-git-send-email-siddhesh@redhat.com> Ignoring IS_IN_build, which has a different purpose altogether, this patch removes the last bit of IS_IN_* macro definitions. Now barring NOT_IN_libc, all cases use the IN_MODULE scheme. Generated code unchanged on x86_64. * extra-lib.mk (CPPFLAGS-$(lib)): Remove IS_IN_$(lib). --- extra-lib.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extra-lib.mk b/extra-lib.mk index c719bd9..7cdf823 100644 --- a/extra-lib.mk +++ b/extra-lib.mk @@ -106,4 +106,4 @@ ifneq (,$(cpp-srcs-left)) include $(patsubst %,$(..)cppflags-iterator.mk,$(cpp-srcs-left)) endif -CPPFLAGS-$(lib) := -DNOT_IN_libc=1 -DIS_IN_$(lib)=1 +CPPFLAGS-$(lib) := -DNOT_IN_libc=1