xref: /openbsd-src/gnu/usr.bin/perl/hints/os400.sh (revision 8500990981f885cbe5e6a4958549cacc238b5ae6)
1*85009909Smillert#
2*85009909Smillert# We will just reuse the AIX hints since we support only building
3*85009909Smillert# for the PASE and the PASE hints are merged with the AIX hints.
4*85009909Smillert#
5*85009909Smillert
6*85009909Smillertcase "$PASE" in
7*85009909Smillert'') cat >&4 <<EOF
8*85009909Smillert***
9*85009909Smillert*** This build process only works with the PASE environment (not ILE).
10*85009909Smillert*** You must supply the -DPASE parameter to the Configure script,
11*85009909Smillert*** please read the file README.os400.  Exiting now.
12*85009909Smillert***
13*85009909SmillertEOF
14*85009909Smillert    exit 1
15*85009909Smillert    ;;
16*85009909Smillert*)  cat >&4 <<EOF
17*85009909Smillert***
18*85009909Smillert*** Using the AIX hints file, $src/hints/aix.sh.
19*85009909Smillert***
20*85009909SmillertEOF
21*85009909Smillert    osname=aix
22*85009909Smillert    . $src/hints/aix.sh
23*85009909Smillert    ;;
24*85009909Smillertesac
25