in reply to Re^2: How to have OS specific code sections in Perl
in thread How to have OS specific code sections in Perl
use if eval { require MIDI::ALSA; MIDI::ALSA->VERSION > 0.01; 1 } , 'M +IDI::ALSA', ...; use if not exist $INC{'MIDI/ALSA.pm'}, 'something::else', ...;
|
|---|