Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 12 Jan 2003 17:46:50 -0600
From:      Dan Nelson <dnelson@allantgroup.com>
To:        freebsd-questions@FreeBSD.ORG
Subject:   Re: linked twice against libintl.so
Message-ID:  <20030112234650.GC95625@dan.emsphone.com>
In-Reply-To: <20030112221129.GA11959@gicco.homeip.net>
References:  <20030112221129.GA11959@gicco.homeip.net>

next in thread | previous in thread | raw e-mail | index | archive | help
In the last episode (Jan 12), Hanspeter Roth said:
> Hello,
> 
> I'm trying to build the ElectricEyes port. The executable is linked
> against two versions of libintl.so:
> 
>         libintl.so.4 => /usr/local/lib/libintl.so.4 (0x284c2000)
>         libintl.so.2 => not found (0x0)
> 
> Gettext is 0.11.5_1.
> Is there a solution except of creating a link?

You definitely don't want to do this.  Shared libraries get version
bumps when the APIs change, so all you would do is coredump.

Run "ldd -a" on your electriceyes binary instead of "ldd".  This will
print out which libs pull in which libs.  Then upgrade whatever port
provided the lib that depends on libintl.so.2.

-- 
	Dan Nelson
	dnelson@allantgroup.com

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-questions" in the body of the message




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