diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2002-08-30 01:22:51 +0300 |
---|---|---|
committer | hv <hv@crypt.org> | 2002-09-04 11:21:57 +0000 |
commit | 522b859adcc800ddbbe593fba580633bb305644f (patch) | |
tree | 27ac7ca00d33e07f829531d80821230b1f1a0bd7 /hints/aix.sh | |
parent | c38ddbc4365cf58ed4e3957d38c67381b8f863be (diff) | |
download | perl-522b859adcc800ddbbe593fba580633bb305644f.tar.gz |
OS/400 PASE port
Message-ID: <20020829192251.GA27102@lyta.hut.fi>
p4raw-id: //depot/perl@17827
Diffstat (limited to 'hints/aix.sh')
-rw-r--r-- | hints/aix.sh | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/hints/aix.sh b/hints/aix.sh index 231d3482b3..bee147965b 100644 --- a/hints/aix.sh +++ b/hints/aix.sh @@ -535,4 +535,28 @@ else esac fi +case "$PASE" in +define) + case "$prefix" in + '') prefix=/QOpenSys/perl ;; + esac + cat >&4 <<EOF + +*** +*** You seem to be compiling in AIX for the OS/400 PASE environment. +*** I'm not going to use the AIX bind, nsl, and possible util libraries, then. +*** I'm also not going to install perl as /usr/bin/perl. +*** Perl will be installed under $prefix. +*** For instructions how to install this build from AIX to PASE, +*** see the file README.os400. Accept the "aix" for the question +*** about "Operating system name". +*** +EOF + set `echo " $libswanted " | sed -e 's@ bind @ @' -e 's@ nsl @ @' -e 's@ util @ @'` + shift + libswanted="$*" + installusrbinperl="$undef" + ;; +esac + # EOF |