aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJim Blandy1993-05-24 05:06:15 +0000
committerJim Blandy1993-05-24 05:06:15 +0000
commitc55f453be0f383d86572a1518a241d545c7f2e2a (patch)
tree60cc998b6a51fea39d8bcb863a9dc6d736d27cbb
parent6cb37d97913cf133acd5ff6f94344165e1bf5869 (diff)
downloademacs-c55f453be0f383d86572a1518a241d545c7f2e2a.tar.gz
emacs-c55f453be0f383d86572a1518a241d545c7f2e2a.zip
* 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".
-rwxr-xr-xconfigure1.in16
1 files changed, 13 insertions, 3 deletions
diff --git a/configure1.in b/configure1.in
index 7a56f8cf055..f3bace3ed56 100755
--- a/configure1.in
+++ b/configure1.in
@@ -499,9 +499,19 @@ case "${configuration}" in
499 machine=hp9000s300 opsys=hpux 499 machine=hp9000s300 opsys=hpux
500 ;; 500 ;;
501 501
502 ## HP 9000 series 800, running HP/UX 502 ## HP 9000 series 700 and 800, running HP/UX
503 hppa1.0-hp-hpux* ) 503 hppa1.0-hp-hpux* )
504 machine=hp9000s800 opsys=hpux 504 machine=hp9000s800 opsys=hpux.h
505 ;;
506 hppa1.1-hp-hpux* )
507 machine=hp9000s800 opsys=hpux8.h
508 ;;
509 hppa*-hp-hpux* )
510 ## Cross-compilation? Nah!
511 case "`uname -m`" in
512 9000/8?? ) machine=hp9000s800 opsys=hpux.h ;;
513 9000/7?? ) machine=hp9000s800 opsys=hpux8.h ;;
514 esac
505 ;; 515 ;;
506 516
507 ## Orion machines 517 ## Orion machines
@@ -838,7 +848,7 @@ AC_RETSIGTYPE
838 848
839dnl checks for functions 849dnl checks for functions
840AC_ALLOCA 850AC_ALLOCA
841AC_HAVE_FUNCS(gettimeofday gethostname dup2) 851AC_HAVE_FUNCS(gettimeofday gethostname dup2 rename)
842 852
843dnl checks for structure members 853dnl checks for structure members
844AC_STRUCT_TM 854AC_STRUCT_TM