From owner-freebsd-x11@FreeBSD.ORG Thu May 24 12:38:17 2007 Return-Path: X-Original-To: freebsd-x11@freebsd.org Delivered-To: freebsd-x11@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CB2A216A400 for ; Thu, 24 May 2007 12:38:17 +0000 (UTC) (envelope-from tevans.uk@googlemail.com) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.168]) by mx1.freebsd.org (Postfix) with ESMTP id 33C0913C45D for ; Thu, 24 May 2007 12:38:16 +0000 (UTC) (envelope-from tevans.uk@googlemail.com) Received: by ug-out-1314.google.com with SMTP id u2so28478uge for ; Thu, 24 May 2007 05:38:15 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=googlemail.com; s=beta; h=domainkey-signature:received:received:subject:from:to:cc:in-reply-to:references:content-type:date:message-id:mime-version:x-mailer; b=dZQHOWYppMy4DQUkxhSzQxZvTrspR2C6qlh3m8CeMr4lbXQQjrrkNm3G2fMA8Ws0CHXj4DKh5WiyFwszyp17M+Pa6aJkHobu0wbU7i0l+dySaSQ5So9YAojO1Lw0GOrD7NJz6cs7pTYnrbpXfEQ0DAJTS0KoeGHZ3tS/I15JDVw= DomainKey-Signature: a=rsa-sha1; c=nofws; d=googlemail.com; s=beta; h=received:subject:from:to:cc:in-reply-to:references:content-type:date:message-id:mime-version:x-mailer; b=ZsetiO7bJxTqhZYWGs9VeIdPM6aF3hH2X8ILAAjHuWz4wnn4BYKwAQfwupbVr8NXRUxYqIul+gkoJGhFZ+1lr1EZVeGdNmfz4Qe44QPjhnfHxiT4PxWn51BTleJ7V/vDuZq32QpxH0QNy6oEEmz6rSbKfAolobNthC7/jZB7NYw= Received: by 10.82.187.16 with SMTP id k16mr3178781buf.1180010295664; Thu, 24 May 2007 05:38:15 -0700 (PDT) Received: from ?IPv6:::ffff:127.0.0.1? ( [217.206.187.79]) by mx.google.com with ESMTP id 7sm92107nfv.2007.05.24.05.38.13; Thu, 24 May 2007 05:38:14 -0700 (PDT) From: Tom Evans To: Christopher Prance In-Reply-To: <46558424.66ba74de.282c.7c3b@mx.google.com> References: <46555fb0.2fb6361b.282c.518a@mx.google.com> <1180004824.9846.6.camel@zoot.mintel.co.uk> <465574f5.0f5a955d.348f.11cb@mx.google.com> <46558324.2070900@FreeBSD.org> <46558424.66ba74de.282c.7c3b@mx.google.com> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-GyS5hfx0D+t1zrzVCQIV" Date: Thu, 24 May 2007 13:38:10 +0100 Message-Id: <1180010290.9846.13.camel@zoot.mintel.co.uk> Mime-Version: 1.0 X-Mailer: Evolution 2.10.0 FreeBSD GNOME Team Port Cc: freebsd-x11@freebsd.org, 'Florent Thoumie' Subject: RE: Upgrading to Xorg 7.2.0 X-BeenThere: freebsd-x11@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: X11 on FreeBSD -- maintaining and support List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 May 2007 12:38:17 -0000 --=-GyS5hfx0D+t1zrzVCQIV Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Thu, 2007-05-24 at 14:25 +0200, Christopher Prance wrote: > /usr/local/lib/libGL.so.1: > libX11.so.6 =3D> /usr/X11R6/lib/libX11.so.6 (0x281cd000) > libXext.so.6 =3D> /usr/X11R6/lib/libXext.so.6 (0x2828e000) > libXxf86vm.so.1 =3D> /usr/X11R6/lib/libXxf86vm.so.1 (0x2829b000) > libXdamage.so.1 =3D> /usr/X11R6/lib/libXdamage.so.1 (0x282a0000) > libXfixes.so.3 =3D> /usr/X11R6/lib/libXfixes.so.3 (0x282a3000) > libm.so.4 =3D> /lib/libm.so.4 (0x282a8000) > libpthread.so.2 =3D> /lib/libpthread.so.2 (0x282be000) > libdrm.so.2 =3D> /usr/local/lib/libdrm.so.2 (0x282e3000) >=20 > There you go and just out of curiosity, what exactly does this tell you? = If > you don't mind explaining. I'm trying to learn as I go. >=20 > Thanks, > Christopher Prance Your config.log said > configure:3325: cc -o conftest -O2 -fno-strict-aliasing -pipe =20 > conftest.c -lGL -L/usr/local/lib -lX11 >&5 > /usr/local/lib/libGL.so: undefined reference to `XDamageAdd' when it tried to link a simple test program to -lGl. Linking resolves addresses of functions and links together compilation units with these addresses.=20 In this case, it couldnt find the symbol (or function) XDamageAdd. This should be in libXdamage.so, which should be dynamically linked to libGl.so.=20 The ldd command displays the dynamic links that an object file (eg dynamic object/dynamic executable) has, so we now know explicitly what is being linked to what. (and sorry, no, I don't know what the actual problem is, but I bet flz does :) Cheers Tom --=-GyS5hfx0D+t1zrzVCQIV Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.7 (FreeBSD) iD8DBQBGVYculcRvFfyds/cRAtaNAKCNJ1pvWd/KGnuu8GXGuFj33R7OQQCbBW/p IxjEz8miMdT263raL8GVTAI= =pxPP -----END PGP SIGNATURE----- --=-GyS5hfx0D+t1zrzVCQIV--