Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

perlhaiku5.18(1) [mojave man page]

PERLHAIKU(1)						 Perl Programmers Reference Guide					      PERLHAIKU(1)

NAME
perlhaiku - Perl version 5.10+ on Haiku DESCRIPTION
This file contains instructions how to build Perl for Haiku and lists known problems. BUILD AND INSTALL
The build procedure is completely standard: ./Configure -de make make install Make perl executable and create a symlink for libperl: chmod a+x /boot/common/bin/perl cd /boot/common/lib; ln -s perl5/5.18.2/BePC-haiku/CORE/libperl.so . Replace 5.18.2 with your respective version of Perl. KNOWN PROBLEMS
The following problems are encountered with Haiku revision 28311: o Perl cannot be compiled with threading support ATM. o The ext/Socket/t/socketpair.t test fails. More precisely: the subtests using datagram sockets fail. Unix datagram sockets aren't implemented in Haiku yet. o A subtest of the ext/Sys/Syslog/t/syslog.t test fails. This is due to Haiku not implementing /dev/log support yet. o The tests lib/Net/Ping/t/450_service.t and lib/Net/Ping/t/510_ping_udp.t fail. This is due to bugs in Haiku's network stack implementation. CONTACT
For Haiku specific problems contact the HaikuPorts developers: <http://ports.haiku-files.org/> The initial Haiku port was done by Ingo Weinhold <ingo_weinhold@gmx.de>. Last update: 2008-10-29 perl v5.18.2 2014-01-06 PERLHAIKU(1)

Check Out this Related Man Page

PERLHAIKU(1)						 Perl Programmers Reference Guide					      PERLHAIKU(1)

NAME
perlhaiku - Perl version 5.10+ on Haiku DESCRIPTION
This file contains instructions how to build Perl for Haiku and lists known problems. BUILD AND INSTALL
The build procedure is completely standard: ./Configure -de make make install Make perl executable and create a symlink for libperl: chmod a+x /boot/common/bin/perl cd /boot/common/lib; ln -s perl5/5.16.2/BePC-haiku/CORE/libperl.so . Replace 5.16.2 with your respective version of Perl. KNOWN PROBLEMS
The following problems are encountered with Haiku revision 28311: o Perl cannot be compiled with threading support ATM. o The ext/Socket/t/socketpair.t test fails. More precisely: the subtests using datagram sockets fail. Unix datagram sockets aren't implemented in Haiku yet. o A subtest of the ext/Sys/Syslog/t/syslog.t test fails. This is due to Haiku not implementing "/dev/log" support yet. o The tests lib/Net/Ping/t/450_service.t and lib/Net/Ping/t/510_ping_udp.t fail. This is due to bugs in Haiku's network stack implementation. CONTACT
For Haiku specific problems contact the HaikuPorts developers: http://ports.haiku-files.org/ <http://ports.haiku-files.org/> The initial Haiku port was done by Ingo Weinhold <ingo_weinhold@gmx.de>. Last update: 2008-10-29 perl v5.16.2 2012-10-25 PERLHAIKU(1)
Man Page

5 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Perl Ping Determine Success or Fail

I know how to ping in Perl. That is easy. What I am wondering is if there is a way for Perl to determine whether the ping was successful or not. Or do I need to save the results out and parse the results seperately looking for the #of tries and successful revieves. Thanks. (1 Reply)
Discussion started by: gdboling
1 Replies

2. UNIX for Dummies Questions & Answers

instulation problems

I'm trying to install a program on mandrake 10.0 and its not letting me. it says its not working due to unsatasfied libstdc++libc6.2-2.so.3 what should i do?!?! (1 Reply)
Discussion started by: smokinchili21
1 Replies

3. UNIX for Dummies Questions & Answers

problems with If

I'm having problems uses "if" it works fine when i do this. #!/bin/sh a= 10 qw= 2 w= 20 { if && ;then echo 3 fi } However if i try to do #!/bin/sh a= 10 (5 Replies)
Discussion started by: THM
5 Replies

4. UNIX for Dummies Questions & Answers

Any Beos versions work on AMD64-type PCs?

Preparing to get my first home PC via custom-build shop. It will have three hard disk drives...one to be used only for trial of various OSs. Was hoping to test out Haiku, but according to 'supported architectures' table at Wikipedia ("Comparison of open source operating systems"), it only works on... (3 Replies)
Discussion started by: Varsel
3 Replies

5. Shell Programming and Scripting

How to get reason for ping failure using perls Net::Ping->new("icmp");?

Hi I am using perl to ping a list of nodes - with script below : $p = Net::Ping->new("icmp"); if ($p->ping($host,1)){ print "$host is alive.\n"; } else { print "$host is unreacheable.\n"; } $p->close();... (4 Replies)
Discussion started by: tavanagh
4 Replies