From owner-freebsd-questions@FreeBSD.ORG Wed Apr 4 06:31:23 2012 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 482AC1065673; Wed, 4 Apr 2012 06:31:23 +0000 (UTC) (envelope-from pluknet@gmail.com) Received: from mail-lpp01m010-f54.google.com (mail-lpp01m010-f54.google.com [209.85.215.54]) by mx1.freebsd.org (Postfix) with ESMTP id 91DD38FC18; Wed, 4 Apr 2012 06:31:22 +0000 (UTC) Received: by lagv3 with SMTP id v3so828561lag.13 for ; Tue, 03 Apr 2012 23:31:15 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; bh=QMywbn1cW5hcq3F9naN/O3z109qo/Yk4cYzD7jYgQjc=; b=IgZ9VnWCxEgCqTMb9eNvbgwlSOow1u6qbeX0xzkg1cjzXnKqy4GP9BLP5CEEUqmOXc H/ElN63ivYcfATgX7DzvJHuNv6PLAq6PV3oOA2NjUzajxipKQMYpS3gINUERhQ7M2qMh +yJpk44ISkkYgsYHcwg8DMX8+2+T8fZJEXp3lcJcD0mO4VGJljqFBvhgiQDcgdH53NJp lMjvnSMB2f+Mophz0/TpVWSxARpat/ix0SDPCPVz9NgsGTX1HOveROCV8dR5kCCRoq+E aMD2+nLlBAcQZ4q4+d09nSgoRZ81qlDlHG2vuuvdz7FkYNTulOQPdZaXdUF8Gotm7MIe jhxg== MIME-Version: 1.0 Received: by 10.152.122.80 with SMTP id lq16mr2216759lab.37.1333521075597; Tue, 03 Apr 2012 23:31:15 -0700 (PDT) Received: by 10.152.25.69 with HTTP; Tue, 3 Apr 2012 23:31:15 -0700 (PDT) In-Reply-To: <1333508571.90646.YahooMailNeo@web130204.mail.mud.yahoo.com> References: <1333508571.90646.YahooMailNeo@web130204.mail.mud.yahoo.com> Date: Wed, 4 Apr 2012 10:31:15 +0400 Message-ID: From: Sergey Kandaurov To: gahn Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Cc: free bsd , freebsd general questions Subject: Re: compiling glib20 failed 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: Wed, 04 Apr 2012 06:31:23 -0000 On 4 April 2012 07:02, gahn wrote: > hi gurus: > > i got problem with compiling glib20: > > =3D=3D=3D>=A0=A0 glib-2.28.8_4 depends on file: /usr/local/bin/perl5.10.1= - found > /libexec/ld-elf.so.1: /usr/local/lib/liblzma.so.5: version XZ_5.0 require= d by /usr/bin/xz not defined > =3D=3D=3D>=A0 Missing license file for LGPL20 in /usr/ports/devel/glib20/= work/glib-2.28.8/COPYING > *** Error code 1 > > Stop in /usr/ports/devel/glib20. > *** Error code 1 > > > basically i was trying to install tshark on freebsd 8.1 but it told me i = need to upgrade glib but i got into this mess. > Looks like the source of your problem may lie in that your base /usr/bin/xz tries to dlopen /usr/local/lib/liblzma.so.5 installed from ports and not the one from base (i.e. there should be /usr/lib/liblzma.so.5 instead). The one from ports doesn't have the symbol versioning (or at least doesn't have specific symbols the base xz wants) and, for aught I know, shall not be used by the base xz in any way. I wonder how did you manage to install xz from ports on 8.1 as this port is specifically IGNORE'd to install on 8.1 system with the reason "is already in the base system". First I would try to pkgrm xz and see how it helps. --=20 wbr, pluknet