aboutsummaryrefslogtreecommitdiffstats
path: root/configure1.in
diff options
context:
space:
mode:
authorJim Blandy <[email protected]>1993-05-24 05:06:15 +0000
committerJim Blandy <[email protected]>1993-05-24 05:06:15 +0000
commitc55f453be0f383d86572a1518a241d545c7f2e2a (patch)
tree60cc998b6a51fea39d8bcb863a9dc6d736d27cbb /configure1.in
parent6cb37d97913cf133acd5ff6f94344165e1bf5869 (diff)
* configure.in: Distinguish between hp800's and hp700's by calling
"uname -m". * configure.in: Distinguish between hp800's and hp700's by calling "uname -m".
Diffstat (limited to 'configure1.in')
-rwxr-xr-xconfigure1.in16
1 files changed, 13 insertions, 3 deletions
diff --git a/configure1.in b/configure1.in
index 7a56f8cf05..f3bace3ed5 100755
--- a/configure1.in
+++ b/configure1.in
@@ -499,9 +499,19 @@ case "${configuration}" in
machine=hp9000s300 opsys=hpux
;;
- ## HP 9000 series 800, running HP/UX
+ ## HP 9000 series 700 and 800, running HP/UX
hppa1.0-hp-hpux* )
- machine=hp9000s800 opsys=hpux
+ machine=hp9000s800 opsys=hpux.h
+ ;;
+ hppa1.1-hp-hpux* )
+ machine=hp9000s800 opsys=hpux8.h
+ ;;
+ hppa*-hp-hpux* )
+ ## Cross-compilation? Nah!
+ case "`uname -m`" in
+ 9000/8?? ) machine=hp9000s800 opsys=hpux.h ;;
+ 9000/7?? ) machine=hp9000s800 opsys=hpux8.h ;;
+ esac
;;
## Orion machines
@@ -838,7 +848,7 @@ AC_RETSIGTYPE
dnl checks for functions
AC_ALLOCA
-AC_HAVE_FUNCS(gettimeofday gethostname dup2)
+AC_HAVE_FUNCS(gettimeofday gethostname dup2 rename)
dnl checks for structure members
AC_STRUCT_TM