From owner-freebsd-hackers@FreeBSD.ORG Wed Apr 14 16:46:13 2010 Return-Path: Delivered-To: freebsd-hackers@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4EC131065677 for ; Wed, 14 Apr 2010 16:46:13 +0000 (UTC) (envelope-from salfrancl.listas@gmail.com) Received: from mail-bw0-f214.google.com (mail-bw0-f214.google.com [209.85.218.214]) by mx1.freebsd.org (Postfix) with ESMTP id D0E6C8FC18 for ; Wed, 14 Apr 2010 16:46:12 +0000 (UTC) Received: by bwz6 with SMTP id 6so334419bwz.13 for ; Wed, 14 Apr 2010 09:46:11 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:received:message-id:subject:from:to:content-type :content-transfer-encoding; bh=Ee0XJYyjv7Y39VuzukShBAfCJWdH4mAdWmsrGsfJbiI=; b=XEONZBymQVOqX2ggAWoY79WEVIm4YNAWJlwEIqKkxdLV8GFfD0FkFUQ1BfXRl5l9MC OxLXioe86+dGZB1o69oIR1zyaNMc0nNydXN9dmDsMX8hH5Yy8LfumRui8weJv5+bc5AV Zkvkw61xk6UeUTzEBaw3cf+FQLUc81eppDx1Y= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type:content-transfer-encoding; b=X/cp5eHJ27mqz3Br0JCRs7ZhHleDkz++KZADkgjJtcBD06Z3YdHnWqFxaj4L8R5k0Y SAXX78jrCRVm8ECp0mEqOo0uLkReuq4OAsKGM+8F76od/AlrWqatxiTKjfGnYdGlEANO kxvx6h1/llh4fxpUJ1UlsqQ+p3pdXzhOO92V0= MIME-Version: 1.0 Received: by 10.204.122.74 with HTTP; Wed, 14 Apr 2010 09:46:11 -0700 (PDT) In-Reply-To: <20100414184254.63d0cdf9@ernst.jennejohn.org> References: <20100414184254.63d0cdf9@ernst.jennejohn.org> Date: Wed, 14 Apr 2010 12:46:11 -0400 Received: by 10.204.7.194 with SMTP id e2mr4146557bke.103.1271263571618; Wed, 14 Apr 2010 09:46:11 -0700 (PDT) Message-ID: From: Leinier Cruz Salfran To: freebsd-hackers@freebsd.org Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Subject: Re: there is a way to avoid strict libraries linking? X-BeenThere: freebsd-hackers@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Technical Discussions relating to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Apr 2010 16:46:13 -0000 On Wed, Apr 14, 2010 at 12:42 PM, Gary Jennejohn wrote: > On Wed, 14 Apr 2010 12:23:16 -0400 > Leinier Cruz Salfran wrote: > >> hello all fbsd devs >> >> i want to know if there is a possibility to avoid current strict >> libraries linking .. i will explain myself >> >> for example .. i have installed 'gtk' (2.18) that depends on library >> 'libpng.so.5' (png) .. and i will upgrade 'png' port to a superior >> version that install the library 'libpng.so.6' BUUUTTTT 'gtk' will not >> be upgraded, so it will still depending on 'libpng.so.5' .. so here is >> my question: there is a way to avoid this?????? i means that 'gtk' >> load 'libpng.so' (that is a symbolic link to 'libpng.so.6') instead of >> 'libpng.so.5' at runtime >> > > You might be able to do this with /etc/libmap.conf. =C2=A0See the man pag= e > for libmap.conf(5). > > -- > Gary Jennejohn > hello and thanks gary .. I forgot 'libmap.conf' .. that could be a nice sol= ution