From owner-freebsd-x11@FreeBSD.ORG Tue May 11 00:03:19 2004 Return-Path: Delivered-To: freebsd-x11@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8D66C16A4CE for ; Tue, 11 May 2004 00:03:19 -0700 (PDT) Received: from ares.wolfpond.org (ns1.wolfpond.org [62.212.96.219]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4AA3343D5C for ; Tue, 11 May 2004 00:03:15 -0700 (PDT) (envelope-from ftigeot@wolfpond.org) Received: from aoi.wolfpond.org (aoi.wolfpond.org [IPv6:2001:7a8:24db:1:20c:76ff:feb4:27e1]) by ares.wolfpond.org (8.12.10/8.12.10) with ESMTP id i4B73DxJ015457; Tue, 11 May 2004 09:03:13 +0200 (CEST) (envelope-from ftigeot@aoi.wolfpond.org) Received: from aoi.wolfpond.org (localhost [127.0.0.1]) by aoi.wolfpond.org (8.12.10/8.12.10) with ESMTP id i4B73BqX022843; Tue, 11 May 2004 09:03:11 +0200 (CEST) (envelope-from ftigeot@aoi.wolfpond.org) Received: (from ftigeot@localhost) by aoi.wolfpond.org (8.12.10/8.12.10/Submit) id i4B739X2022842; Tue, 11 May 2004 09:03:09 +0200 (CEST) (envelope-from ftigeot) Date: Tue, 11 May 2004 09:03:09 +0200 From: Francois Tigeot To: Eric Anholt Message-ID: <20040511070309.GA22234@aoi.wolfpond.org> References: <200405082350.i48NoTeN014588@freefall.freebsd.org> <20040509070925.GA16043@aoi.wolfpond.org> <1084090864.1492.40.camel@leguin> <20040509084228.GB16043@aoi.wolfpond.org> <1084168333.54825.31.camel@leguin> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="5vNYLRcllDrimb99" Content-Disposition: inline In-Reply-To: <1084168333.54825.31.camel@leguin> User-Agent: Mutt/1.4.2.1i cc: x11@freebsd.org Subject: Re: ports/66404: New port: x11-servers/X.org-devel X-BeenThere: freebsd-x11@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: X11 on FreeBSD -- maintaining and support List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 May 2004 07:03:19 -0000 --5vNYLRcllDrimb99 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Sun, May 09, 2004 at 10:52:13PM -0700, Eric Anholt wrote: > On Sun, 2004-05-09 at 01:42, Francois Tigeot wrote: > > On Sun, May 09, 2004 at 01:21:04AM -0700, Eric Anholt wrote: > > > > > > As far as current status, I'm running the X.Org server on my machine > > > with the mix of X.Org and fd.o libraries we have (with a few more that > > > are uncommitted). > > [...] > > > > Is there any place were these can be downloaded ? > > CVS, now. I think I got it all in there, including the server. I believe you forgot some bits: I tried to compile a full X11 environment without XFree86-libraries and some ports failed due to a missing X11/Intrinsic.h file. > > > - Check xorg-server build on non-x86 > > > > This should not be a problem: my primary workstation is an amd64 machine > > and the server is working nicely on it. > > I believe I only had to add a small patch for pci stuff. > > Excellent, I'd be happy to get patches for it. Patch attached. > The patch attached is what I've been using to make other ports depend on > xlibs. Thanks, it seems to help for some ports. -- Francois Tigeot --5vNYLRcllDrimb99 Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename=patch-bus-Imakefile --- programs/Xserver/hw/xfree86/os-support/bus/Imakefile.orig Mon Mar 15 16:37:38 2004 +++ programs/Xserver/hw/xfree86/os-support/bus/Imakefile Wed Apr 28 20:03:43 2004 @@ -80,7 +80,8 @@ PCIDRVRSRC = ix86Pci.c linuxPci.c PCIDRVROBJ = ix86Pci.o linuxPci.o -#elif defined(FreeBSDArchitecture) && defined(AlphaArchitecture) +#elif defined(FreeBSDArchitecture) && \ + (defined(AlphaArchitecture) || defined(AMD64Architecture)) XCOMM generic FreeBSD PCI driver (using /dev/pci) --5vNYLRcllDrimb99--