aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Nicolaescu2008-12-09 00:58:34 +0000
committerDan Nicolaescu2008-12-09 00:58:34 +0000
commit149b51bc88ee5e6d9e661d136ee3fec6c7f1ee39 (patch)
tree0aeba50fcc2e3e8587da80bf2ebbbf1348d1bd4f
parent961de2e730c33c6972d7fbf7744aed3bc244fc3e (diff)
downloademacs-149b51bc88ee5e6d9e661d136ee3fec6c7f1ee39.tar.gz
emacs-149b51bc88ee5e6d9e661d136ee3fec6c7f1ee39.zip
Updated from master source.
-rw-r--r--ChangeLog4
-rwxr-xr-xconfig.guess32
-rwxr-xr-xconfig.sub37
3 files changed, 56 insertions, 17 deletions
diff --git a/ChangeLog b/ChangeLog
index 1cc73b00172..da495d9a9b3 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
12008-12-09 Dan Nicolaescu <dann@ics.uci.edu>
2
3 * config.guess, config.sub: Updated from master source.
4
12008-12-08 Eli Zaretskii <eliz@gnu.org> 52008-12-08 Eli Zaretskii <eliz@gnu.org>
2 6
3 * info/dir: Fix last change. 7 * info/dir: Fix last change.
diff --git a/config.guess b/config.guess
index ca2a03ca4f1..7b24a8728ca 100755
--- a/config.guess
+++ b/config.guess
@@ -4,7 +4,7 @@
4# 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 4# 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
5# Free Software Foundation, Inc. 5# Free Software Foundation, Inc.
6 6
7timestamp='2008-01-08' 7timestamp='2008-11-15'
8 8
9# This file is free software; you can redistribute it and/or modify it 9# This file is free software; you can redistribute it and/or modify it
10# under the terms of the GNU General Public License as published by 10# under the terms of the GNU General Public License as published by
@@ -331,7 +331,20 @@ case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in
331 echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` 331 echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
332 exit ;; 332 exit ;;
333 i86pc:SunOS:5.*:* | i86xen:SunOS:5.*:*) 333 i86pc:SunOS:5.*:* | i86xen:SunOS:5.*:*)
334 echo i386-pc-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` 334 eval $set_cc_for_build
335 SUN_ARCH="i386"
336 # If there is a compiler, see if it is configured for 64-bit objects.
337 # Note that the Sun cc does not turn __LP64__ into 1 like gcc does.
338 # This test works for both compilers.
339 if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then
340 if echo '\n#ifdef __amd64\nIS_64BIT_ARCH\n#endif' | \
341 (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \
342 grep IS_64BIT_ARCH >/dev/null
343 then
344 SUN_ARCH="x86_64"
345 fi
346 fi
347 echo ${SUN_ARCH}-pc-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
335 exit ;; 348 exit ;;
336 sun4*:SunOS:6*:*) 349 sun4*:SunOS:6*:*)
337 # According to config.sub, this is the proper way to canonicalize 350 # According to config.sub, this is the proper way to canonicalize
@@ -796,7 +809,7 @@ EOF
796 x86) 809 x86)
797 echo i586-pc-interix${UNAME_RELEASE} 810 echo i586-pc-interix${UNAME_RELEASE}
798 exit ;; 811 exit ;;
799 EM64T | authenticamd) 812 EM64T | authenticamd | genuineintel)
800 echo x86_64-unknown-interix${UNAME_RELEASE} 813 echo x86_64-unknown-interix${UNAME_RELEASE}
801 exit ;; 814 exit ;;
802 IA64) 815 IA64)
@@ -935,6 +948,9 @@ EOF
935 if test "$?" = 0 ; then LIBC="libc1" ; else LIBC="" ; fi 948 if test "$?" = 0 ; then LIBC="libc1" ; else LIBC="" ; fi
936 echo ${UNAME_MACHINE}-unknown-linux-gnu${LIBC} 949 echo ${UNAME_MACHINE}-unknown-linux-gnu${LIBC}
937 exit ;; 950 exit ;;
951 padre:Linux:*:*)
952 echo sparc-unknown-linux-gnu
953 exit ;;
938 parisc:Linux:*:* | hppa:Linux:*:*) 954 parisc:Linux:*:* | hppa:Linux:*:*)
939 # Look for CPU level 955 # Look for CPU level
940 case `grep '^cpu[^a-z]*:' /proc/cpuinfo 2>/dev/null | cut -d' ' -f2` in 956 case `grep '^cpu[^a-z]*:' /proc/cpuinfo 2>/dev/null | cut -d' ' -f2` in
@@ -985,9 +1001,6 @@ EOF
985 a.out-i386-linux) 1001 a.out-i386-linux)
986 echo "${UNAME_MACHINE}-pc-linux-gnuaout" 1002 echo "${UNAME_MACHINE}-pc-linux-gnuaout"
987 exit ;; 1003 exit ;;
988 coff-i386)
989 echo "${UNAME_MACHINE}-pc-linux-gnucoff"
990 exit ;;
991 "") 1004 "")
992 # Either a pre-BFD a.out linker (linux-gnuoldld) or 1005 # Either a pre-BFD a.out linker (linux-gnuoldld) or
993 # one that does not give us useful --help. 1006 # one that does not give us useful --help.
@@ -1216,6 +1229,9 @@ EOF
1216 BePC:BeOS:*:*) # BeOS running on Intel PC compatible. 1229 BePC:BeOS:*:*) # BeOS running on Intel PC compatible.
1217 echo i586-pc-beos 1230 echo i586-pc-beos
1218 exit ;; 1231 exit ;;
1232 BePC:Haiku:*:*) # Haiku running on Intel PC compatible.
1233 echo i586-pc-haiku
1234 exit ;;
1219 SX-4:SUPER-UX:*:*) 1235 SX-4:SUPER-UX:*:*)
1220 echo sx4-nec-superux${UNAME_RELEASE} 1236 echo sx4-nec-superux${UNAME_RELEASE}
1221 exit ;; 1237 exit ;;
@@ -1484,9 +1500,9 @@ This script, last modified $timestamp, has failed to recognize
1484the operating system you are using. It is advised that you 1500the operating system you are using. It is advised that you
1485download the most up to date version of the config scripts from 1501download the most up to date version of the config scripts from
1486 1502
1487 http://savannah.gnu.org/cgi-bin/viewcvs/*checkout*/config/config/config.guess 1503 http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD
1488and 1504and
1489 http://savannah.gnu.org/cgi-bin/viewcvs/*checkout*/config/config/config.sub 1505 http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub;hb=HEAD
1490 1506
1491If the version you run ($0) is already up to date, please 1507If the version you run ($0) is already up to date, please
1492send the following data and any information you think might be 1508send the following data and any information you think might be
diff --git a/config.sub b/config.sub
index 6759825a5b7..053e7381fa0 100755
--- a/config.sub
+++ b/config.sub
@@ -4,7 +4,7 @@
4# 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 4# 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
5# Free Software Foundation, Inc. 5# Free Software Foundation, Inc.
6 6
7timestamp='2008-01-16' 7timestamp='2008-09-08'
8 8
9# This file is (in principle) common to ALL GNU software. 9# This file is (in principle) common to ALL GNU software.
10# The presence of a machine in this file suggests that SOME GNU software 10# The presence of a machine in this file suggests that SOME GNU software
@@ -250,12 +250,14 @@ case $basic_machine in
250 | i370 | i860 | i960 | ia64 \ 250 | i370 | i860 | i960 | ia64 \
251 | ip2k | iq2000 \ 251 | ip2k | iq2000 \
252 | m32c | m32r | m32rle | m68000 | m68k | m88k \ 252 | m32c | m32r | m32rle | m68000 | m68k | m88k \
253 | maxq | mb | microblaze | mcore | mep \ 253 | maxq | mb | microblaze | mcore | mep | metag \
254 | mips | mipsbe | mipseb | mipsel | mipsle \ 254 | mips | mipsbe | mipseb | mipsel | mipsle \
255 | mips16 \ 255 | mips16 \
256 | mips64 | mips64el \ 256 | mips64 | mips64el \
257 | mips64vr | mips64vrel \ 257 | mips64octeon | mips64octeonel \
258 | mips64orion | mips64orionel \ 258 | mips64orion | mips64orionel \
259 | mips64r5900 | mips64r5900el \
260 | mips64vr | mips64vrel \
259 | mips64vr4100 | mips64vr4100el \ 261 | mips64vr4100 | mips64vr4100el \
260 | mips64vr4300 | mips64vr4300el \ 262 | mips64vr4300 | mips64vr4300el \
261 | mips64vr5000 | mips64vr5000el \ 263 | mips64vr5000 | mips64vr5000el \
@@ -286,7 +288,7 @@ case $basic_machine in
286 | v850 | v850e \ 288 | v850 | v850e \
287 | we32k \ 289 | we32k \
288 | x86 | xc16x | xscale | xscalee[bl] | xstormy16 | xtensa \ 290 | x86 | xc16x | xscale | xscalee[bl] | xstormy16 | xtensa \
289 | z8k) 291 | z8k | z80)
290 basic_machine=$basic_machine-unknown 292 basic_machine=$basic_machine-unknown
291 ;; 293 ;;
292 m6811 | m68hc11 | m6812 | m68hc12) 294 m6811 | m68hc11 | m6812 | m68hc12)
@@ -331,12 +333,14 @@ case $basic_machine in
331 | ip2k-* | iq2000-* \ 333 | ip2k-* | iq2000-* \
332 | m32c-* | m32r-* | m32rle-* \ 334 | m32c-* | m32r-* | m32rle-* \
333 | m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \ 335 | m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \
334 | m88110-* | m88k-* | maxq-* | mcore-* \ 336 | m88110-* | m88k-* | maxq-* | mcore-* | metag-* \
335 | mips-* | mipsbe-* | mipseb-* | mipsel-* | mipsle-* \ 337 | mips-* | mipsbe-* | mipseb-* | mipsel-* | mipsle-* \
336 | mips16-* \ 338 | mips16-* \
337 | mips64-* | mips64el-* \ 339 | mips64-* | mips64el-* \
338 | mips64vr-* | mips64vrel-* \ 340 | mips64octeon-* | mips64octeonel-* \
339 | mips64orion-* | mips64orionel-* \ 341 | mips64orion-* | mips64orionel-* \
342 | mips64r5900-* | mips64r5900el-* \
343 | mips64vr-* | mips64vrel-* \
340 | mips64vr4100-* | mips64vr4100el-* \ 344 | mips64vr4100-* | mips64vr4100el-* \
341 | mips64vr4300-* | mips64vr4300el-* \ 345 | mips64vr4300-* | mips64vr4300el-* \
342 | mips64vr5000-* | mips64vr5000el-* \ 346 | mips64vr5000-* | mips64vr5000el-* \
@@ -364,14 +368,14 @@ case $basic_machine in
364 | sparclite-* \ 368 | sparclite-* \
365 | sparcv8-* | sparcv9-* | sparcv9b-* | sparcv9v-* | strongarm-* | sv1-* | sx?-* \ 369 | sparcv8-* | sparcv9-* | sparcv9b-* | sparcv9v-* | strongarm-* | sv1-* | sx?-* \
366 | tahoe-* | thumb-* \ 370 | tahoe-* | thumb-* \
367 | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \ 371 | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* | tile-* \
368 | tron-* \ 372 | tron-* \
369 | v850-* | v850e-* | vax-* \ 373 | v850-* | v850e-* | vax-* \
370 | we32k-* \ 374 | we32k-* \
371 | x86-* | x86_64-* | xc16x-* | xps100-* | xscale-* | xscalee[bl]-* \ 375 | x86-* | x86_64-* | xc16x-* | xps100-* | xscale-* | xscalee[bl]-* \
372 | xstormy16-* | xtensa*-* \ 376 | xstormy16-* | xtensa*-* \
373 | ymp-* \ 377 | ymp-* \
374 | z8k-*) 378 | z8k-* | z80-*)
375 ;; 379 ;;
376 # Recognize the basic CPU types without company name, with glob match. 380 # Recognize the basic CPU types without company name, with glob match.
377 xtensa*) 381 xtensa*)
@@ -459,6 +463,10 @@ case $basic_machine in
459 basic_machine=c90-cray 463 basic_machine=c90-cray
460 os=-unicos 464 os=-unicos
461 ;; 465 ;;
466 cegcc)
467 basic_machine=arm-unknown
468 os=-cegcc
469 ;;
462 convex-c1) 470 convex-c1)
463 basic_machine=c1-convex 471 basic_machine=c1-convex
464 os=-bsd 472 os=-bsd
@@ -526,6 +534,10 @@ case $basic_machine in
526 basic_machine=m88k-motorola 534 basic_machine=m88k-motorola
527 os=-sysv3 535 os=-sysv3
528 ;; 536 ;;
537 dicos)
538 basic_machine=i686-pc
539 os=-dicos
540 ;;
529 djgpp) 541 djgpp)
530 basic_machine=i586-pc 542 basic_machine=i586-pc
531 os=-msdosdjgpp 543 os=-msdosdjgpp
@@ -1128,6 +1140,10 @@ case $basic_machine in
1128 basic_machine=z8k-unknown 1140 basic_machine=z8k-unknown
1129 os=-sim 1141 os=-sim
1130 ;; 1142 ;;
1143 z80-*-coff)
1144 basic_machine=z80-unknown
1145 os=-sim
1146 ;;
1131 none) 1147 none)
1132 basic_machine=none-none 1148 basic_machine=none-none
1133 os=-none 1149 os=-none
@@ -1248,7 +1264,7 @@ case $os in
1248 | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \ 1264 | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \
1249 | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \ 1265 | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \
1250 | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \ 1266 | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \
1251 | -chorusos* | -chorusrdb* \ 1267 | -chorusos* | -chorusrdb* | -cegcc* \
1252 | -cygwin* | -pe* | -psos* | -moss* | -proelf* | -rtems* \ 1268 | -cygwin* | -pe* | -psos* | -moss* | -proelf* | -rtems* \
1253 | -mingw32* | -linux-gnu* | -linux-newlib* | -linux-uclibc* \ 1269 | -mingw32* | -linux-gnu* | -linux-newlib* | -linux-uclibc* \
1254 | -uxpv* | -beos* | -mpeix* | -udk* \ 1270 | -uxpv* | -beos* | -mpeix* | -udk* \
@@ -1388,6 +1404,9 @@ case $os in
1388 -zvmoe) 1404 -zvmoe)
1389 os=-zvmoe 1405 os=-zvmoe
1390 ;; 1406 ;;
1407 -dicos*)
1408 os=-dicos
1409 ;;
1391 -none) 1410 -none)
1392 ;; 1411 ;;
1393 *) 1412 *)