This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Various updates and fixes to some of the SysV IPC ops and their tests
[perl5.git] / hints / os400.sh
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
6 case "$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 ***
13 EOF
14     exit 1
15     ;;
16 *)  cat >&4 <<EOF
17 ***
18 *** Using the AIX hints file, $src/hints/aix.sh.
19 ***
20 EOF
21     osname=aix
22     . $src/hints/aix.sh
23     ;;
24 esac