~ubuntu-branches/ubuntu/trusty/conntrack/trusty-proposed

« back to all changes in this revision

Viewing changes to config.guess

  • Committer: Bazaar Package Importer
  • Author(s): Alexander Wirt, Max Kellermann
  • Date: 2008-04-14 23:09:22 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20080414230922-9xoi1gl38tc8lyng
Tags: 1:0.9.6-4
[ Max Kellermann ]
fix compilation on SPARC (printf argument mismatch)

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 Free Software Foundation, Inc.
 
4
#   2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation,
 
5
#   Inc.
5
6
 
6
 
timestamp='2006-02-23'
 
7
timestamp='2007-07-22'
7
8
 
8
9
# This file is free software; you can redistribute it and/or modify it
9
10
# under the terms of the GNU General Public License as published by
160
161
            arm*) machine=arm-unknown ;;
161
162
            sh3el) machine=shl-unknown ;;
162
163
            sh3eb) machine=sh-unknown ;;
 
164
            sh5el) machine=sh5le-unknown ;;
163
165
            *) machine=${UNAME_MACHINE_ARCH}-unknown ;;
164
166
        esac
165
167
        # The Operating System including object format, if it has switched
210
212
        echo ${UNAME_MACHINE}-unknown-solidbsd${UNAME_RELEASE}
211
213
        exit ;;
212
214
    macppc:MirBSD:*:*)
213
 
        echo powerppc-unknown-mirbsd${UNAME_RELEASE}
 
215
        echo powerpc-unknown-mirbsd${UNAME_RELEASE}
214
216
        exit ;;
215
217
    *:MirBSD:*:*)
216
218
        echo ${UNAME_MACHINE}-unknown-mirbsd${UNAME_RELEASE}
328
330
    sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*)
329
331
        echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
330
332
        exit ;;
331
 
    i86pc:SunOS:5.*:*)
 
333
    i86pc:SunOS:5.*:* | i86xen:SunOS:5.*:*)
332
334
        echo i386-pc-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
333
335
        exit ;;
334
336
    sun4*:SunOS:6*:*)
770
772
        case ${UNAME_MACHINE} in
771
773
            pc98)
772
774
                echo i386-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;;
 
775
            amd64)
 
776
                echo x86_64-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;;
773
777
            *)
774
778
                echo ${UNAME_MACHINE}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;;
775
779
        esac
777
781
    i*:CYGWIN*:*)
778
782
        echo ${UNAME_MACHINE}-pc-cygwin
779
783
        exit ;;
780
 
    i*:MINGW*:*)
781
 
        echo ${UNAME_MACHINE}-pc-mingw32
782
 
        exit ;;
783
 
    i*:MSYS_NT-*:*:*)
 
784
    *:MINGW*:*)
784
785
        echo ${UNAME_MACHINE}-pc-mingw32
785
786
        exit ;;
786
787
    i*:windows32*:*)
790
791
    i*:PW*:*)
791
792
        echo ${UNAME_MACHINE}-pc-pw32
792
793
        exit ;;
793
 
    x86:Interix*:[345]*)
794
 
        echo i586-pc-interix${UNAME_RELEASE}
795
 
        exit ;;
796
 
    EM64T:Interix*:[345]*)
797
 
        echo x86_64-unknown-interix${UNAME_RELEASE}
798
 
        exit ;;
 
794
    *:Interix*:[3456]*)
 
795
        case ${UNAME_MACHINE} in
 
796
            x86)
 
797
                echo i586-pc-interix${UNAME_RELEASE}
 
798
                exit ;;
 
799
            EM64T | authenticamd)
 
800
                echo x86_64-unknown-interix${UNAME_RELEASE}
 
801
                exit ;;
 
802
        esac ;;
799
803
    [345]86:Windows_95:* | [345]86:Windows_98:* | [345]86:Windows_NT:*)
800
804
        echo i${UNAME_MACHINE}-pc-mks
801
805
        exit ;;
831
835
    arm*:Linux:*:*)
832
836
        echo ${UNAME_MACHINE}-unknown-linux-gnu
833
837
        exit ;;
 
838
    avr32*:Linux:*:*)
 
839
        echo ${UNAME_MACHINE}-unknown-linux-gnu
 
840
        exit ;;
834
841
    cris:Linux:*:*)
835
842
        echo cris-axis-linux-gnu
836
843
        exit ;;
947
954
    x86_64:Linux:*:*)
948
955
        echo x86_64-unknown-linux-gnu
949
956
        exit ;;
 
957
    xtensa:Linux:*:*)
 
958
        echo xtensa-unknown-linux-gnu
 
959
        exit ;;
950
960
    i*86:Linux:*:*)
951
961
        # The BFD linker knows what the default object file format is, so
952
962
        # first see if it will tell us. cd to the root directory to prevent
989
999
        LIBC=gnulibc1
990
1000
        # endif
991
1001
        #else
992
 
        #if defined(__INTEL_COMPILER) || defined(__PGI) || defined(__sun)
 
1002
        #if defined(__INTEL_COMPILER) || defined(__PGI) || defined(__SUNPRO_C) || defined(__SUNPRO_CC)
993
1003
        LIBC=gnu
994
1004
        #else
995
1005
        LIBC=gnuaout
1205
1215
    SX-6:SUPER-UX:*:*)
1206
1216
        echo sx6-nec-superux${UNAME_RELEASE}
1207
1217
        exit ;;
 
1218
    SX-7:SUPER-UX:*:*)
 
1219
        echo sx7-nec-superux${UNAME_RELEASE}
 
1220
        exit ;;
 
1221
    SX-8:SUPER-UX:*:*)
 
1222
        echo sx8-nec-superux${UNAME_RELEASE}
 
1223
        exit ;;
 
1224
    SX-8R:SUPER-UX:*:*)
 
1225
        echo sx8r-nec-superux${UNAME_RELEASE}
 
1226
        exit ;;
1208
1227
    Power*:Rhapsody:*:*)
1209
1228
        echo powerpc-apple-rhapsody${UNAME_RELEASE}
1210
1229
        exit ;;