Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 27 Jan 2009 12:47:43 -0200
From:      Sergio de Almeida Lenzi <lenzi@k1.com.br>
To:        Tsu-Fan Cheng <tfcheng@gmail.com>, freebsd-questions <questions@freebsd.org>
Subject:   Re: x11/libXrandr, x11-toolkits/libXmu, graphics/jasper fails to  build
Message-ID:  <1233067663.18867.13.camel@lenzix.cwb.casa>
In-Reply-To: <f84c38580901270627r5eb40916g12f1e7adedf19298@mail.gmail.com>
References:  <1233019367.41990.88.camel@laptop1.herveybayaustralia.com.au> <1233025480.1751.13.camel@wombat.2hip.net> <1233028584.1110.6.camel@laptop2.herveybayaustralia.com.au> <f84c38580901270627r5eb40916g12f1e7adedf19298@mail.gmail.com>

next in thread | previous in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?1233067663.18867.13.camel>