~ubuntu-branches/ubuntu/natty/gnome-keyring/natty

« back to all changes in this revision

Viewing changes to config.guess

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2010-03-10 21:37:48 UTC
  • mfrom: (1.1.59 upstream)
  • Revision ID: james.westby@ubuntu.com-20100310213748-imimrnfxu32ih4t3
Tags: 2.29.92-0ubuntu1
* New upstream version:
  - Fix various problems with not storing secret value properly.
  - Return no results when a search includes a bad collection identifier.
  - Don't raise error if ssh client disconnects early.
  - Allow running in a test environment.
  - Fix error when setting default keyring to NULL.
  - Autostart gnome-keyring-daemon in LXDE as well.
  - Rework the startup again, to use a singleton crontrolled via dbus, to help
    when no process was started by pam.
  - Display password and confirm prompts when creating keyring.
  - Allow specifying CKA_ID when creating collection.
  - Give translatable label to created login keyring.
  - When no default keyring set, use login keyring.
  - Fix problem initializing socket path in rpc module.
  - Fix endless loop in reading data.
  - Potential fix or sporadic crash.
  - Solaris build fixes.
  - Updated translations.
* debian/patches/05_git_no_read_looping.patch:
  - the change is in the new version

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#! /bin/sh
2
2
# Attempt to guess a canonical system name.
3
3
#   Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
4
 
#   2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
 
4
#   2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
5
5
#   Free Software Foundation, Inc.
6
6
 
7
 
timestamp='2009-06-10'
 
7
timestamp='2009-04-27'
8
8
 
9
9
# This file is free software; you can redistribute it and/or modify it
10
10
# under the terms of the GNU General Public License as published by
170
170
            arm*|i386|m68k|ns32k|sh3*|sparc|vax)
171
171
                eval $set_cc_for_build
172
172
                if echo __ELF__ | $CC_FOR_BUILD -E - 2>/dev/null \
173
 
                        | grep -q __ELF__
 
173
                        | grep __ELF__ >/dev/null
174
174
                then
175
175
                    # Once all utilities can be ECOFF (netbsdecoff) or a.out (netbsdaout).
176
176
                    # Return netbsd for either.  FIX?
656
656
            # => hppa64-hp-hpux11.23
657
657
 
658
658
            if echo __LP64__ | (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) |
659
 
                grep -q __LP64__
 
659
                grep __LP64__ >/dev/null
660
660
            then
661
661
                HP_ARCH="hppa2.0w"
662
662
            else
822
822
    [345]86:Windows_95:* | [345]86:Windows_98:* | [345]86:Windows_NT:*)
823
823
        echo i${UNAME_MACHINE}-pc-mks
824
824
        exit ;;
825
 
    8664:Windows_NT:*)
826
 
        echo x86_64-pc-mks
827
 
        exit ;;
828
825
    i*:Windows_NT*:* | Pentium*:Windows_NT*:*)
829
826
        # How do we know it's Interix rather than the generic POSIX subsystem?
830
827
        # It also conflicts with pre-2.0 versions of AT&T UWIN. Should we
885
882
    m68*:Linux:*:*)
886
883
        echo ${UNAME_MACHINE}-unknown-linux-gnu
887
884
        exit ;;
888
 
    mips:Linux:*:* | mips64:Linux:*:*)
889
 
        eval $set_cc_for_build
890
 
        sed 's/^        //' << EOF >$dummy.c
891
 
        #undef CPU
892
 
        #undef ${UNAME_MACHINE}
893
 
        #undef ${UNAME_MACHINE}el
894
 
        #if defined(__MIPSEL__) || defined(__MIPSEL) || defined(_MIPSEL) || defined(MIPSEL)
895
 
        CPU=${UNAME_MACHINE}el
896
 
        #else
897
 
        #if defined(__MIPSEB__) || defined(__MIPSEB) || defined(_MIPSEB) || defined(MIPSEB)
898
 
        CPU=${UNAME_MACHINE}
 
885
    mips:Linux:*:*)
 
886
        eval $set_cc_for_build
 
887
        sed 's/^        //' << EOF >$dummy.c
 
