According to http://www.perlmonks.org/?node_id=66677 it does not seem possible. However do you know if there is some way to access a variable declared with my from another file?
For instance:
// second.pl
my $var = 1;
// main.pl
require("second.pl")
// how do I access $var from here?