From owner-freebsd-questions@FreeBSD.ORG Mon Jan 31 05:38:55 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5C6FB16A4CE for ; Mon, 31 Jan 2005 05:38:55 +0000 (GMT) Received: from whisk.dreamhost.com (whisk.dreamhost.com [205.196.208.4]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3E18243D3F for ; Mon, 31 Jan 2005 05:38:55 +0000 (GMT) (envelope-from lists@tntluoma.com) Received: from [192.168.2.2] (adsl-68-252-33-50.dsl.wotnoh.ameritech.net [68.252.33.50]) by whisk.dreamhost.com (Postfix) with ESMTP id 111B8175117 for ; Sun, 30 Jan 2005 21:38:52 -0800 (PST) Mime-Version: 1.0 (Apple Message framework v619.2) Content-Transfer-Encoding: 7bit Message-Id: <50436a9e0451e1fdd6aab587283bc69a@tntluoma.com> Content-Type: text/plain; charset=US-ASCII; format=flowed To: FreeBSD Mailing List From: Timothy Luoma Date: Mon, 31 Jan 2005 00:38:40 -0500 X-Mailer: Apple Mail (2.619.2) Subject: rsync statically linked to zlib 1.1.4? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Jan 2005 05:38:55 -0000 OK, so since I have updated 'zlib' to 1.2.2 I decided that I ought to check for other programs which use it. I installed 'find-zlib' (from ports :-) and ran it like this: $ for i in `echo $PATH | tr ':' ' '` for> do for> sudo find-zlib $i/* for> done /usr/local/sbin/lpadmin: inflate version: "1.2.2 Copyright 1995-2004 Mark Adler" /usr/local/bin/espgs: inflate version: "1.2.2 Copyright 1995-2004 Mark Adler" /usr/local/bin/gs: inflate version: "1.2.2 Copyright 1995-2004 Mark Adler" /usr/local/bin/rsync: inflate version: "1.1.4 Copyright 1995-2002 Mark Adler" /usr/local/bin/rsync: zlib cplens table, little endian /usr/local/bin/rsync: zlib cplext table (version 1.0.5 to 1.1.4) $ OK, so the only one that looks like trouble is 'rsync' I did 'cd /usr/ports/net/rsync; sudo make deinstall; sudo make install clean' but when I ran 'find-zlib' again, it still reported "1.1.4" Am I missing something? TjL