in reply to Re^8: [JOB] The Perl Foundation seeks Windows Developer
in thread [JOB] The Perl Foundation seeks Windows Developer
What I would do in this situation is fake it. Set it up so on 5.8.0 or whatever weirdo version AS is using DDS becomes a prereq. Then structure your code so you use refaddr from either source. That should get it sorted enough to distribute through their infrastructure, and shouldn't really affect normal users. I reckon only a little bit of Makefile.PL magic would be required. Just do a check like
( $^O eq 'MSWin32' && eval "use Scalar::Util qw(refaddr); 1") ? ( 'Data::Dump::Streamer' ) : ()
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^10: [JOB] The Perl Foundation seeks Windows Developer
by xdg (Monsignor) on Apr 03, 2006 at 15:50 UTC |