diff options
| author | Glenn Morris | 2010-05-29 11:57:11 -0700 |
|---|---|---|
| committer | Glenn Morris | 2010-05-29 11:57:11 -0700 |
| commit | b233600fbd201794a34bee1f3a819adb63eda7ec (patch) | |
| tree | 096c548399d61a60e7464f3a8b6283bbe4f6f030 | |
| parent | 8cce271eac68fef59d37c95b28784693c26e55e9 (diff) | |
| download | emacs-b233600fbd201794a34bee1f3a819adb63eda7ec.tar.gz emacs-b233600fbd201794a34bee1f3a819adb63eda7ec.zip | |
Regenerate configure.
| -rwxr-xr-x | configure | 85 |
1 files changed, 40 insertions, 45 deletions
| @@ -2724,7 +2724,7 @@ configuration=${host_alias-${build_alias-$host}} | |||
| 2724 | ### the appropriate operating system and machine description files. | 2724 | ### the appropriate operating system and machine description files. |
| 2725 | 2725 | ||
| 2726 | ### You would hope that you could choose an m/*.h file pretty much | 2726 | ### You would hope that you could choose an m/*.h file pretty much |
| 2727 | ### based on the machine portion of the configuration name, and an s- | 2727 | ### based on the machine portion of the configuration name, and an s/*.h |
| 2728 | ### file based on the operating system portion. However, it turns out | 2728 | ### file based on the operating system portion. However, it turns out |
| 2729 | ### that each m/*.h file is pretty manufacturer-specific - for | 2729 | ### that each m/*.h file is pretty manufacturer-specific - for |
| 2730 | ### example mips.h is MIPS | 2730 | ### example mips.h is MIPS |
| @@ -2736,10 +2736,6 @@ configuration=${host_alias-${build_alias-$host}} | |||
| 2736 | ### /etc/MACHINES doesn't say anything about version numbers, be | 2736 | ### /etc/MACHINES doesn't say anything about version numbers, be |
| 2737 | ### prepared to handle anything reasonably. If version numbers | 2737 | ### prepared to handle anything reasonably. If version numbers |
| 2738 | ### matter, be sure /etc/MACHINES says something about it. | 2738 | ### matter, be sure /etc/MACHINES says something about it. |
| 2739 | ### | ||
| 2740 | ### Eric Raymond says we should accept strings like "sysvr4" to mean | ||
| 2741 | ### "System V Release 4"; he writes, "The old convention encouraged | ||
| 2742 | ### confusion between `system' and `release' levels'." | ||
| 2743 | 2739 | ||
| 2744 | machine='' opsys='' unported=no | 2740 | machine='' opsys='' unported=no |
| 2745 | case "${canonical}" in | 2741 | case "${canonical}" in |
| @@ -2748,14 +2744,14 @@ case "${canonical}" in | |||
| 2748 | *-*-freebsd* ) | 2744 | *-*-freebsd* ) |
| 2749 | opsys=freebsd | 2745 | opsys=freebsd |
| 2750 | case "${canonical}" in | 2746 | case "${canonical}" in |
| 2751 | alpha*-*-freebsd*) machine=alpha ;; | 2747 | alpha*) machine=alpha ;; |
| 2752 | arm*-*-freebsd*) machine=arm ;; | 2748 | amd64-*|x86_64-*) machine=amdx86-64 ;; |
| 2753 | ia64-*-freebsd*) machine=ia64 ;; | 2749 | arm*) machine=arm ;; |
| 2754 | sparc-*-freebsd*) machine=sparc ;; | 2750 | ia64-*) machine=ia64 ;; |
| 2755 | sparc64-*-freebsd*) machine=sparc ;; | 2751 | i[3456]86-*) machine=intel386 ;; |
| 2756 | powerpc-*-freebsd*) machine=macppc ;; | 2752 | powerpc-*) machine=macppc ;; |
| 2757 | i[3456]86-*-freebsd*) machine=intel386 ;; | 2753 | sparc-*) machine=sparc ;; |
| 2758 | amd64-*-freebsd*|x86_64-*-freebsd*) machine=amdx86-64 ;; | 2754 | sparc64-*) machine=sparc ;; |
| 2759 | esac | 2755 | esac |
| 2760 | ;; | 2756 | ;; |
| 2761 | 2757 | ||
| @@ -2763,13 +2759,13 @@ case "${canonical}" in | |||
| 2763 | *-*-kfreebsd*gnu* ) | 2759 | *-*-kfreebsd*gnu* ) |
| 2764 | opsys=gnu-kfreebsd | 2760 | opsys=gnu-kfreebsd |
| 2765 | case "${canonical}" in | 2761 | case "${canonical}" in |
| 2766 | alpha*-*-kfreebsd*) machine=alpha ;; | 2762 | alpha*) machine=alpha ;; |
| 2767 | ia64-*-kfreebsd*) machine=ia64 ;; | 2763 | amd64-*|x86_64-*) machine=amdx86-64 ;; |
| 2768 | sparc-*-kfreebsd*) machine=sparc ;; | 2764 | ia64-*) machine=ia64 ;; |
| 2769 | sparc64-*-kfreebsd*) machine=sparc ;; | 2765 | i[3456]86-*) machine=intel386 ;; |
| 2770 | powerpc-*-kfreebsd*) machine=macppc ;; | 2766 | powerpc-*) machine=macppc ;; |
| 2771 | i[3456]86-*-kfreebsd*) machine=intel386 ;; | 2767 | sparc-*) machine=sparc ;; |
| 2772 | amd64-*-kfreebsd*|x86_64-*-kfreebsd*) machine=amdx86-64 ;; | 2768 | sparc64-*) machine=sparc ;; |
| 2773 | esac | 2769 | esac |
| 2774 | ;; | 2770 | ;; |
| 2775 | 2771 | ||
| @@ -2777,18 +2773,17 @@ case "${canonical}" in | |||
| 2777 | *-*-netbsd* ) | 2773 | *-*-netbsd* ) |
| 2778 | opsys=netbsd | 2774 | opsys=netbsd |
| 2779 | case "${canonical}" in | 2775 | case "${canonical}" in |
| 2780 | alpha*-*-netbsd*) machine=alpha ;; | 2776 | alpha*) machine=alpha ;; |
| 2781 | i[3456]86-*-netbsd*) machine=intel386 ;; | 2777 | x86_64-*) machine=amdx86-64 ;; |
| 2782 | mips-*-netbsd*) machine=mips ;; | 2778 | arm-*) machine=arm ;; |
| 2783 | mipsel-*-netbsd*) machine=mips ;; | 2779 | hppa-*) machine=hp800 ;; |
| 2784 | mipseb-*-netbsd*) machine=mips ;; | 2780 | i[3456]86-*) machine=intel386 ;; |
| 2785 | powerpc-*-netbsd*) machine=macppc ;; | 2781 | m68k-*) machine=m68k ;; |
| 2786 | sparc*-*-netbsd*) machine=sparc ;; | 2782 | powerpc-*) machine=macppc ;; |
| 2787 | vax-*-netbsd*) machine=vax ;; | 2783 | mips-*) machine=mips ;; |
| 2788 | arm-*-netbsd*) machine=arm ;; | 2784 | mipse[bl]-*) machine=mips ;; |
| 2789 | x86_64-*-netbsd*) machine=amdx86-64 ;; | 2785 | sparc*-) machine=sparc ;; |
| 2790 | hppa-*-netbsd*) machine=hp800 ;; | 2786 | vax-*) machine=vax ;; |
| 2791 | m68k-*-netbsd*) machine=m68k ;; | ||
| 2792 | esac | 2787 | esac |
| 2793 | ;; | 2788 | ;; |
| 2794 | 2789 | ||
| @@ -2796,14 +2791,14 @@ case "${canonical}" in | |||
| 2796 | *-*-openbsd* ) | 2791 | *-*-openbsd* ) |
| 2797 | opsys=openbsd | 2792 | opsys=openbsd |
| 2798 | case "${canonical}" in | 2793 | case "${canonical}" in |
| 2799 | alpha*-*-openbsd*) machine=alpha ;; | 2794 | alpha*) machine=alpha ;; |
| 2800 | arm-*-openbsd*) machine=arm ;; | 2795 | x86_64-*) machine=amdx86-64 ;; |
| 2801 | i386-*-openbsd*) machine=intel386 ;; | 2796 | arm-*) machine=arm ;; |
| 2802 | powerpc-*-openbsd*) machine=macppc ;; | 2797 | hppa-*) machine=hp800 ;; |
| 2803 | sparc*-*-openbsd*) machine=sparc ;; | 2798 | i386-*) machine=intel386 ;; |
| 2804 | vax-*-openbsd*) machine=vax ;; | 2799 | powerpc-*) machine=macppc ;; |
| 2805 | x86_64-*-openbsd*) machine=amdx86-64 ;; | 2800 | sparc*) machine=sparc ;; |
| 2806 | hppa-*-openbsd*) machine=hp800 ;; | 2801 | vax-*) machine=vax ;; |
| 2807 | esac | 2802 | esac |
| 2808 | ;; | 2803 | ;; |
| 2809 | 2804 | ||
| @@ -2854,16 +2849,16 @@ case "${canonical}" in | |||
| 2854 | s390x-*-linux-gnu* ) | 2849 | s390x-*-linux-gnu* ) |
| 2855 | machine=ibms390x opsys=gnu-linux | 2850 | machine=ibms390x opsys=gnu-linux |
| 2856 | ;; | 2851 | ;; |
| 2857 | rs6000-ibm-aix4.2* | powerpc-ibm-aix4.2* ) | 2852 | rs6000-ibm-aix4.[23]* ) |
| 2858 | machine=ibmrs6000 opsys=aix4-2 | 2853 | machine=ibmrs6000 opsys=aix4-2 |
| 2859 | ;; | 2854 | ;; |
| 2860 | rs6000-ibm-aix4.3* | powerpc-ibm-aix4.3* ) | 2855 | powerpc-ibm-aix4.[23]* ) |
| 2861 | machine=ibmrs6000 opsys=aix4-2 | 2856 | machine=ibmrs6000 opsys=aix4-2 |
| 2862 | ;; | 2857 | ;; |
| 2863 | rs6000-ibm-aix5* | powerpc-ibm-aix5* ) | 2858 | rs6000-ibm-aix[56]* ) |
| 2864 | machine=ibmrs6000 opsys=aix4-2 | 2859 | machine=ibmrs6000 opsys=aix4-2 |
| 2865 | ;; | 2860 | ;; |
| 2866 | rs6000-ibm-aix6* | powerpc-ibm-aix6* ) | 2861 | powerpc-ibm-aix[56]* ) |
| 2867 | machine=ibmrs6000 opsys=aix4-2 | 2862 | machine=ibmrs6000 opsys=aix4-2 |
| 2868 | ;; | 2863 | ;; |
| 2869 | 2864 | ||
| @@ -2932,7 +2927,7 @@ case "${canonical}" in | |||
| 2932 | machine=ia64 opsys=gnu-linux | 2927 | machine=ia64 opsys=gnu-linux |
| 2933 | ;; | 2928 | ;; |
| 2934 | 2929 | ||
| 2935 | ## Intel 386 machines where we don't care about the manufacturer | 2930 | ## Intel 386 machines where we don't care about the manufacturer. |
| 2936 | i[3456]86-*-* ) | 2931 | i[3456]86-*-* ) |
| 2937 | machine=intel386 | 2932 | machine=intel386 |
| 2938 | case "${canonical}" in | 2933 | case "${canonical}" in |