diff options
| author | Jim Blandy | 1993-05-24 05:06:15 +0000 |
|---|---|---|
| committer | Jim Blandy | 1993-05-24 05:06:15 +0000 |
| commit | c55f453be0f383d86572a1518a241d545c7f2e2a (patch) | |
| tree | 60cc998b6a51fea39d8bcb863a9dc6d736d27cbb | |
| parent | 6cb37d97913cf133acd5ff6f94344165e1bf5869 (diff) | |
| download | emacs-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-x | configure1.in | 16 |
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 | ||
| 839 | dnl checks for functions | 849 | dnl checks for functions |
| 840 | AC_ALLOCA | 850 | AC_ALLOCA |
| 841 | AC_HAVE_FUNCS(gettimeofday gethostname dup2) | 851 | AC_HAVE_FUNCS(gettimeofday gethostname dup2 rename) |
| 842 | 852 | ||
| 843 | dnl checks for structure members | 853 | dnl checks for structure members |
| 844 | AC_STRUCT_TM | 854 | AC_STRUCT_TM |