From patchwork Mon Jan 26 13:07:19 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Andreas Schwab X-Patchwork-Id: 4818 Received: (qmail 9855 invoked by alias); 26 Jan 2015 13:07:27 -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 9837 invoked by uid 89); 26 Jan 2015 13:07:23 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-1.9 required=5.0 tests=AWL, T_RP_MATCHES_RCVD autolearn=ham version=3.3.2 X-HELO: mx2.suse.de From: Andreas Schwab To: libc-alpha@sourceware.org Subject: [PATCH] Include in X-Yow: .. I see TOILET SEATS... Date: Mon, 26 Jan 2015 14:07:19 +0100 Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.4 (gnu/linux) MIME-Version: 1.0 Architectures which don't use hp-timing-common.h don't include via , causing this error: In file included from ../nptl/pthreadP.h:35:0, from ../sysdeps/nptl/allocrtsig.c:19: ../sysdeps/unix/sysv/linux/nptl-signals.h:20:25: warning: "__SIGRTMIN" is not defined [-Wundef] #define SIGCANCEL __SIGRTMIN ^ ../sysdeps/unix/sysv/linux/nptl-signals.h:26:25: note: in expansion of macro 'SIGCANCEL' #define SIGTIMER SIGCANCEL ^ ../sysdeps/nptl/allocrtsig.c:30:48: note: in expansion of macro 'SIGTIMER' #if defined SIGTIMER && (!defined SIGCANCEL || SIGTIMER != SIGCANCEL) ^ Andreas. * sysdeps/unix/sysv/linux/nptl-signals.h: Include . diff --git a/sysdeps/unix/sysv/linux/nptl-signals.h b/sysdeps/unix/sysv/linux/nptl-signals.h index f45f170..b7b74ad 100644 --- a/sysdeps/unix/sysv/linux/nptl-signals.h +++ b/sysdeps/unix/sysv/linux/nptl-signals.h @@ -16,6 +16,8 @@ License along with the GNU C Library; if not, see . */ +#include + /* The signal used for asynchronous cancelation. */ #define SIGCANCEL __SIGRTMIN