summaryrefslogtreecommitdiff
path: root/configure1.in
diff options
context:
space:
mode:
authorJim Blandy <jimb@redhat.com>1993-06-08 07:17:32 +0000
committerJim Blandy <jimb@redhat.com>1993-06-08 07:17:32 +0000
commitea2c2e02dbeb12cf77d6b277d1a496d8a97fe815 (patch)
tree07c814a914578080da07c3f216eab38a8865afbc /configure1.in
parent11e5be7d857cc241d9471f7f97abf28d96f7e2cc (diff)
downloademacs-ea2c2e02dbeb12cf77d6b277d1a496d8a97fe815.tar.gz
* configure.in (machine): Fix the versions in hpux version number test.
Do not guess based on cpu type. Do check for explicit system version.
Diffstat (limited to 'configure1.in')
-rwxr-xr-xconfigure1.in17
1 files changed, 11 insertions, 6 deletions
diff --git a/configure1.in b/configure1.in
index e0999e5523e..1d494e24dc6 100755
--- a/configure1.in
+++ b/configure1.in
@@ -558,17 +558,22 @@ case "${configuration}" in
;;
## HP 9000 series 700 and 800, running HP/UX
- hppa1.0-hp-hpux* )
- machine=hp9000s800 opsys=hpux
+ hppa*-hp-hpux7* )
+ machine=hp9000s800 opsys=hpux ;;
;;
- hppa1.1-hp-hpux* )
- machine=hp9000s800 opsys=hpux8
+ hppa*-hp-hpux8* )
+ 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
;;