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/os400.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/os400.sh')
-rw-r--r-- | hints/os400.sh | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/hints/os400.sh b/hints/os400.sh new file mode 100644 index 0000000000..16eec2fbe2 --- /dev/null +++ b/hints/os400.sh @@ -0,0 +1,24 @@ +# +# We will just reuse the AIX hints since we support only building +# for the PASE and the PASE hints are merged with the AIX hints. +# + +case "$PASE" in +'') cat >&4 <<EOF +*** +*** This build process only works with the PASE environment (not ILE). +*** You must supply the -DPASE parameter to the Configure script, +*** please read the file README.os400. Exiting now. +*** +EOF + exit 1 + ;; +*) cat >&4 <<EOF +*** +*** Using the AIX hints file, $src/hints/aix.sh. +*** +EOF + osname=aix + . $src/hints/aix.sh + ;; +esac |