From owner-freebsd-questions@FreeBSD.ORG Tue Jan 27 14:55:41 2009 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AA08E1065675 for ; Tue, 27 Jan 2009 14:55:41 +0000 (UTC) (envelope-from lenzi@k1.com.br) Received: from netuno.levier.com.br (netuno.levier.com.br [201.47.3.162]) by mx1.freebsd.org (Postfix) with ESMTP id DBEE88FC13 for ; Tue, 27 Jan 2009 14:55:40 +0000 (UTC) (envelope-from lenzi@k1.com.br) Received: from oldnetuno.levier.com.br (oldnetuno [192.168.32.12]) by netuno.levier.com.br (8.14.2/8.14.2) with ESMTP id n0REtaOI002732; Tue, 27 Jan 2009 12:55:37 -0200 (BRST) (envelope-from lenzi@k1.com.br) Received: from levier.com.br (localhost [127.0.0.1]) by oldnetuno.levier.com.br (8.14.3/8.14.1) with ESMTP id n0RB105Y028208; Tue, 27 Jan 2009 12:55:36 -0200 (BRST) (envelope-from lenzi@k1.com.br) X-MessageWall-Score: 0 (levier.com.br) Received: from [201.21.175.251] (authenticated as k1) by levier.com.br (MessageWall 1.0.8) with SMTP; 27 Jan 2009 14:55:36 -0000 From: Sergio de Almeida Lenzi To: Tsu-Fan Cheng , freebsd-questions In-Reply-To: References: <1233019367.41990.88.camel@laptop1.herveybayaustralia.com.au> <1233025480.1751.13.camel@wombat.2hip.net> <1233028584.1110.6.camel@laptop2.herveybayaustralia.com.au> Date: Tue, 27 Jan 2009 12:47:43 -0200 Message-Id: <1233067663.18867.13.camel@lenzix.cwb.casa> Mime-Version: 1.0 X-Mailer: Evolution 2.24.2 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 8bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: 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: Tue, 27 Jan 2009 14:55:41 -0000 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. Sergio