source: vendor/perl/5.8.8/hints/os400.sh

Last change on this file was 3181, checked in by bird, 18 years ago

perl 5.8.8

File size: 520 bytes
Line 
1#
2# We will just reuse the AIX hints since we support only building
3# for the PASE and the PASE hints are merged with the AIX hints.
4#
5
6case "$PASE" in
7'') cat >&4 <<EOF
8***
9*** This build process only works with the PASE environment (not ILE).
10*** You must supply the -DPASE parameter to the Configure script,
11*** please read the file README.os400. Exiting now.
12***
13EOF
14 exit 1
15 ;;
16*) cat >&4 <<EOF
17***
18*** Using the AIX hints file, $src/hints/aix.sh.
19***
20EOF
21 osname=aix
22 . $src/hints/aix.sh
23 ;;
24esac
Note: See TracBrowser for help on using the repository browser.