aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Schwab2005-12-29 14:20:23 +0000
committerAndreas Schwab2005-12-29 14:20:23 +0000
commit88ec8c53c63b091d8b7ccc8fef3b5948f4c0a53e (patch)
tree2cabde871de409c81c8d70317ec67622465f120c
parentb370fef5223f9db60cfdf779d080aad2f5a49785 (diff)
downloademacs-88ec8c53c63b091d8b7ccc8fef3b5948f4c0a53e.tar.gz
emacs-88ec8c53c63b091d8b7ccc8fef3b5948f4c0a53e.zip
* config.guess, config.sub: Updated from master source.
-rw-r--r--ChangeLog4
-rwxr-xr-xconfig.guess26
-rwxr-xr-xconfig.sub42
3 files changed, 56 insertions, 16 deletions
diff --git a/ChangeLog b/ChangeLog
index 84f25e00117..cd8e2720100 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
12005-12-29 Andreas Schwab <schwab@suse.de>
2
3 * config.guess, config.sub: Updated from master source.
4
12005-12-25 Giorgos Keramidas <keramida@ceid.upatras.gr> (tiny change) 52005-12-25 Giorgos Keramidas <keramida@ceid.upatras.gr> (tiny change)
2 6
3 * configure.in: use amdx86-64 for freebsd on x86_64. 7 * configure.in: use amdx86-64 for freebsd on x86_64.
diff --git a/config.guess b/config.guess
index ad5281e66e9..10a8260177a 100755
--- a/config.guess
+++ b/config.guess
@@ -3,7 +3,7 @@
3# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 3# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
4# 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. 4# 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
5 5
6timestamp='2005-08-03' 6timestamp='2005-12-23'
7 7
8# This file is free software; you can redistribute it and/or modify it 8# This file is free software; you can redistribute it and/or modify it
9# under the terms of the GNU General Public License as published by 9# under the terms of the GNU General Public License as published by
@@ -764,7 +764,12 @@ EOF
764 echo ${UNAME_MACHINE}-unknown-bsdi${UNAME_RELEASE} 764 echo ${UNAME_MACHINE}-unknown-bsdi${UNAME_RELEASE}
765 exit ;; 765 exit ;;
766 *:FreeBSD:*:*) 766 *:FreeBSD:*:*)
767 echo ${UNAME_MACHINE}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` 767 case ${UNAME_MACHINE} in
768 pc98)
769 echo i386-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;;
770 *)
771 echo ${UNAME_MACHINE}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;;
772 esac
768 exit ;; 773 exit ;;
769 i*:CYGWIN*:*) 774 i*:CYGWIN*:*)
770 echo ${UNAME_MACHINE}-pc-cygwin 775 echo ${UNAME_MACHINE}-pc-cygwin
@@ -779,7 +784,7 @@ EOF
779 i*:PW*:*) 784 i*:PW*:*)
780 echo ${UNAME_MACHINE}-pc-pw32 785 echo ${UNAME_MACHINE}-pc-pw32
781 exit ;; 786 exit ;;
782 x86:Interix*:[34]*) 787 x86:Interix*:[345]*)
783 echo i586-pc-interix${UNAME_RELEASE}|sed -e 's/\..*//' 788 echo i586-pc-interix${UNAME_RELEASE}|sed -e 's/\..*//'
784 exit ;; 789 exit ;;
785 [345]86:Windows_95:* | [345]86:Windows_98:* | [345]86:Windows_NT:*) 790 [345]86:Windows_95:* | [345]86:Windows_98:* | [345]86:Windows_NT:*)
@@ -851,7 +856,7 @@ EOF
851 #endif 856 #endif
852 #endif 857 #endif
853EOF 858EOF
854 eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep ^CPU=` 859 eval "`$CC_FOR_BUILD -E $dummy.c 2>/dev/null | sed -n '/^CPU/{s: ::g;p;}'`"
855 test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; } 860 test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; }
856 ;; 861 ;;
857 mips64:Linux:*:*) 862 mips64:Linux:*:*)
@@ -870,7 +875,7 @@ EOF
870 #endif 875 #endif
871 #endif 876 #endif
872EOF 877EOF
873 eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep ^CPU=` 878 eval "`$CC_FOR_BUILD -E $dummy.c 2>/dev/null | sed -n '/^CPU/{s: ::g;p;}'`"
874 test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; } 879 test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; }
875 ;; 880 ;;
876 or32:Linux:*:*) 881 or32:Linux:*:*)
@@ -919,6 +924,9 @@ EOF
919 sparc:Linux:*:* | sparc64:Linux:*:*) 924 sparc:Linux:*:* | sparc64:Linux:*:*)
920 echo ${UNAME_MACHINE}-unknown-linux-gnu 925 echo ${UNAME_MACHINE}-unknown-linux-gnu
921 exit ;; 926 exit ;;
927 vax:Linux:*:*)
928 echo ${UNAME_MACHINE}-dec-linux-gnu
929 exit ;;
922 x86_64:Linux:*:*) 930 x86_64:Linux:*:*)
923 echo x86_64-unknown-linux-gnu 931 echo x86_64-unknown-linux-gnu
924 exit ;; 932 exit ;;
@@ -964,7 +972,7 @@ EOF
964 LIBC=gnulibc1 972 LIBC=gnulibc1
965 # endif 973 # endif
966 #else 974 #else
967 #ifdef __INTEL_COMPILER 975 #if defined(__INTEL_COMPILER) || defined(__PGI)
968 LIBC=gnu 976 LIBC=gnu
969 #else 977 #else
970 LIBC=gnuaout 978 LIBC=gnuaout
@@ -974,7 +982,7 @@ EOF
974 LIBC=dietlibc 982 LIBC=dietlibc
975 #endif 983 #endif
976EOF 984EOF
977 eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep ^LIBC=` 985 eval "`$CC_FOR_BUILD -E $dummy.c 2>/dev/null | sed -n '/^LIBC/{s: ::g;p;}'`"
978 test x"${LIBC}" != x && { 986 test x"${LIBC}" != x && {
979 echo "${UNAME_MACHINE}-pc-linux-${LIBC}" 987 echo "${UNAME_MACHINE}-pc-linux-${LIBC}"
980 exit 988 exit
@@ -1185,7 +1193,6 @@ EOF
1185 *:Darwin:*:*) 1193 *:Darwin:*:*)
1186 UNAME_PROCESSOR=`uname -p` || UNAME_PROCESSOR=unknown 1194 UNAME_PROCESSOR=`uname -p` || UNAME_PROCESSOR=unknown
1187 case $UNAME_PROCESSOR in 1195 case $UNAME_PROCESSOR in
1188 *86) UNAME_PROCESSOR=i686 ;;
1189 unknown) UNAME_PROCESSOR=powerpc ;; 1196 unknown) UNAME_PROCESSOR=powerpc ;;
1190 esac 1197 esac
1191 echo ${UNAME_PROCESSOR}-apple-darwin${UNAME_RELEASE} 1198 echo ${UNAME_PROCESSOR}-apple-darwin${UNAME_RELEASE}
@@ -1264,6 +1271,9 @@ EOF
1264 i*86:skyos:*:*) 1271 i*86:skyos:*:*)
1265 echo ${UNAME_MACHINE}-pc-skyos`echo ${UNAME_RELEASE}` | sed -e 's/ .*$//' 1272 echo ${UNAME_MACHINE}-pc-skyos`echo ${UNAME_RELEASE}` | sed -e 's/ .*$//'
1266 exit ;; 1273 exit ;;
1274 i*86:rdos:*:*)
1275 echo ${UNAME_MACHINE}-pc-rdos
1276 exit ;;
1267esac 1277esac
1268 1278
1269#echo '(No uname command or uname output not recognized.)' 1>&2 1279#echo '(No uname command or uname output not recognized.)' 1>&2
diff --git a/config.sub b/config.sub
index 1c366dfde9a..8f7b7381c47 100755
--- a/config.sub
+++ b/config.sub
@@ -3,7 +3,7 @@
3# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 3# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
4# 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. 4# 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
5 5
6timestamp='2005-07-08' 6timestamp='2005-12-23'
7 7
8# This file is (in principle) common to ALL GNU software. 8# This file is (in principle) common to ALL GNU software.
9# The presence of a machine in this file suggests that SOME GNU software 9# The presence of a machine in this file suggests that SOME GNU software
@@ -119,8 +119,9 @@ esac
119# Here we must recognize all the valid KERNEL-OS combinations. 119# Here we must recognize all the valid KERNEL-OS combinations.
120maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'` 120maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'`
121case $maybe_os in 121case $maybe_os in
122 nto-qnx* | linux-gnu* | linux-dietlibc | linux-uclibc* | uclinux-uclibc* | uclinux-gnu* | \ 122 nto-qnx* | linux-gnu* | linux-dietlibc | linux-newlib* | linux-uclibc* | \
123 kfreebsd*-gnu* | knetbsd*-gnu* | netbsd*-gnu* | storm-chaos* | os2-emx* | rtmk-nova*) 123 uclinux-uclibc* | uclinux-gnu* | kfreebsd*-gnu* | knetbsd*-gnu* | netbsd*-gnu* | \
124 storm-chaos* | os2-emx* | rtmk-nova*)
124 os=-$maybe_os 125 os=-$maybe_os
125 basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'` 126 basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'`
126 ;; 127 ;;
@@ -171,6 +172,10 @@ case $os in
171 -hiux*) 172 -hiux*)
172 os=-hiuxwe2 173 os=-hiuxwe2
173 ;; 174 ;;
175 -sco6)
176 os=-sco5v6
177 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
178 ;;
174 -sco5) 179 -sco5)
175 os=-sco3.2v5 180 os=-sco3.2v5
176 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` 181 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
@@ -187,6 +192,10 @@ case $os in
187 # Don't forget version if it is 3.2v4 or newer. 192 # Don't forget version if it is 3.2v4 or newer.
188 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` 193 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
189 ;; 194 ;;
195 -sco5v6*)
196 # Don't forget version if it is 3.2v4 or newer.
197 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
198 ;;
190 -sco*) 199 -sco*)
191 os=-sco3.2v2 200 os=-sco3.2v2
192 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` 201 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
@@ -239,7 +248,7 @@ case $basic_machine in
239 | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \ 248 | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \
240 | i370 | i860 | i960 | ia64 \ 249 | i370 | i860 | i960 | ia64 \
241 | ip2k | iq2000 \ 250 | ip2k | iq2000 \
242 | m32r | m32rle | m68000 | m68k | m88k | maxq | mcore \ 251 | m32r | m32rle | m68000 | m68k | m88k | maxq | mb | microblaze | mcore \
243 | mips | mipsbe | mipseb | mipsel | mipsle \ 252 | mips | mipsbe | mipseb | mipsel | mipsle \
244 | mips16 \ 253 | mips16 \
245 | mips64 | mips64el \ 254 | mips64 | mips64el \
@@ -257,7 +266,7 @@ case $basic_machine in
257 | mipsisa64sr71k | mipsisa64sr71kel \ 266 | mipsisa64sr71k | mipsisa64sr71kel \
258 | mipstx39 | mipstx39el \ 267 | mipstx39 | mipstx39el \
259 | mn10200 | mn10300 \ 268 | mn10200 | mn10300 \
260 | ms1 \ 269 | mt \
261 | msp430 \ 270 | msp430 \
262 | ns16k | ns32k \ 271 | ns16k | ns32k \
263 | or32 \ 272 | or32 \
@@ -286,6 +295,9 @@ case $basic_machine in
286 ;; 295 ;;
287 m88110 | m680[12346]0 | m683?2 | m68360 | m5200 | v70 | w65 | z8k) 296 m88110 | m680[12346]0 | m683?2 | m68360 | m5200 | v70 | w65 | z8k)
288 ;; 297 ;;
298 ms1)
299 basic_machine=mt-unknown
300 ;;
289 301
290 # We use `pc' rather than `unknown' 302 # We use `pc' rather than `unknown'
291 # because (1) that's what they normally are, and 303 # because (1) that's what they normally are, and
@@ -336,7 +348,7 @@ case $basic_machine in
336 | mipsisa64sr71k-* | mipsisa64sr71kel-* \ 348 | mipsisa64sr71k-* | mipsisa64sr71kel-* \
337 | mipstx39-* | mipstx39el-* \ 349 | mipstx39-* | mipstx39el-* \
338 | mmix-* \ 350 | mmix-* \
339 | ms1-* \ 351 | mt-* \
340 | msp430-* \ 352 | msp430-* \
341 | none-* | np1-* | ns16k-* | ns32k-* \ 353 | none-* | np1-* | ns16k-* | ns32k-* \
342 | orion-* \ 354 | orion-* \
@@ -696,6 +708,9 @@ case $basic_machine in
696 basic_machine=i386-pc 708 basic_machine=i386-pc
697 os=-msdos 709 os=-msdos
698 ;; 710 ;;
711 ms1-*)
712 basic_machine=`echo $basic_machine | sed -e 's/ms1-/mt-/'`
713 ;;
699 mvs) 714 mvs)
700 basic_machine=i370-ibm 715 basic_machine=i370-ibm
701 os=-mvs 716 os=-mvs
@@ -803,6 +818,12 @@ case $basic_machine in
803 pc532 | pc532-*) 818 pc532 | pc532-*)
804 basic_machine=ns32k-pc532 819 basic_machine=ns32k-pc532
805 ;; 820 ;;
821 pc98)
822 basic_machine=i386-pc
823 ;;
824 pc98-*)
825 basic_machine=i386-`echo $basic_machine | sed 's/^[^-]*-//'`
826 ;;
806 pentium | p5 | k5 | k6 | nexgen | viac3) 827 pentium | p5 | k5 | k6 | nexgen | viac3)
807 basic_machine=i586-pc 828 basic_machine=i586-pc
808 ;; 829 ;;
@@ -859,6 +880,10 @@ case $basic_machine in
859 basic_machine=i586-unknown 880 basic_machine=i586-unknown
860 os=-pw32 881 os=-pw32
861 ;; 882 ;;
883 rdos)
884 basic_machine=i386-pc
885 os=-rdos
886 ;;
862 rom68k) 887 rom68k)
863 basic_machine=m68k-rom68k 888 basic_machine=m68k-rom68k
864 os=-coff 889 os=-coff
@@ -1181,14 +1206,15 @@ case $os in
1181 | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \ 1206 | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \
1182 | -chorusos* | -chorusrdb* \ 1207 | -chorusos* | -chorusrdb* \
1183 | -cygwin* | -pe* | -psos* | -moss* | -proelf* | -rtems* \ 1208 | -cygwin* | -pe* | -psos* | -moss* | -proelf* | -rtems* \
1184 | -mingw32* | -linux-gnu* | -linux-uclibc* | -uxpv* | -beos* | -mpeix* | -udk* \ 1209 | -mingw32* | -linux-gnu* | -linux-newlib* | -linux-uclibc* \
1210 | -uxpv* | -beos* | -mpeix* | -udk* \
1185 | -interix* | -uwin* | -mks* | -rhapsody* | -darwin* | -opened* \ 1211 | -interix* | -uwin* | -mks* | -rhapsody* | -darwin* | -opened* \
1186 | -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* \ 1212 | -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* \
1187 | -storm-chaos* | -tops10* | -tenex* | -tops20* | -its* \ 1213 | -storm-chaos* | -tops10* | -tenex* | -tops20* | -its* \
1188 | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \ 1214 | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \
1189 | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \ 1215 | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \
1190 | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \ 1216 | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \
1191 | -skyos* | -haiku*) 1217 | -skyos* | -haiku* | -rdos*)
1192 # Remember, each alternative MUST END IN *, to match a version number. 1218 # Remember, each alternative MUST END IN *, to match a version number.
1193 ;; 1219 ;;
1194 -qnx*) 1220 -qnx*)