From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andreas Enge Subject: Mips and xorg-server Date: Fri, 8 Aug 2014 22:07:51 +0200 Message-ID: <20140808200751.GA30509@debian> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:54822) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XFqSH-0001cV-3U for guix-devel@gnu.org; Fri, 08 Aug 2014 16:08:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XFqSB-0005Rv-7z for guix-devel@gnu.org; Fri, 08 Aug 2014 16:08:01 -0400 Received: from mout.kundenserver.de ([212.227.126.131]:63739) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XFqSA-0005Ra-Te for guix-devel@gnu.org; Fri, 08 Aug 2014 16:07:55 -0400 Content-Disposition: inline List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: guix-devel@gnu.org Hello, building xorg-server on mips currently fails with checking for XLIB... yes checking for GL... yes checking for DRIPROTO... yes checking for DRI... no configure: error: Package requirements (glproto >= 1.4.14 dri >= 7.8.0) were not met: No package 'dri' found The reason is that the file dri.pc is not found in the mesa package for mips. When comparing http://hydra.gnu.org/build/79282/log/raw (x86_64) and http://hydra.gnu.org/build/78142/log/raw (mips) the first configures with checking for X11... yes checking for GLPROTO... yes checking for DRI2PROTO... yes checking for XF86VIDMODE... yes checking for DRIGL... yes etc., the second with checking for X11... yes checking for XLIBGL... yes etc.. The first builds drivers in src/mesa/drivers/dri, the second in src/mesa/drivers/x11. Does anybody know what to do? Andreas