Unfortunately, this is not going to work because $LINUX is undef at compile-time:
$ perl
if ($^O eq 'linux') { $LINUX=1; };
use if $LINUX, 'MIDI::ALSA' => ('SND_SEQ_EVENT_PORT_UNSUBSCRIBED',
'SND_SEQ_EVENT_SYSEX');
__END__
$ perl -MMIDI::ALSA
Can't locate MIDI/ALSA.pm in @INC (@INC contains: /home/aitap/perl5/li
+b/perl5/i486-linux-gnu-thread-multi-64int /home/aitap/perl5/lib/perl5
+/i486-linux-gnu-thread-multi-64int /home/aitap/perl5/lib/perl5 /etc/p
+erl /usr/local/lib/perl/5.14.2 /usr/local/share/perl/5.14.2 /usr/lib/
+perl5 /usr/share/perl5 /usr/lib/perl/5.14 /usr/share/perl/5.14 /usr/l
+ocal/lib/site_perl .).
BEGIN failed--compilation aborted.
But if the test is done in the BEGIN{} section, everything works (well, not for me because of the absence of the module):
$ perl
BEGIN{ if ($^O eq 'linux') { $LINUX=1; }; }
use if $LINUX, 'MIDI::ALSA' => ('SND_SEQ_EVENT_PORT_UNSUBSCRIBED',
'SND_SEQ_EVENT_SYSEX');
Can't locate MIDI/ALSA.pm in @INC (@INC contains: /home/aitap/perl5/li
+b/perl5/i486-linux-gnu-thread-multi-64int /home/aitap/perl5/lib/perl5
+/i486-linux-gnu-thread-multi-64int /home/aitap/perl5/lib/perl5 /etc/p
+erl /usr/local/lib/perl/5.14.2 /usr/local/share/perl/5.14.2 /usr/lib/
+perl5 /usr/share/perl5 /usr/lib/perl/5.14 /usr/share/perl/5.14 /usr/l
+ocal/lib/site_perl .) at /usr/share/perl/5.14/if.pm line 13.
BEGIN failed--compilation aborted at - line 3.
Sorry if my advice was wrong.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
Outside of code tags, you may need to use entities for some characters:
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.
|
|