diff options
| author | Glenn Morris | 2010-05-27 21:25:06 -0700 |
|---|---|---|
| committer | Glenn Morris | 2010-05-27 21:25:06 -0700 |
| commit | 3d338b4613c47aecc773093f92cf48f279ed95d1 (patch) | |
| tree | fd27ab5a5c0c4f520f42937ae1ae464db24e8f58 | |
| parent | 3e8bf1ef8f81318fa3775df7e1f3eb7536c80efa (diff) | |
| download | emacs-3d338b4613c47aecc773093f92cf48f279ed95d1.tar.gz emacs-3d338b4613c47aecc773093f92cf48f279ed95d1.zip | |
* configure.in: Simplify some of the *bsd $canonical tests.
| -rw-r--r-- | configure.in | 71 |
1 files changed, 35 insertions, 36 deletions
diff --git a/configure.in b/configure.in index 0953cc8d413..5ceb2c3bd48 100644 --- a/configure.in +++ b/configure.in | |||
| @@ -389,14 +389,14 @@ case "${canonical}" in | |||
| 389 | *-*-freebsd* ) | 389 | *-*-freebsd* ) |
| 390 | opsys=freebsd | 390 | opsys=freebsd |
| 391 | case "${canonical}" in | 391 | case "${canonical}" in |
| 392 | alpha*-*-freebsd*) machine=alpha ;; | 392 | alpha*) machine=alpha ;; |
| 393 | arm*-*-freebsd*) machine=arm ;; | 393 | amd64-*|x86_64-*) machine=amdx86-64 ;; |
| 394 | ia64-*-freebsd*) machine=ia64 ;; | 394 | arm*) machine=arm ;; |
| 395 | sparc-*-freebsd*) machine=sparc ;; | 395 | ia64-*) machine=ia64 ;; |
| 396 | sparc64-*-freebsd*) machine=sparc ;; | 396 | i[3456]86-*) machine=intel386 ;; |
| 397 | powerpc-*-freebsd*) machine=macppc ;; | 397 | powerpc-*) machine=macppc ;; |
| 398 | i[3456]86-*-freebsd*) machine=intel386 ;; | 398 | sparc-*) machine=sparc ;; |
| 399 | amd64-*-freebsd*|x86_64-*-freebsd*) machine=amdx86-64 ;; | 399 | sparc64-*) machine=sparc ;; |
| 400 | esac | 400 | esac |
| 401 | ;; | 401 | ;; |
| 402 | 402 | ||
| @@ -404,13 +404,13 @@ case "${canonical}" in | |||
| 404 | *-*-kfreebsd*gnu* ) | 404 | *-*-kfreebsd*gnu* ) |
| 405 | opsys=gnu-kfreebsd | 405 | opsys=gnu-kfreebsd |
| 406 | case "${canonical}" in | 406 | case "${canonical}" in |
| 407 | alpha*-*-kfreebsd*) machine=alpha ;; | 407 | alpha*) machine=alpha ;; |
| 408 | ia64-*-kfreebsd*) machine=ia64 ;; | 408 | amd64-*|x86_64-*) machine=amdx86-64 ;; |
| 409 | sparc-*-kfreebsd*) machine=sparc ;; | 409 | ia64-*) machine=ia64 ;; |
| 410 | sparc64-*-kfreebsd*) machine=sparc ;; | 410 | i[3456]86-*) machine=intel386 ;; |
| 411 | powerpc-*-kfreebsd*) machine=macppc ;; | 411 | powerpc-*) machine=macppc ;; |
| 412 | i[3456]86-*-kfreebsd*) machine=intel386 ;; | 412 | sparc-*) machine=sparc ;; |
| 413 | amd64-*-kfreebsd*|x86_64-*-kfreebsd*) machine=amdx86-64 ;; | 413 | sparc64-*) machine=sparc ;; |
| 414 | esac | 414 | esac |
| 415 | ;; | 415 | ;; |
| 416 | 416 | ||
| @@ -418,18 +418,17 @@ case "${canonical}" in | |||
| 418 | *-*-netbsd* ) | 418 | *-*-netbsd* ) |
| 419 | opsys=netbsd | 419 | opsys=netbsd |
| 420 | case "${canonical}" in | 420 | case "${canonical}" in |
| 421 | alpha*-*-netbsd*) machine=alpha ;; | 421 | alpha*) machine=alpha ;; |
| 422 | i[3456]86-*-netbsd*) machine=intel386 ;; | 422 | x86_64-*) machine=amdx86-64 ;; |
| 423 | mips-*-netbsd*) machine=mips ;; | 423 | arm-*) machine=arm ;; |
| 424 | mipsel-*-netbsd*) machine=mips ;; | 424 | hppa-*) machine=hp800 ;; |
| 425 | mipseb-*-netbsd*) machine=mips ;; | 425 | i[3456]86-*) machine=intel386 ;; |
| 426 | powerpc-*-netbsd*) machine=macppc ;; | 426 | m68k-*) machine=m68k ;; |
| 427 | sparc*-*-netbsd*) machine=sparc ;; | 427 | powerpc-*) machine=macppc ;; |
| 428 | vax-*-netbsd*) machine=vax ;; | 428 | mips-*) machine=mips ;; |
| 429 | arm-*-netbsd*) machine=arm ;; | 429 | mipse[bl]-*) machine=mips ;; |
| 430 | x86_64-*-netbsd*) machine=amdx86-64 ;; | 430 | sparc*-) machine=sparc ;; |
| 431 | hppa-*-netbsd*) machine=hp800 ;; | 431 | vax-*) machine=vax ;; |
| 432 | m68k-*-netbsd*) machine=m68k ;; | ||
| 433 | esac | 432 | esac |
| 434 | ;; | 433 | ;; |
| 435 | 434 | ||
| @@ -437,14 +436,14 @@ case "${canonical}" in | |||
| 437 | *-*-openbsd* ) | 436 | *-*-openbsd* ) |
| 438 | opsys=openbsd | 437 | opsys=openbsd |
| 439 | case "${canonical}" in | 438 | case "${canonical}" in |
| 440 | alpha*-*-openbsd*) machine=alpha ;; | 439 | alpha*) machine=alpha ;; |
| 441 | arm-*-openbsd*) machine=arm ;; | 440 | x86_64-*) machine=amdx86-64 ;; |
| 442 | i386-*-openbsd*) machine=intel386 ;; | 441 | arm-*) machine=arm ;; |
| 443 | powerpc-*-openbsd*) machine=macppc ;; | 442 | hppa-*) machine=hp800 ;; |
| 444 | sparc*-*-openbsd*) machine=sparc ;; | 443 | i386-*) machine=intel386 ;; |
| 445 | vax-*-openbsd*) machine=vax ;; | 444 | powerpc-*) machine=macppc ;; |
| 446 | x86_64-*-openbsd*) machine=amdx86-64 ;; | 445 | sparc*) machine=sparc ;; |
| 447 | hppa-*-openbsd*) machine=hp800 ;; | 446 | vax-*) machine=vax ;; |
| 448 | esac | 447 | esac |
| 449 | ;; | 448 | ;; |
| 450 | 449 | ||
| @@ -573,7 +572,7 @@ case "${canonical}" in | |||
| 573 | machine=ia64 opsys=gnu-linux | 572 | machine=ia64 opsys=gnu-linux |
| 574 | ;; | 573 | ;; |
| 575 | 574 | ||
| 576 | ## Intel 386 machines where we don't care about the manufacturer | 575 | ## Intel 386 machines where we don't care about the manufacturer. |
| 577 | i[3456]86-*-* ) | 576 | i[3456]86-*-* ) |
| 578 | machine=intel386 | 577 | machine=intel386 |
| 579 | case "${canonical}" in | 578 | case "${canonical}" in |