Beefy Boxes and Bandwidth Generously Provided by pair Networks
Keep It Simple, Stupid
 
PerlMonks  

Re^3: perl 5.12: 32 bit to 64 bit transition

by BrowserUk (Patriarch)
on Mar 26, 2012 at 10:56 UTC ( [id://961648]=note: print w/replies, xml ) Need Help??


in reply to Re^2: perl 5.12: 32 bit to 64 bit transition
in thread perl 5.12: 32 bit to 64 bit transition

package fred; sub fred{ print 'Fred says hi' } package main;; fred::fred;; Fred says hi print defined *{$fred::fred}{CODE};; [Can't use an undefined value as a symbol reference at (eval 21) line +1 print defined *{fred::fred}{CODE};; Ambiguous use of *{fred::fred} resolved to *fred::fred at (eval 19) li +ne 1, 1 print defined *{fred::bill}{CODE};; *{$_} = \&{"fred::$_"} for 'fred';; fred();; Fred says hi

In a nutshell, dropping the $ from next unless defined *{$Net::POP3::{$_}}{CODE};

To give next unless defined *{Net::POP3::{$_}}{CODE}; should work.

Though that would still issue a warning, so try:next unless defined *{"Net::POP3::$_"}{CODE};.


With the rise and rise of 'Social' network sites: 'Computers are making people easier to use everyday'
Examine what is said, not who speaks -- Silence betokens consent -- Love the truth but pardon error.
"Science is about questioning the status quo. Questioning authority".
In the absence of evidence, opinion is indistinguishable from prejudice.

The start of some sanity?

Replies are listed 'Best First'.
Re^4: perl 5.12: 32 bit to 64 bit transition
by sg (Pilgrim) on Mar 26, 2012 at 15:24 UTC

    Thanks -- the suggestions helped get rid of the warning/error messages. However, there must be some other incompatibility since the code does not work as expected. I'll have to do what I was trying to avoid, viz., having to dig into the code to find out which pieces stop working in the new system. While doing this I'll also look to replacing the unmaintained CPAN modules with others such as NET::POP3_auth, Net::POP3::SSLWrapper, and NET::SMTP_auth.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://961648]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others browsing the Monastery: (6)
As of 2024-04-23 11:17 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found