From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 26256 invoked by alias); 30 Nov 2001 15:58:28 -0000 Mailing-List: contact cygwin-help@sourceware.cygnus.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner@sources.redhat.com Received: (qmail 26109 invoked from network); 30 Nov 2001 15:57:04 -0000 Received: from unknown (HELO mtiwmhc24.worldnet.att.net) (204.127.131.49) by hostedprojects.ges.redhat.com with SMTP; 30 Nov 2001 15:57:04 -0000 Received: from w3a9i2 ([12.81.73.45]) by mtiwmhc24.worldnet.att.net (InterMail vM.4.01.03.27 201-229-121-127-20010626) with SMTP id <20011130155703.JLXN13117.mtiwmhc24.worldnet.att.net@w3a9i2> for ; Fri, 30 Nov 2001 15:57:03 +0000 Message-ID: <001001c179b7$b4009e40$2d49510c@w3a9i2> Reply-To: "Arkadi Gelfond" From: "Arkadi Gelfond" To: Subject: RE: can not install libwww-perl-5.61 Date: Tue, 20 Nov 2001 17:43:00 -0000 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 X-SW-Source: 2001-11/txt/msg01316.txt.bz2 Some time ago I was trying to install libwww-perl-5.61 under __W98__ with no success. The installation process wouldn't pass the 'robot' tests. I finally was able to trace the problem to the 'tie' : /home/arkadig/tmp$ vdir delme* vdir: delme*: No such file or directory /home/arkadig/tmp$ perl -e 'use Fcntl;use AnyDBM_File;tie %t1, q(AnyDBM_File), ($_=q(/home/arkadig/tmp/delme)), O_CREAT|O_RDWR, 0640 or Carp::croak("$_: $!");' /home/arkadig/tmp/delme: Permission denied at -e line 1 /home/arkadig/tmp$ vdir ./delme* -rw-r--r-- 1 arkadig unknown 3072 Nov 30 06:21 ./delme.pag /home/arkadig/tmp$ rm ./delme* By default NDBM_File is used. Force 'tie' to use SDBM_File: /home/arkadig/tmp$ perl -e 'BEGIN { @AnyDBM_File::ISA = qw(SDBM_File) };use Fcntl;use AnyDBM_File;tie %t1, q(AnyDBM_File), ($_=q(/home/arkadig/tmp/delme)), O_CREAT|O_RDWR, 0640 or Carp::croak("$_: $!");' /home/arkadig/tmp$ vdir ./delme* -rw-r--r-- 1 arkadig unknown 0 Nov 30 06:22 ./delme.dir -rw-r--r-- 1 arkadig unknown 0 Nov 30 06:22 ./delme.pag Thus the work-around for the installation problem is to insert BEGIN { @AnyDBM_File::ISA = qw(SDBM_File) }; at the beginning of RobotRules/AnyDBM_File.pm Arkadi -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Bug reporting: http://cygwin.com/bugs.html Documentation: http://cygwin.com/docs.html FAQ: http://cygwin.com/faq/ From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Arkadi Gelfond" To: Subject: RE: can not install libwww-perl-5.61 Date: Fri, 30 Nov 2001 07:58:00 -0000 Message-ID: <001001c179b7$b4009e40$2d49510c@w3a9i2> X-SW-Source: 2001-11/msg01904.html Message-ID: <20011130075800.y8dUipQDJv1bI7APnSxqWiAl3598kTJadvzR7mnZtkE@z> Some time ago I was trying to install libwww-perl-5.61 under __W98__ with no success. The installation process wouldn't pass the 'robot' tests. I finally was able to trace the problem to the 'tie' : /home/arkadig/tmp$ vdir delme* vdir: delme*: No such file or directory /home/arkadig/tmp$ perl -e 'use Fcntl;use AnyDBM_File;tie %t1, q(AnyDBM_File), ($_=q(/home/arkadig/tmp/delme)), O_CREAT|O_RDWR, 0640 or Carp::croak("$_: $!");' /home/arkadig/tmp/delme: Permission denied at -e line 1 /home/arkadig/tmp$ vdir ./delme* -rw-r--r-- 1 arkadig unknown 3072 Nov 30 06:21 ./delme.pag /home/arkadig/tmp$ rm ./delme* By default NDBM_File is used. Force 'tie' to use SDBM_File: /home/arkadig/tmp$ perl -e 'BEGIN { @AnyDBM_File::ISA = qw(SDBM_File) };use Fcntl;use AnyDBM_File;tie %t1, q(AnyDBM_File), ($_=q(/home/arkadig/tmp/delme)), O_CREAT|O_RDWR, 0640 or Carp::croak("$_: $!");' /home/arkadig/tmp$ vdir ./delme* -rw-r--r-- 1 arkadig unknown 0 Nov 30 06:22 ./delme.dir -rw-r--r-- 1 arkadig unknown 0 Nov 30 06:22 ./delme.pag Thus the work-around for the installation problem is to insert BEGIN { @AnyDBM_File::ISA = qw(SDBM_File) }; at the beginning of RobotRules/AnyDBM_File.pm Arkadi -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Bug reporting: http://cygwin.com/bugs.html Documentation: http://cygwin.com/docs.html FAQ: http://cygwin.com/faq/