Beefy Boxes and Bandwidth Generously Provided by pair Networks
No such thing as a small change
 
PerlMonks  

Re^2: How to have OS specific code sections in Perl

by aitap (Curate)
on Oct 31, 2012 at 18:54 UTC ( [id://1001731]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    $ perl 
    if ($^O eq 'linux') { $LINUX=1; };
    ...
    $ 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.
    
  2. or download this
    $ 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.
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others imbibing at the Monastery: (2)
As of 2024-04-26 01:03 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found