Changeset 2362
- Timestamp:
- Sep 2, 2016, 11:21:28 AM (4 years ago)
- Location:
- lightdm-gtk-greeter/trunk/fuentes
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
lightdm-gtk-greeter/trunk/fuentes/config.guess
r2361 r2362 1 1 #! /bin/sh 2 2 # Attempt to guess a canonical system name. 3 # Copyright 1992-201 5Free Software Foundation, Inc.4 5 timestamp='201 5-08-20'3 # Copyright 1992-2014 Free Software Foundation, Inc. 4 5 timestamp='2014-03-23' 6 6 7 7 # This file is free software; you can redistribute it and/or modify it … … 25 25 # of the GNU General Public License, version 3 ("GPLv3"). 26 26 # 27 # Originally written by Per Bothner ; maintained since 2000 by Ben Elliston.27 # Originally written by Per Bothner. 28 28 # 29 29 # You can get the latest version of this script from: 30 30 # http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD 31 31 # 32 # Please send patches to <config-patches@gnu.org>.32 # Please send patches with a ChangeLog entry to config-patches@gnu.org. 33 33 34 34 … … 51 51 52 52 Originally written by Per Bothner. 53 Copyright 1992-201 5Free Software Foundation, Inc.53 Copyright 1992-2014 Free Software Foundation, Inc. 54 54 55 55 This is free software; see the source for copying conditions. There is NO … … 169 169 # portion of the name. We always set it to "unknown". 170 170 sysctl="sysctl -n hw.machine_arch" 171 UNAME_MACHINE_ARCH=`(uname -p 2>/dev/null || \ 172 /sbin/$sysctl 2>/dev/null || \ 173 /usr/sbin/$sysctl 2>/dev/null || \ 174 echo unknown)` 171 UNAME_MACHINE_ARCH=`(/sbin/$sysctl 2>/dev/null || \ 172 /usr/sbin/$sysctl 2>/dev/null || echo unknown)` 175 173 case "${UNAME_MACHINE_ARCH}" in 176 174 armeb) machine=armeb-unknown ;; … … 179 177 sh3eb) machine=sh-unknown ;; 180 178 sh5el) machine=sh5le-unknown ;; 181 earmv*)182 arch=`echo ${UNAME_MACHINE_ARCH} | sed -e 's,^e\(armv[0-9]\).*$,\1,'`183 endian=`echo ${UNAME_MACHINE_ARCH} | sed -ne 's,^.*\(eb\)$,\1,p'`184 machine=${arch}${endian}-unknown185 ;;186 179 *) machine=${UNAME_MACHINE_ARCH}-unknown ;; 187 180 esac … … 189 182 # to ELF recently, or will in the future. 190 183 case "${UNAME_MACHINE_ARCH}" in 191 arm*| earm*|i386|m68k|ns32k|sh3*|sparc|vax)184 arm*|i386|m68k|ns32k|sh3*|sparc|vax) 192 185 eval $set_cc_for_build 193 186 if echo __ELF__ | $CC_FOR_BUILD -E - 2>/dev/null \ … … 205 198 ;; 206 199 esac 207 # Determine ABI tags.208 case "${UNAME_MACHINE_ARCH}" in209 earm*)210 expr='s/^earmv[0-9]/-eabi/;s/eb$//'211 abi=`echo ${UNAME_MACHINE_ARCH} | sed -e "$expr"`212 ;;213 esac214 200 # The OS release 215 201 # Debian GNU/NetBSD machines have a different userland, and … … 222 208 ;; 223 209 *) 224 release=`echo ${UNAME_RELEASE} | sed -e 's/[-_].*//' | cut -d. -f1,2`210 release=`echo ${UNAME_RELEASE}|sed -e 's/[-_].*/\./'` 225 211 ;; 226 212 esac … … 228 214 # contains redundant information, the shorter form: 229 215 # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM is used. 230 echo "${machine}-${os}${release} ${abi}"216 echo "${machine}-${os}${release}" 231 217 exit ;; 232 218 *:Bitrig:*:*) … … 249 235 *:MirBSD:*:*) 250 236 echo ${UNAME_MACHINE}-unknown-mirbsd${UNAME_RELEASE} 251 exit ;;252 *:Sortix:*:*)253 echo ${UNAME_MACHINE}-unknown-sortix254 237 exit ;; 255 238 alpha:OSF1:*:*) … … 597 580 IBM_ARCH=powerpc 598 581 fi 599 if [ -x /usr/bin/lslpp ] ; then 600 IBM_REV=`/usr/bin/lslpp -Lqc bos.rte.libc | 601 awk -F: '{ print $3 }' | sed s/[0-9]*$/0/` 582 if [ -x /usr/bin/oslevel ] ; then 583 IBM_REV=`/usr/bin/oslevel` 602 584 else 603 585 IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE} … … 951 933 echo ${UNAME_MACHINE}-axis-linux-${LIBC} 952 934 exit ;; 953 e2k:Linux:*:*)954 echo ${UNAME_MACHINE}-unknown-linux-${LIBC}955 exit ;;956 935 frv:Linux:*:*) 957 936 echo ${UNAME_MACHINE}-unknown-linux-${LIBC} … … 1042 1021 exit ;; 1043 1022 x86_64:Linux:*:*) 1044 echo ${UNAME_MACHINE}- pc-linux-${LIBC}1023 echo ${UNAME_MACHINE}-unknown-linux-${LIBC} 1045 1024 exit ;; 1046 1025 xtensa*:Linux:*:*) -
lightdm-gtk-greeter/trunk/fuentes/config.sub
r2361 r2362 1 1 #! /bin/sh 2 2 # Configuration validation subroutine script. 3 # Copyright 1992-201 5Free Software Foundation, Inc.4 5 timestamp='201 5-08-20'3 # Copyright 1992-2014 Free Software Foundation, Inc. 4 5 timestamp='2014-09-11' 6 6 7 7 # This file is free software; you can redistribute it and/or modify it … … 26 26 27 27 28 # Please send patches to <config-patches@gnu.org>.28 # Please send patches with a ChangeLog entry to config-patches@gnu.org. 29 29 # 30 30 # Configuration subroutine to validate and canonicalize a configuration type. … … 69 69 GNU config.sub ($timestamp) 70 70 71 Copyright 1992-201 5Free Software Foundation, Inc.71 Copyright 1992-2014 Free Software Foundation, Inc. 72 72 73 73 This is free software; see the source for copying conditions. There is NO … … 118 118 nto-qnx* | linux-gnu* | linux-android* | linux-dietlibc | linux-newlib* | \ 119 119 linux-musl* | linux-uclibc* | uclinux-uclibc* | uclinux-gnu* | kfreebsd*-gnu* | \ 120 knetbsd*-gnu* | netbsd*-gnu* | netbsd*-eabi* |\120 knetbsd*-gnu* | netbsd*-gnu* | \ 121 121 kopensolaris*-gnu* | \ 122 122 storm-chaos* | os2-emx* | rtmk-nova*) … … 256 256 | arm | arm[bl]e | arme[lb] | armv[2-8] | armv[3-8][lb] | armv7[arm] \ 257 257 | avr | avr32 \ 258 | ba \259 258 | be32 | be64 \ 260 259 | bfin \ 261 260 | c4x | c8051 | clipper \ 262 261 | d10v | d30v | dlx | dsp16xx \ 263 | e 2k | epiphany \264 | fido | fr30 | frv | ft32\262 | epiphany \ 263 | fido | fr30 | frv \ 265 264 | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \ 266 265 | hexagon \ … … 307 306 | rl78 | rx \ 308 307 | score \ 309 | sh | sh[1234] | sh[24]a | sh[24]aeb | sh[23]e | sh[ 234]eb | sheb | shbe | shle | sh[1234]le | sh3ele \308 | sh | sh[1234] | sh[24]a | sh[24]aeb | sh[23]e | sh[34]eb | sheb | shbe | shle | sh[1234]le | sh3ele \ 310 309 | sh64 | sh64le \ 311 310 | sparc | sparc64 | sparc64b | sparc64v | sparc86x | sparclet | sparclite \ … … 315 314 | ubicom32 \ 316 315 | v850 | v850e | v850e1 | v850e2 | v850es | v850e2v3 \ 317 | visium \318 316 | we32k \ 319 317 | x86 | xc16x | xstormy16 | xtensa \ … … 329 327 c6x) 330 328 basic_machine=tic6x-unknown 331 ;;332 leon|leon[3-9])333 basic_machine=sparc-$basic_machine334 329 ;; 335 330 m6811 | m68hc11 | m6812 | m68hc12 | m68hcs12x | nvptx | picochip) … … 378 373 | arm-* | armbe-* | armle-* | armeb-* | armv*-* \ 379 374 | avr-* | avr32-* \ 380 | ba-* \381 375 | be32-* | be64-* \ 382 376 | bfin-* | bs2000-* \ … … 384 378 | c8051-* | clipper-* | craynv-* | cydra-* \ 385 379 | d10v-* | d30v-* | dlx-* \ 386 | e 2k-* | elxsi-* \380 | elxsi-* \ 387 381 | f30[01]-* | f700-* | fido-* | fr30-* | frv-* | fx80-* \ 388 382 | h8300-* | h8500-* \ … … 431 425 | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* \ 432 426 | pyramid-* \ 433 | riscv32-* | riscv64-* \434 427 | rl78-* | romp-* | rs6000-* | rx-* \ 435 428 | sh-* | sh[1234]-* | sh[24]a-* | sh[24]aeb-* | sh[23]e-* | sh[34]eb-* | sheb-* | shbe-* \ … … 437 430 | sparc-* | sparc64-* | sparc64b-* | sparc64v-* | sparc86x-* | sparclet-* \ 438 431 | sparclite-* \ 439 | sparcv8-* | sparcv9-* | sparcv9b-* | sparcv9v-* | sv1-* | sx *-* \432 | sparcv8-* | sparcv9-* | sparcv9b-* | sparcv9v-* | sv1-* | sx?-* \ 440 433 | tahoe-* \ 441 434 | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \ … … 445 438 | v850-* | v850e-* | v850e1-* | v850es-* | v850e2-* | v850e2v3-* \ 446 439 | vax-* \ 447 | visium-* \448 440 | we32k-* \ 449 441 | x86-* | x86_64-* | xc16x-* | xps100-* \ … … 521 513 basic_machine=i386-pc 522 514 os=-aros 523 ;;524 asmjs)525 basic_machine=asmjs-unknown526 515 ;; 527 516 aux) … … 785 774 basic_machine=m68k-isi 786 775 os=-sysv 787 ;;788 leon-*|leon[3-9]-*)789 basic_machine=sparc-`echo $basic_machine | sed 's/-.*//'`790 776 ;; 791 777 m68knommu) … … 1380 1366 | -sym* | -kopensolaris* | -plan9* \ 1381 1367 | -amigaos* | -amigados* | -msdos* | -newsos* | -unicos* | -aof* \ 1382 | -aos* | -aros* | -cloudabi* | -sortix*\1368 | -aos* | -aros* \ 1383 1369 | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \ 1384 1370 | -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \
Note: See TracChangeset
for help on using the changeset viewer.