* configure.in (hppa-hp-hpux): Use uname -r instead of uname -m;

the former gives you the operating system rev directly.  Use
	s/hpux.h if we don't recognize what we got.
This commit is contained in:
Jim Blandy 1993-05-26 18:32:19 +00:00
parent 005775ce97
commit 252c8b3bc0

View file

@ -526,9 +526,10 @@ case "${configuration}" in
;;
hppa*-hp-hpux* )
## Cross-compilation? Nah!
case "`uname -m`" in
9000/8?? ) machine=hp9000s800 opsys=hpux ;;
9000/7?? ) machine=hp9000s800 opsys=hpux8 ;;
case "`uname -r`" in
*.08.* ) machine=hp9000s800 opsys=hpux ;;
*.09.* ) machine=hp9000s800 opsys=hpux8 ;;
*) machine=hp9000s800 opsys=hpux ;;
esac
;;