From owner-freebsd-current@FreeBSD.ORG Wed Dec 3 13:01:02 2003 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EB11416A4CE for ; Wed, 3 Dec 2003 13:01:01 -0800 (PST) Received: from moo.sysabend.org (moo.sysabend.org [66.111.41.70]) by mx1.FreeBSD.org (Postfix) with ESMTP id 06A9F43FE0 for ; Wed, 3 Dec 2003 13:01:00 -0800 (PST) (envelope-from ragnar@sysabend.org) Received: by moo.sysabend.org (Postfix, from userid 1004) id 3F6509B0; Wed, 3 Dec 2003 13:00:59 -0800 (PST) Received: from localhost (localhost [127.0.0.1]) by moo.sysabend.org (Postfix) with ESMTP id 3E25494E; Wed, 3 Dec 2003 13:00:59 -0800 (PST) Date: Wed, 3 Dec 2003 13:00:59 -0800 (PST) From: Jamie Bowden To: Dan Nelson In-Reply-To: <20031203192914.GE32713@dan.emsphone.com> Message-ID: <20031203125331.I21631-200000@moo.sysabend.org> X-representing: Only myself. X-badge: We don't need no stinking badges. X-obligatory-profanity: Fuck X-moo: Moo. MIME-Version: 1.0 Content-Type: MULTIPART/Mixed; BOUNDARY="ctP54qlpMx3WjD+/" Content-ID: <20031203125331.L21631@moo.sysabend.org> Content-Disposition: INLINE cc: Mike Hunter cc: current@freebsd.org Subject: Re: /usr/ports/xll/XFree86-4 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 03 Dec 2003 21:01:02 -0000 This message is in MIME format. The first part should be readable text, while the remaining parts are likely unreadable without MIME-aware tools. Send mail to mime@docserver.cac.washington.edu for more info. --ctP54qlpMx3WjD+/ Content-Type: TEXT/PLAIN; CHARSET=US-ASCII Content-ID: <20031203125331.L21631@moo.sysabend.org> Content-Disposition: INLINE On Wed, 3 Dec 2003, Dan Nelson wrote: > In the last episode (Dec 03), Mike Hunter said: > > On Dec 02, "Jamie Bowden" wrote: > > > I have a new machine that I've just installed 5.1-R on, and cvsup'd > > > to -C. I'm attempting to build X, and am getting a core dump from > > > rman during the process. > > > > I had this happen too. I did something really hack-ish to get around > > it (like delete that documentation or some other unspeakable hack.) > > The coredump is due to bugs in the rman command (which is installed by > the imake port, believe it or not). I submitted a bugreport on it in > July, and hopefully it will be in Xfree86 4.4.0. Installing the > textproc/rman port may mask the bug until then, or you can drop this > file into ports/devel/imake-4/files and rebuild imake. Installing /usr/ports/emulators/linux_compat seems to fix this. I have no idea why, but I went ahead and installed it so I could install the Nvidia X driver. After I did that (built and installed linux_compat and built and installed the Nvidia driver), I went ahead and re-entered x11/XFree86-4/ and did a make install again (mostly just looking for the error so I could comment the lines out of the makefile), and it built and installed (after I rebuilt and reinstalled imake-4, just on principle). There's an odd dependency hiding in there somewhere. Now I just have to figure out why X only believes this LCD is capable of 640x480 or 320x240 instead of the 1920x1600 it's actually capable of, so back to -mobile I go. Jamie Bowden -- "It was half way to Rivendell when the drugs began to take hold" Hunter S Tolkien "Fear and Loathing in Barad Dur" Iain Bowen --ctP54qlpMx3WjD+/ Content-Type: TEXT/PLAIN; CHARSET=us-ascii Content-ID: <20031203125331.A21631@moo.sysabend.org> Content-Description: Content-Disposition: ATTACHMENT; FILENAME="patch-rman.c" --- ../extras/rman/rman.c.orig Tue Jul 15 23:53:53 2003 +++ ../extras/rman/rman.c Tue Jul 15 23:44:21 2003 @@ -4104,6 +4104,9 @@ } } break; + case 0: + /* ignore */ + break; default: /* unknown escaped character */ sputchar(*p++); } @@ -4133,7 +4133,7 @@ source_out0(const char *pin, char end) /* postpone check until after following character so catch closing tags */ if ((sI>=4+1 && plain[sI-1-1]==')') || /* (plain[sI-1]==' ' && (q=strchr(plain,' '))!=NULL && q<&plain[sI-1])) */ - (plain[sI-1]==' ' && !isalnum(plain[sI-1-1]))) { + (sI>=2 && plain[sI-1]==' ' && !isalnum(plain[sI-1-1]))) { /* regardless, flush buffer */ source_flush(); } --ctP54qlpMx3WjD+/--