From patchwork Tue Feb 24 05:13:51 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Mike Frysinger X-Patchwork-Id: 442799 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 2B040140082 for ; Tue, 24 Feb 2015 16:14:01 +1100 (AEDT) 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; q=dns; s= default; b=DP6Pmce5/Hng69IwJFFlQXTW3wATf1o1h/QhB89UZOlGjuerh/MYw yWnIjtFn9e/4rkVBCQTeux0Ol10l6I0UnkTLzK+9UesFLGbJ6XTUUJeyOpN1lHN1 KLgSkk/rhPWZzcIZhunhara3VWgSa99Gz7OwOb6esuG05mmRiIwFV4= 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; s=default; bh=V06m3cWN6UvH/GFRwr0dZ4mevOM=; b=Dv8sAkNtwZrA/88ucany1RugmnI0 1l98g4y4k8uR45FTOWLjxqZjaXRjLw1971d+XM3oM923ZyLFfaZhiNFo/Cn/ZxMY OjZCC+Ib1K5Ye6/VSXtXZDbRRxdbK+Trql9pwrjegQfeb5wft5X1ZJYrkAUez79o 6EMYpvdW2RbOew0= Received: (qmail 3141 invoked by alias); 24 Feb 2015 05:13:56 -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 3132 invoked by uid 89); 24 Feb 2015 05:13:55 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.9 required=5.0 tests=AWL, BAYES_00, SPF_PASS, T_RP_MATCHES_RCVD autolearn=ham version=3.3.2 X-HELO: smtp.gentoo.org From: Mike Frysinger To: libc-alpha@sourceware.org Cc: carlos@systemhalted.org Subject: [PATCH] hppa: fix build failure with RTLD_PRIVATE_ERRNO Date: Tue, 24 Feb 2015 00:13:51 -0500 Message-Id: <1424754831-18311-1-git-send-email-vapier@gentoo.org> Pull in dl-sysdep.h like every other linux sysdep.h header does when it wants to use RTLD_PRIVATE_ERRNO. Committed as obvious since it fixes a build error; hopefully i'm not being presumptuous. --- sysdeps/unix/sysv/linux/hppa/sysdep.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sysdeps/unix/sysv/linux/hppa/sysdep.h b/sysdeps/unix/sysv/linux/hppa/sysdep.h index eab1a22..ac47814 100644 --- a/sysdeps/unix/sysv/linux/hppa/sysdep.h +++ b/sysdeps/unix/sysv/linux/hppa/sysdep.h @@ -21,6 +21,9 @@ #include #include +/* Defines RTLD_PRIVATE_ERRNO. */ +#include + /* In order to get __set_errno() definition in INLINE_SYSCALL. */ #ifndef __ASSEMBLER__ #include