Mercurial > emacs
changeset 3573:7ff6a8013a4d
* configure.in (machine): Fix the versions in hpux version number test.
Do not guess based on cpu type. Do check for explicit system version.
author | Jim Blandy <jimb@redhat.com> |
---|---|
date | Tue, 08 Jun 1993 07:17:32 +0000 |
parents | 0810187da5d9 |
children | b5ddfcc90902 |
files | configure1.in |
diffstat | 1 files changed, 11 insertions(+), 6 deletions(-) [+] |
line wrap: on
line diff
--- 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 ;;