Skip Menu |

This queue is for tickets about the Net-Ident CPAN distribution.

Report information
The Basics
Id: 21803
Status: rejected
Priority: 0/
Queue: Net-Ident

People
Owner: Nobody in particular
Requestors: alexchorny [...] gmail.com
Cc:
AdminCc:

Bug Information
Severity: Important
Broken in: 1.20
Fixed in: (no value)



Subject: open(DEBUGFH, "|-") fails on Win32
ActiveState perl v5.8.7 built for MSWin32-x86-multi-thread Binary build 813 open(DEBUGFH, "|-") is not available on MSWin32 yet. It is possible to tie STDOUT so it will prepend every string with '#'. Another way - use perlio. ------- Alexandr Ciornii, http://chorny.net
From: Alexandr Ciornii <alexchorny [...] gmail.com>
package HashPrint; use 5.004; use base Tie::Handle; use strict; sub TIEHANDLE { my $pkg = shift; my $self; open $self, ">&STDOUT"; bless \$self, $pkg; } sub PRINT { my $self = shift; my $fh=${$self}; foreach (@_) { my $str=$_; $str=~s/^/#/mg; # print STDERR $str; print $fh $str; } } 1; ------- Alexandr Ciornii, http://chorny.net
Subject: Re: [rt.cpan.org #21803] open(DEBUGFH, "|-") fails on Win32
Date: Mon, 2 Oct 2006 09:34:22 +0200
To: "alexchorny [...] gmail.com via RT" <bug-Net-Ident [...] rt.cpan.org>
From: Jan-Pieter Cornet <johnpc [...] xs4all.nl>
On Sun, Oct 01, 2006 at 10:54:42AM -0400, alexchorny@gmail.com via RT wrote: Show quoted text
> Queue: Net-Ident > Ticket <URL: http://rt.cpan.org/Ticket/Display.html?id=21803 > > > package HashPrint; > > use 5.004; > use base Tie::Handle; > use strict; > > sub TIEHANDLE { > my $pkg = shift; > my $self; > open $self, ">&STDOUT"; > bless \$self, $pkg; > } > > sub PRINT { > my $self = shift; > my $fh=${$self}; > foreach (@_) { > my $str=$_; > $str=~s/^/#/mg; > # print STDERR $str; > print $fh $str; > } > } > > 1;
Thanks for the fix! It really gets time for a Net::Ident update, I'll see what I can do to release something. -- Jan-Pieter Cornet <johnpc@xs4all.nl> !! Disclamer: The addressee of this email is not the intended recipient. !! !! This is only a test of the echelon and data retention systems. Please !! !! archive this message indefinitely to allow verification of the logs. !!
Hi, new maintainer. Is this still an issue for anyone or has it been fixed for windows? If you have patches, please submit one or I take pull requests on github. Thanks.
On Fri Jun 11 01:00:30 2010, TODDR wrote: Show quoted text
> Hi, new maintainer. Is this still an issue for anyone or has it been > fixed for windows? > > If you have patches, please submit one or I take pull requests on > github. > > Thanks.
Closing due to no response v1.24 may have what's needed.