888
        #undef CPU
 
889
        #undef mips
 
890
        #undef mipsel
 
891
        #if defined(__MIPSEL__) || defined(__MIPSEL) || defined(_MIPSEL) || defined(MIPSEL)
 
892
        CPU=mipsel
 
893
        #else
 
894
        #if defined(__MIPSEB__) || defined(__MIPSEB) || defined(_MIPSEB) || defined(MIPSEB)
 
895
        CPU=mips
 
896
        #else
 
897
        CPU=
 
898
        #endif
 
899
        #endif
 
900
EOF
 
901
        eval "`$CC_FOR_BUILD -E $dummy.c 2>/dev/null | sed -n '
 
902
            /^CPU/{
 
903
                s: ::g
 
904
                p
 
905
            }'`"
 
906
        test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; }
 
907
        ;;
 
908
    mips64:Linux:*:*)
 
909
        eval $set_cc_for_build
 
910
        sed 's/^        //' << EOF >$dummy.c
 
911
        #undef CPU
 
912
        #undef mips64
 
913
        #undef mips64el
 
914
        #if defined(__MIPSEL__) || defined(__MIPSEL) || defined(_MIPSEL) || defined(MIPSEL)
 
915
        CPU=mips64el
 
916
        #else
 
917
        #if defined(__MIPSEB__) || defined(__MIPSEB) || defined(_MIPSEB) || defined(MIPSEB)
 
918
        CPU=mips64
899
919
        #else
900
920
        CPU=
901
921
        #endif
927
947
          EV67)  UNAME_MACHINE=alphaev67 ;;
928
948
          EV68*) UNAME_MACHINE=alphaev68 ;;
929
949
        esac
930
 
        objdump --private-headers /bin/sh | grep -q ld.so.1
 
950
        objdump --private-headers /bin/sh | grep ld.so.1 >/dev/null
931
951
        if test "$?" = 0 ; then LIBC="libc1" ; else LIBC="" ; fi
932
952
        echo ${UNAME_MACHINE}-unknown-linux-gnu${LIBC}
933
953
        exit ;;
981
1001
          elf32-i386)
982
1002
                TENTATIVE="${UNAME_MACHINE}-pc-linux-gnu"
983
1003
                ;;
 
1004
          a.out-i386-linux)
 
1005
                echo "${UNAME_MACHINE}-pc-linux-gnuaout"
 
1006
                exit ;;
 
1007
          "")
 
1008
                # Either a pre-BFD a.out linker (linux-gnuoldld) or
 
1009
                # one that does not give us useful --help.
 
1010
                echo "${UNAME_MACHINE}-pc-linux-gnuoldld"
 
1011
                exit ;;
984
1012
        esac
985
1013
        # Determine whether the default compiler is a.out or elf
986
1014
        eval $set_cc_for_build
1046
1074
    i*86:syllable:*:*)
1047
1075
        echo ${UNAME_MACHINE}-pc-syllable
1048
1076
        exit ;;
1049
 
    i*86:LynxOS:2.*:* | i*86:LynxOS:3.[01]*:* | i*86:LynxOS:4.[02]*:*)
 
1077
    i*86:LynxOS:2.*:* | i*86:LynxOS:3.[01]*:* | i*86:LynxOS:4.0*:*)
1050
1078
        echo i386-unknown-lynxos${UNAME_RELEASE}
1051
1079
        exit ;;
1052
1080
    i*86:*DOS:*:*)
1154
1182
    rs6000:LynxOS:2.*:*)
1155
1183
        echo rs6000-unknown-lynxos${UNAME_RELEASE}
1156
1184
        exit ;;
1157
 
    PowerPC:LynxOS:2.*:* | PowerPC:LynxOS:3.[01]*:* | PowerPC:LynxOS:4.[02]*:*)
 
1185
    PowerPC:LynxOS:2.*:* | PowerPC:LynxOS:3.[01]*:* | PowerPC:LynxOS:4.0*:*)
1158
1186
        echo powerpc-unknown-lynxos${UNAME_RELEASE}
1159
1187
        exit ;;
1160
1188
    SM[BE]S:UNIX_SV:*:*)