From patchwork Thu Aug 21 10:57:43 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Siddhesh Poyarekar X-Patchwork-Id: 2500 Received: (qmail 7028 invoked by alias); 21 Aug 2014 11:17:36 -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 7004 invoked by uid 89); 21 Aug 2014 11:17:35 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.8 required=5.0 tests=AWL, BAYES_20, 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 19/19] Define NOT_IN when building outside glibc. Date: Thu, 21 Aug 2014 16:27:43 +0530 Message-Id: <1408618663-2281-20-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> * nptl_db/structs.def [!_LIBC]: Define NOT_IN. --- nptl_db/structs.def | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/nptl_db/structs.def b/nptl_db/structs.def index ea8b7ac..82e7157 100644 --- a/nptl_db/structs.def +++ b/nptl_db/structs.def @@ -16,6 +16,10 @@ License along with the GNU C Library; if not, see . */ +#ifndef _LIBC +# define NOT_IN(lib) (0) +#endif + #ifndef DB_STRUCT_ARRAY_FIELD # define DB_STRUCT_ARRAY_FIELD(type, field) DB_STRUCT_FIELD (type, field) # define DB_ARRAY_VARIABLE(name) DB_VARIABLE (name)