From owner-freebsd-questions@FreeBSD.ORG Thu Jan 29 00:06:36 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3DE7C106564A for ; Thu, 29 Jan 2009 00:06:36 +0000 (UTC) (envelope-from rock_on_the_web@comcen.com.au) Received: from angel.comcen.com.au (angel.comcen.com.au [203.23.236.69]) by mx1.freebsd.org (Postfix) with ESMTP id 012578FC08 for ; Thu, 29 Jan 2009 00:06:35 +0000 (UTC) (envelope-from rock_on_the_web@comcen.com.au) Received: from [192.168.0.199] (unknown [202.172.126.254]) by angel.comcen.com.au (Postfix) with ESMTP id 097F25C2EBB9 for ; Thu, 29 Jan 2009 11:07:52 +1100 (EST) From: Da Rock To: freebsd-questions@freebsd.org In-Reply-To: <44zlhbo2w4.fsf@lowell-desk.lan> References: <1233019367.41990.88.camel@laptop1.herveybayaustralia.com.au> <1233025480.1751.13.camel@wombat.2hip.net> <1233028584.1110.6.camel@laptop2.herveybayaustralia.com.au> <1233067663.18867.13.camel@lenzix.cwb.casa> <1233094843.1202.30.camel@laptop2.herveybayaustralia.com.au> <44zlhbo2w4.fsf@lowell-desk.lan> Content-Type: text/plain; charset=ISO-8859-1 Date: Thu, 29 Jan 2009 10:05:55 +1000 Message-Id: <1233187555.1216.4.camel@laptop2.herveybayaustralia.com.au> Mime-Version: 1.0 X-Mailer: Evolution 2.22.3.1 FreeBSD GNOME Team Port Content-Transfer-Encoding: 8bit Subject: Re: x11/libXrandr, x11-toolkits/libXmu, graphics/jasper fails to build X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Jan 2009 00:06:36 -0000 On Wed, 2009-01-28 at 10:40 -0500, Lowell Gilbert wrote: > Da Rock writes: > > > On Tue, 2009-01-27 at 12:47 -0200, Sergio de Almeida Lenzi wrote: > >> Em Ter, 2009-01-27 ās 09:27 -0500, Tsu-Fan Cheng escreveu: > >> > >> > Hi, > >> > have you solved the problem yet? I also have libXmu failed to > >> > upgrade due to libxcb-xlib.la. Thanks!! > >> > >> I removed every instance of libxb-xlib.la from /usr/local/lib/*.la > >> than it all works again > >> > >> a shell script like: > >> ========================== > >> #!/bin/sh > >> > >> lista=`find /usr/local/lib -type f -name "*.la"` > >> > >> if [ -n "$lista" ] > >> then > >> for i in $lista > >> do > >> if grep $1 $i > /dev/null > >> then > >> sed -i "" "s|/usr/local/lib/$1||" $lista > >> fi > >> done > >> fi > >> ================================ > >> supose you name this shell -> XX > >> than..... > >> sh XX libxcb-xlib.la > >> will do the trick.... > >> > >> after that, you will be able to build things again. > > > > I've been talking to the porters and that would not be the recommended > > way of fixing this. Running portupgrade -a -rf libxcb resolves the > > issue. > > That probably isn't the exactly recommended form either. > "-a" and "-r" don't make sense together; the "-r" will be ignored, and > you will end up rebuilding *everything*. > Dunno, but it worked is all I can say... The only other alternative I suppose would be -rR, but I reckon that would probably amount ot the same thing.