From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 30538 invoked by alias); 21 Jun 2004 21:57:21 -0000 Mailing-List: contact libc-hacker-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-hacker-owner@sources.redhat.com Received: (qmail 30522 invoked from network); 21 Jun 2004 21:57:21 -0000 Received: from unknown (HELO sunsite.ms.mff.cuni.cz) (195.113.15.26) by sourceware.org with SMTP; 21 Jun 2004 21:57:21 -0000 Received: from sunsite.ms.mff.cuni.cz (sunsite.mff.cuni.cz [127.0.0.1]) by sunsite.ms.mff.cuni.cz (8.12.8/8.12.8) with ESMTP id i5LJgi3j022892; Mon, 21 Jun 2004 21:42:44 +0200 Received: (from jakub@localhost) by sunsite.ms.mff.cuni.cz (8.12.8/8.12.8/Submit) id i5LJgiTv022888; Mon, 21 Jun 2004 21:42:44 +0200 Date: Mon, 21 Jun 2004 21:57:00 -0000 From: Jakub Jelinek To: qboosh@pld-linux.org, Ulrich Drepper Cc: Glibc hackers Subject: [PATCH] Fix alpha build with mq_* support, [BZ #231] Message-ID: <20040621194244.GI5191@sunsite.ms.mff.cuni.cz> Reply-To: Jakub Jelinek Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4i X-SW-Source: 2004-06/txt/msg00036.txt.bz2 Hi! Can you please try this patch? 2004-06-21 Jakub Jelinek [BZ #231] * sysdeps/unix/alpha/Makefile: New file. * sysdeps/unix/alpha/rt-sysdep.S: New file. Reported by Jakub Bogusz . --- libc/sysdeps/unix/alpha/rt-sysdep.S.jj 2004-06-21 23:53:45.885782805 +0200 +++ libc/sysdeps/unix/alpha/rt-sysdep.S 2004-04-18 04:28:40.000000000 +0200 @@ -0,0 +1 @@ +#include --- libc/sysdeps/unix/alpha/Makefile.jj 2004-06-21 23:53:52.527592506 +0200 +++ libc/sysdeps/unix/alpha/Makefile 2004-06-21 23:53:56.979794613 +0200 @@ -0,0 +1,3 @@ +ifeq ($(subdir),rt) +librt-routines += rt-sysdep +endif Jakub