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
commit6097a3a57a5cedb41dc77ad6a50981eb0a7cd3c6 (patch)
tree00dd8c7d9d47865bd40cb9fa69700425e8e0a581 /configure1.in
parent6ebc58ac606d280df6c545612cf2c8abffa0c191 (diff)
downloademacs-6097a3a57a5cedb41dc77ad6a50981eb0a7cd3c6.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
;;