From owner-freebsd-questions@FreeBSD.ORG Sat Feb 9 17:28:19 2008 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 E10AB16A421 for ; Sat, 9 Feb 2008 17:28:19 +0000 (UTC) (envelope-from josh.carroll@gmail.com) Received: from py-out-1112.google.com (py-out-1112.google.com [64.233.166.181]) by mx1.freebsd.org (Postfix) with ESMTP id 8968C13C45D for ; Sat, 9 Feb 2008 17:28:19 +0000 (UTC) (envelope-from josh.carroll@gmail.com) Received: by py-out-1112.google.com with SMTP id u52so5988950pyb.10 for ; Sat, 09 Feb 2008 09:28:16 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:reply-to:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; bh=7xJ9tEDLujWR0nk8MFyKgEIf+Wsh5GqF4ZVz3lB//Gc=; b=elLxLMtm7QZv/SwqHgfuuASJ+/wmuTU72eYi3/XDnpmp+5wH8WYpT7e8GPa85oWU4ePV7ebp207g8rwHhvlHW6jmIa2XzUC+qbqW/y3iGszmqOhhHT2Q6hVAEVvQStZjZTOT2c2miI3xOGztHsvP0I+eRlVFqJvi9HtHA38tudM= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:reply-to:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=pWq+QPxG42O6SI8vnCBUzSXM9lqGMwmfvwHhQ7OL5s1hrXP/n2TxLU1iRYL2P6nBByClmZ/bqSa/8Gd3PjmIByRll9pbaXPb2RxOv6cpGCYE3rHI9HexWTmCqbbPCbL0LSAgPnr1WGQR6zW5diF+HiuWhlrrwkfX7xunVxFiPkc= Received: by 10.142.115.10 with SMTP id n10mr7575514wfc.95.1202578096101; Sat, 09 Feb 2008 09:28:16 -0800 (PST) Received: by 10.143.195.2 with HTTP; Sat, 9 Feb 2008 09:28:16 -0800 (PST) Message-ID: <8cb6106e0802090928x64417b6t5916223d1ee3fe23@mail.gmail.com> Date: Sat, 9 Feb 2008 12:28:16 -0500 From: "Josh Carroll" To: "E. J. Cerejo" In-Reply-To: <47ADE033.7070402@optonline.net> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <47ADE033.7070402@optonline.net> Cc: FreeBSD-questions@freebsd.org Subject: Re: libicui18n.so.36 not found, required by "evolution" X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: josh.carroll@gmail.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Feb 2008 17:28:20 -0000 On Feb 9, 2008 12:17 PM, E. J. Cerejo wrote: > Running FBSD 6.3 and after updating the ports where icu was one of the > ports to be updated I'm getting the libexec/ld-elf.so.1: Shared object > "libicui18n.so.36" not found, required by "evolution" error, I can see > that the new version of icu installed "libicui18n.so.38". Is there a > better way to fix this or should I just symlink "libicui18n.so.38" to > "libicui18n.so.36"? I ran into this myself. The best thing to do is rebuild all the ports that depend on the icu port: portupgrade -fr icu-3.8.1 That should rebuild all the things linking against libicui18n.so.36 and re-link them against the new libicu. You could also do this manually with a small shell script to ldd things in /usr/local/lib and /usr/local/bin and identify things linked against the old library and then use pkg_which to find which packages they belong to, and portupgrade/re-install those. Josh