Mercurial > emacs
comparison configure @ 92198:6a56f830d80b
* configure.in: Print an error for systems that we think are
obsolete and are proposed to be removed. Remove some more unused
systems.
* configure: Regenerate.
author | Dan Nicolaescu <dann@ics.uci.edu> |
---|---|
date | Mon, 25 Feb 2008 08:17:18 +0000 |
parents | 9ed7610349d3 |
children | e52edaf1152a |
comparison
equal
deleted
inserted
replaced
92197:a930e751b9b9 | 92198:6a56f830d80b |
---|---|
2421 alpha*-*-openbsd*) machine=alpha ;; | 2421 alpha*-*-openbsd*) machine=alpha ;; |
2422 arm-*-openbsd*) machine=arm ;; | 2422 arm-*-openbsd*) machine=arm ;; |
2423 hppa-*-openbsd*) machine=hp9000s300 ;; | 2423 hppa-*-openbsd*) machine=hp9000s300 ;; |
2424 i386-*-openbsd*) machine=intel386 ;; | 2424 i386-*-openbsd*) machine=intel386 ;; |
2425 m68k-*-openbsd*) machine=hp9000s300 ;; | 2425 m68k-*-openbsd*) machine=hp9000s300 ;; |
2426 mips64-*-openbsd*) machine=mips64 ;; | |
2427 powerpc-*-openbsd*) machine=macppc ;; | 2426 powerpc-*-openbsd*) machine=macppc ;; |
2428 sparc*-*-openbsd*) machine=sparc ;; | 2427 sparc*-*-openbsd*) machine=sparc ;; |
2429 vax-*-openbsd*) machine=vax ;; | 2428 vax-*-openbsd*) machine=vax ;; |
2430 x86_64-*-openbsd*) machine=amdx86-64 ;; | 2429 x86_64-*-openbsd*) machine=amdx86-64 ;; |
2431 esac | 2430 esac |
2480 GCC_TEST_OPTIONS="-I/sw/include -L/sw/lib" | 2479 GCC_TEST_OPTIONS="-I/sw/include -L/sw/lib" |
2481 CPP="${CPP} ${GCC_TEST_OPTIONS}" | 2480 CPP="${CPP} ${GCC_TEST_OPTIONS}" |
2482 NON_GCC_TEST_OPTIONS=${GCC_TEST_OPTIONS} | 2481 NON_GCC_TEST_OPTIONS=${GCC_TEST_OPTIONS} |
2483 fi | 2482 fi |
2484 ;; | 2483 ;; |
2485 | |
2486 ## Compaq Nonstop | |
2487 mips-compaq-nonstopux* ) | |
2488 machine=nonstopux opsys=nonstopux | |
2489 ;; | |
2490 | 2484 |
2491 ## Cubix QBx/386 | 2485 ## Cubix QBx/386 |
2492 i[3456]86-cubix-sysv* ) | 2486 i[3456]86-cubix-sysv* ) |
2493 machine=intel386 opsys=usg5-3 | 2487 machine=intel386 opsys=usg5-3 |
2494 ;; | 2488 ;; |
2587 ;; | 2581 ;; |
2588 rs6000-ibm-aix4.3* | powerpc-ibm-aix4.3* ) | 2582 rs6000-ibm-aix4.3* | powerpc-ibm-aix4.3* ) |
2589 machine=ibmrs6000 opsys=aix4-2 | 2583 machine=ibmrs6000 opsys=aix4-2 |
2590 ;; | 2584 ;; |
2591 rs6000-ibm-aix5* | powerpc-ibm-aix5* ) | 2585 rs6000-ibm-aix5* | powerpc-ibm-aix5* ) |
2586 machine=ibmrs6000 opsys=aix4-2 | |
2587 ;; | |
2588 rs6000-ibm-aix5* | powerpc-ibm-aix6* ) | |
2592 machine=ibmrs6000 opsys=aix4-2 | 2589 machine=ibmrs6000 opsys=aix4-2 |
2593 ;; | 2590 ;; |
2594 rs6000-ibm-aix4.0* | powerpc-ibm-aix4.0* ) | 2591 rs6000-ibm-aix4.0* | powerpc-ibm-aix4.0* ) |
2595 machine=ibmrs6000 opsys=aix4 | 2592 machine=ibmrs6000 opsys=aix4 |
2596 ;; | 2593 ;; |
2829 * ) | 2826 * ) |
2830 unported=yes | 2827 unported=yes |
2831 ;; | 2828 ;; |
2832 esac | 2829 esac |
2833 fi | 2830 fi |
2831 | |
2832 ### Tests for sytems that we beleive are obsolete and should be desupported. | |
2833 | |
2834 case "${machine}" in | |
2835 pmax | hp9000s300 | ibm370aix | ncr386 | ews4800 | mips-siemens | powerpcle | tandem-s2 ) | |
2836 echo "The system that you are configuring on: ${canonical} is considered to be obsolete" | |
2837 echo "and it is planned to be desupported in the next version of Emacs" | |
2838 echo "Please email emacs-devel@gnu.org as soon as possible if this system is still in use." | |
2839 echo "The code is still functional, but you need to edit the 'configure' script and remove the" | |
2840 echo "exit 33 line. After that you can run configure again and 'complete' the build." | |
2841 exit 33 | |
2842 ;; | |
2843 esac | |
2844 | |
2845 case "${opsys}" in | |
2846 bsd386 | bsdos2-1 | bsdos2 | bsdos3 | bsdos4 | bsd4-1 | bsd4-2 | bsd4-3 | usg5-0 | usg5-2-2 | usg5-2 | usg5-3 | ultrix4-3 | 386bsd | hpux | hpux8 | hpux9 | hpux9shr | hpux10 | hpux10-20 | aix3-1 | aix3-2-5 | aix3-2 | aix4-1 | nextstep | ux4800 | uxpds | uxpv ) | |
2847 echo "The system that you are configuring on: ${canonical} is considered to be obsolete" | |
2848 echo "and it is planned to be desupported in the next version of Emacs" | |
2849 echo "Please email emacs-devel@gnu.org as soon as possible if this system is still in use." | |
2850 echo "The code is still functional, but you need to edit the 'configure' script and remove the" | |
2851 echo "'exit 44' line. After that you can run 'configure' again and complete the build." | |
2852 exit 44 | |
2853 ;; | |
2854 esac | |
2834 | 2855 |
2835 | 2856 |
2836 | 2857 |
2837 if test $unported = yes; then | 2858 if test $unported = yes; then |
2838 { { echo "$as_me:$LINENO: error: Emacs hasn't been ported to \`${canonical}' systems. | 2859 { { echo "$as_me:$LINENO: error: Emacs hasn't been ported to \`${canonical}' systems. |