# HG changeset patch # User Jim Blandy # Date 739523852 0 # Node ID 7ff6a8013a4d985c889ec6ffee90155636b62826 # Parent 0810187da5d97c1f4e1ecd1a7954b19755fd250f * configure.in (machine): Fix the versions in hpux version number test. Do not guess based on cpu type. Do check for explicit system version. diff -r 0810187da5d9 -r 7ff6a8013a4d configure1.in --- a/configure1.in Tue Jun 08 07:15:01 1993 +0000 +++ b/configure1.in Tue Jun 08 07:17:32 1993 +0000 @@ -558,17 +558,22 @@ ;; ## HP 9000 series 700 and 800, running HP/UX - hppa1.0-hp-hpux* ) - machine=hp9000s800 opsys=hpux + hppa*-hp-hpux7* ) + machine=hp9000s800 opsys=hpux ;; + ;; + hppa*-hp-hpux8* ) + machine=hp9000s800 opsys=hpux8 ;; ;; - hppa1.1-hp-hpux* ) - machine=hp9000s800 opsys=hpux8 + hppa*-hp-hpux9* ) + machine=hp9000s800 opsys=hpux9 ;; ;; + + ## HP 9000 series 700 and 800, running HP/UX hppa*-hp-hpux* ) ## Cross-compilation? Nah! case "`uname -r`" in - *.08.* ) machine=hp9000s800 opsys=hpux ;; - *.09.* ) machine=hp9000s800 opsys=hpux8 ;; + *.08.* ) machine=hp9000s800 opsys=hpux8 ;; + *.09.* ) machine=hp9000s800 opsys=hpux9 ;; *) machine=hp9000s800 opsys=hpux ;; esac ;;