From owner-cvs-all Thu Jan 4 18:26:17 2001 From owner-cvs-all@FreeBSD.ORG Thu Jan 4 18:26:14 2001 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from khavrinen.lcs.mit.edu (khavrinen.lcs.mit.edu [18.24.4.193]) by hub.freebsd.org (Postfix) with ESMTP id 16CB037B400; Thu, 4 Jan 2001 18:26:14 -0800 (PST) Received: (from wollman@localhost) by khavrinen.lcs.mit.edu (8.9.3/8.9.3) id VAA65821; Thu, 4 Jan 2001 21:26:10 -0500 (EST) (envelope-from wollman) Date: Thu, 4 Jan 2001 21:26:10 -0500 (EST) From: Garrett Wollman Message-Id: <200101050226.VAA65821@khavrinen.lcs.mit.edu> To: Tony Finch Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.sbin/pkg_install/update pkg_update.pl In-Reply-To: <20010104224743.Z2140@hand.dotat.at> References: <200101041509.f04F9kY06526@gratis.grondar.za> <3A54A329.3A84087F@freebsd-services.co.uk> <20010104214946.W2140@hand.dotat.at> <3A54F477.DCD11D4B@originative.co.uk> <20010104224743.Z2140@hand.dotat.at> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG < said: >> open(HANDLE, "<", $file) > That must require perl 5.6 because it doesn't work in 5.005. use IO::File; { my ($handle) = new IO::File ($file, "r"); blah_blah($handle); } ...works in all versions of Perl 5 new enough to have IO::File. -GAWollman To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message