From owner-freebsd-questions@FreeBSD.ORG Thu Apr 19 15:13:42 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 9D72E106566C for ; Thu, 19 Apr 2012 15:13:42 +0000 (UTC) (envelope-from alexmiroslav@gmail.com) Received: from mail-yx0-f182.google.com (mail-yx0-f182.google.com [209.85.213.182]) by mx1.freebsd.org (Postfix) with ESMTP id 5AF808FC16 for ; Thu, 19 Apr 2012 15:13:42 +0000 (UTC) Received: by yenl9 with SMTP id l9so5414135yen.13 for ; Thu, 19 Apr 2012 08:13:35 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=HxRcsZSDHE79xoMYKDnZqXaFDKh9a8NrashByo/a5dQ=; b=HnJap/O7E8Sg2h5xt7iUh2gAvBZu3nUtTiwJXaRvss/c5xiJ6lfEW/KSjH4c1JsZ01 vzu6ElaNKmvrlC2y3ML19Q6Qw2Gx1t3Z0W7BZGNrdHKMzT6E8HQtojEwOD1h9Z2r1nI/ Rs7ahA343S3fsiKA1VbjUOBCtFo9TcVx303Lwx43kv5mGx28LVNiKbiVnXy9FbbhsPII sxQKePVbmTA8ECf0h2pMLjcGZTxod6T5+IV6fdLgqtKDnNTWdKj1oig9VoKSuRaolu9A /7T9P+3yjGP3LzZrKSspYKJaoDmsNt/z8c1/3ZAOmmhwVW97I859vhomDR27Y5A+0NpP PXOw== MIME-Version: 1.0 Received: by 10.60.169.146 with SMTP id ae18mr3637787oec.36.1334848414880; Thu, 19 Apr 2012 08:13:34 -0700 (PDT) Received: by 10.60.143.104 with HTTP; Thu, 19 Apr 2012 08:13:34 -0700 (PDT) Date: Thu, 19 Apr 2012 11:13:34 -0400 Message-ID: From: Aleksandr Miroslav To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 Subject: pcre library linking issues 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: Thu, 19 Apr 2012 15:13:42 -0000 I inadvertently updated my PCRE library and in the process broke a number of things that depended on the old library. I now have a number of binaries that look like this: /usr/local/bin$ $ ldd gtester gtester: libglib-2.0.so.0 => /usr/local/lib/libglib-2.0.so.0 (0x28090000) libintl.so.9 => /usr/local/lib/libintl.so.9 (0x28168000) libiconv.so.3 => /usr/local/lib/libiconv.so.3 (0x28171000) libpcre.so.0 => not found (0x0) libc.so.7 => /lib/libc.so.7 (0x28267000) libpcre.so.0 => not found (0x0) What can I do to fix this in the meantime? Alex