diff options
author | Tom Horsley <tom@amber.ssd.hcsc.com> | 1997-07-30 12:01:31 +1200 |
---|---|---|
committer | Tim Bunce <Tim.Bunce@ig.co.uk> | 1997-08-07 00:00:00 +1200 |
commit | ae3afa4eb5f7bb8f9101daeb8d0881c2d4189709 (patch) | |
tree | 330c0475be515ceebc891df2ba89e20140736946 /Configure | |
parent | 594531f4d9838ea28dc90ddbca2a7370b93eaeec (diff) | |
download | perl-ae3afa4eb5f7bb8f9101daeb8d0881c2d4189709.tar.gz |
make Configure recognize powerux hint (perl5.004_01)
This is my day for building perl on various flavor Concurrent boxes - here's
a minor Configure patch for a different operating system.
Version 5.004_01 seems to build, link, and pass all tests perfectly "out of
the box" on Concurrent's PowerMAX OS, but because marketing keeps changing
the name of the operating system, Configure needs a small patch to recognize
all the possible versions of uname output and pick the right hint file. (I
suppose it would make marketing happier if I renamed powerux.sh to
powermax.sh, but I have the feeling they'll change the name again real soon
now, so I'm just gonna leave the hints file with the name it already has
:-).
I did try this patch, and it seemed to recognize the proper hints file
correctly when I built.
p5p-msgid: 9707301938.AA08352@amber.ssd.hcsc.com
Diffstat (limited to 'Configure')
-rwxr-xr-x | Configure | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -1780,6 +1780,10 @@ EOM bsd386) osname=bsd386 osvers=`$uname -r` ;; + powerux | power_ux | powermax_os | powermaxos | \ + powerunix | power_unix) osname=powerux + osvers="$3" + ;; next*) osname=next ;; solaris) osname=solaris case "$3" in |