Perl Version 5.8.9 Documentation - Perlmpeix
Perl Version 5.8.9 Documentation - Perlmpeix
Perl Version 5.8.9 Documentation - Perlmpeix
9 documentation - perlmpeix
NAME
README.mpeix - Perl/iX for HP e3000 MPE
SYNOPSIS
http://www.bixby.org/mark/perlix.html
http://jazz.external.hp.com/src/hp_freeware/perl/
Perl language for MPE
Last updated January 12, 2006 @ 2100 UTC
NOTE
This is a podified version of the above-mentioned web page, podified by Jarkko Hietaniemi
2001-Jan-01.
http://jazz.external.hp.com/src/hp_freeware/perl/ http://www.bixby.org/mark/perlix.html
or do this:
ld --help 2>&1 | grep AUTOCONF
If you see don't see AUTOCONF or MPEAUTOCONF, make sure you get a new version.
You also do not have to use mpeix/relink after building, so the recommend sequence is:
./Configure -de
make
make test
# if you run this in a job, do "make test_notty"
make install
Be prepared for a wait. These take much longer on MPE/iX than on a Unix system, because of
a slow forking, mostly. On a lightly-loaded HP3000 Series 979 running MPE/iX 7.5:
Configure: 1 hour
make: 1 hour 15 minutes
make test 1 hour 45 minutes
http://perldoc.perl.org Page 1
Perl version 5.8.9 documentation - perlmpeix
Mark Klein provided a fixed sigsetjmp (that works with dynamic libraries) in mpeix_setjmp.c
June 1, 2000
Rebuilt to be compatible with mod_perl. If you plan on using mod_perl, you MUST download
and install this version of Perl/iX!
libwww-perl (LWP) which lets Perl programs behave like web browsers:
1. #!/PERL/PUB/perl
2. use LWP::Simple;
3. $doc =
get('http://www.bixby.org/mark/perlix.html'); # reads the
web page into variable $doc
(http://www.bixby.org/mark/perlix.html)
mod_perl (just the perl portion; the actual DSO will be released soon with
Apache/iX 1.3.12 from bixby.org). This module allows you to write high
performance persistent Perl CGI scripts and all sorts of cool things.
(http://perl.apache.org/)
and much much more hiding under /PERL/PUB/.cpan/
The CPAN module now works for automatic downloading and installing of
add-on packages:
1. export FTP_PASSIVE=1
2. perl -MCPAN -e shell
3. Ignore any terminal I/O related complaints!
(http://theoryx5.uwinnipeg.ca/CPAN/data/perl/CPAN.html)
Perl's getpwnam() function which had regressed to being unimplemented on MPE is now
implemented once again.
Welcome to Perl/iX
This is the official home page for the HP e3000 MPE/iX ( http://www.hp.com/go/e3000 ) port of the
Perl scripting language ( http://www.perl.com/ ) which gives you all of the power of C, awk, sed, and
sh in a single language. Check here for the latest news, implemented functionality, known bugs, to-do
list, etc. Status reports about major milestones will also be posted to the HP3000-L mailing list (
http://www.lsoft.com/scripts/wl.exe?SL1=HP3000-L&H=RAVEN.UTC.EDU ) and its associated
gatewayed newsgroup comp.sys.hp.mpe.
I'm doing this port because I can't live without Perl on the Unix machines that I administer, and I want
to have the same power available to me on MPE.
Please send your comments, questions, and bug reports directly to me, Mark Bixby (
http://www.bixby.org/mark/ ). Or just post them to HP3000-L.
http://perldoc.perl.org Page 2
Perl version 5.8.9 documentation - perlmpeix
The platform I'm using to do this port is an HP 3000 957RX running MPE/iX 6.0 and using the GNU
gcc C compiler ( http://jazz.external.hp.com/src/gnu/gnuframe.html ).
The combined porting wisdom from all of my ports can be found in my MPE/iX Porting Guide
(http://www.bixby.org/mark/porting.html).
IMPORTANT NOTICE: Yes, I do work for the HP CSY R&D lab, but ALL of the software you
download from bixby.org is my personal freeware that is NOT supported by HP.
If you wish to recompile Perl, you must install both GNUCORE and GNUGCC from jazz
(http://jazz.external.hp.com/src/gnu/gnuframe.html).
Perl/iX will be happier on MPE/iX 5.5 if you install the MPEKX40B extended POSIX filename
characters patch, but this is optional.
Patch LBCJXT6A is required on MPE/iX 5.5 machines in order to prevent Perl/iX from dying
with an unresolved external reference to _getenv_libc.
If you will be compiling Perl/iX yourself, you will also need Syslog/iX (
http://www.bixby.org/mark/syslogix.html ) and the /BIND/PUB/include and /BIND/PUB/lib
portions of BIND/iX ( http://www.bixby.org/mark/bindix.html ).
Download Perl using FTP.ARPA.SYS from your HP 3000 (the preferred method).....
:HELLO MANAGER.SYS
:XEQ FTP.ARPA.SYS
open ftp.bixby.org
anonymous
[email protected]
bytestream
cd /pub/mpe
get perl-5.6.0-mpe.tar.Z /tmp/perl.tar.Z;disc=2147483647
exit
.....Or download using some other generic web or ftp client (the alternate method)
Download the following files (make sure that you use "binary mode" or whatever client feature that is
8-bit clean):
Perl from
http://www.bixby.org/ftp/pub/mpe/perl-5.6.0-mpe.tar.Z
or
ftp://ftp.bixby.org/pub/mpe/perl-5.6.0-mpe.tar.Z
http://perldoc.perl.org Page 3
Perl version 5.8.9 documentation - perlmpeix
Upload those files to your HP 3000 in an 8-bit clean bytestream manner to:
/tmp/perl.tar.Z
INSTALL
Perl/iX Installation script.
LIBSHP3K
Script to convert *.a system archive libraries to *.sl shared libraries.
PERL
Perl NMPRG executable. A version-numbered backup copy also exists. You might wish to "ln
-s /PERL/PUB/PERL /usr/local/bin/perl".
.cpan/
Much add-on source code downloaded with the CPAN module.
lib/
Perl libraries, both core and add-on.
man/
Perl man page documentation.
public_html/feedback.cgi
Sample feedback CGI form written in Perl.
src/perl-5.6.0-mpe
Source code.
http://perldoc.perl.org Page 4
Perl version 5.8.9 documentation - perlmpeix
How to Compile Perl/iX
1. cd src/perl-5.6.0-mpe
3. ./Configure -d
4. make
5. ./mpeix/relink
6. make test (expect approximately 15 out of 11306 subtests to fail, mostly due to MPE not
supporting hard links, UDP socket problems, and handling exit() return codes improperly)
7. make install
8. Optionally create symbolic links that point to the Perl executable, i.e. ln -s /PERL/PUB/PERL
/usr/local/bin/perl
---------------------------------------------------------------------------
io/fs.t 29 8 27.59% 2-5, 7-9, 11
io/openpid.t 10 1 10.00% 7
lib/io_sock.t 14 1 7.14% 13
lib/io_udp.t 7 2 28.57% 3, 5
lib/posix.t 27 1 3.70% 12
op/lex_assign.t 187 1 0.53% 13
op/stat.t 58 1 1.72% 3
15 tests and 94 subtests skipped.
Failed 7/236 test scripts, 97.03% okay. 15/11306 subtests failed, 99.87%
okay.
Be sure to take a look at the CPAN module list ( http://www.cpan.org/CPAN.html ). A wide variety of
free Perl software is available. You can automatically download these packages by using the CPAN
module ( http://theoryx5.uwinnipeg.ca/CPAN/data/perl/CPAN.html ).
MPE gcc/ld doesn't properly support linking NMPRG executables against NMXL dynamic
libraries, so you must manually run mpeix/relink after each re-build of Perl.
Perl/iX File::Copy will use MPE's /bin/cp command to copy files by name in order to preserve
file attributes like file code.
MPE (and thus Perl/iX) lacks support for setgrent(), endgrent(), setpwent(), endpwent().
MPE requires GETPRIVMODE() in order to bind() to ports less than 1024. Perl/iX will call
GETPRIVMODE() automatically on your behalf if you attempt to bind() to these low-numbered
ports. Note that the Perl/iX executable and the PERL account do not normally have CAP=PM,
http://perldoc.perl.org Page 5
Perl version 5.8.9 documentation - perlmpeix
so if you will be bind()-ing to these privileged ports, you will manually need to add PM
capability as appropriate.
MPE requires that you bind() to an IP address of zero. Perl/iX automatically replaces the IP
address that you pass to bind() with a zero.
MPE requires GETPRIVMODE() in order to setuid(). There are too many calls to setuid()
within Perl/iX, so I have not attempted an automatic GETPRIVMODE() solution similar to
bind().
Add support for Berkeley DB once I've finished porting Berkeley DB.
Write an MPE XS extension library containing miscellaneous important MPE functions like
GETPRIVMODE(), GETUSERMODE(), and sfcntl().
Patch LBCJXT6A is required on MPE/iX 5.5 machines in order to prevent Perl/iX from dying
with an unresolved external reference to _getenv_libc.
April 7, 1999
The official source distribution once again compiles "straight out of the box" for MPE.
The current incarnation of the 5.5 POSIX filename extended characters patch is now
MPEKX40B.
The LIBSHP3K *.a -> *.sl library conversion script is now included as /PERL/PUB/LIBSHP3K.
Fixed a DynaLoader bug that was unable to load symbols from relative path name libraries.
Fixed a .xs compilation bug where the mpeixish.sh include file wasn't being installed into the
proper directory.
The current incarnation of the POSIX filename extended characters patch is now MPEKXJ3A.
The previous POSIX filename extended characters patch MPEKX44C has been superseded
by MPEKXB5A.
August 7, 1998
The previous POSIX filename extended characters patch MPEKX76A has been superseded
by MPEKX44C.
http://perldoc.perl.org Page 6
Perl version 5.8.9 documentation - perlmpeix
July 28, 1998
Updated to version 5.005 (production release). The public freeware sources are now 100%
MPE-ready "straight out of the box".
Updated to version 5.005b1 (public beta release). The public freeware sources are now 99.9%
MPE-ready. By installing and testing this beta on your own HP3000, you will be helping to
insure that the final release of 5.005 will be 100% MPE-ready and 100% bug free.
Changed startperl to #!/PERL/PUB/perl so that Perl will recognize scripts more easily and
efficiently.
July 8, 1998
Updated to version 5.004_70 (internal developer release) which is now MPE-ready. The next
public freeware release of Perl should compile "straight out of the box" on MPE. Note that this
version of Perl/iX was strictly internal to me and never publicly released. Note that [21]BIND/iX
is now required (well, the include files and libbind.a) if you wish to compile Perl/iX.
November 6, 1997
Added Demos section to the Perl/iX home page so you can see some sample Perl
applications running on my 3000.
October 3, 1997
Added System Requirements section to the Perl/iX home page just so the prerequisites stand
out more. Various other home page tweaks.
October 2, 1997
September 1997
Porting begins.
AUTHOR
Mark Bixby, http://www.bixby.org/mark/
http://perldoc.perl.org Page 7