~ubuntu-branches/debian/sid/brasero/sid

« back to all changes in this revision

Viewing changes to config.guess

  • Committer: Package Import Robot
  • Author(s): Michael Biebl
  • Date: 2011-11-19 14:00:13 UTC
  • mfrom: (5.1.6 experimental)
  • Revision ID: package-import@ubuntu.com-20111119140013-9dnkj4de9z9lzceo
Tags: 3.2.0-2
* Upload to unstable.
* debian/control.in:
  - Make libbrasero-media3-dev depend on gir1.2-brasero-3.0.

Show diffs side-by-side

added added

removed removed

Lines of Context:
139
139
UNAME_SYSTEM=`(uname -s) 2>/dev/null`  || UNAME_SYSTEM=unknown
140
140
UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown
141
141
 
142
 
case "${UNAME_MACHINE}" in
143
 
    i?86)
144
 
        test -z "$VENDOR" && VENDOR=pc
145
 
        ;;
146
 
    *)
147
 
        test -z "$VENDOR" && VENDOR=unknown
148
 
        ;;
149
 
esac
150
 
test -f /etc/SuSE-release -o -f /.buildenv && VENDOR=suse
151
 
 
152
142
# Note: order is significant - the case branches are not exclusive.
153
143
 
154
144
case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in
213
203
        exit ;;
214
204
    *:OpenBSD:*:*)
215
205
        UNAME_MACHINE_ARCH=`arch | sed 's/OpenBSD.//'`
216
 
        echo ${UNAME_MACHINE_ARCH}-${VENDOR}-openbsd${UNAME_RELEASE}
 
206
        echo ${UNAME_MACHINE_ARCH}-unknown-openbsd${UNAME_RELEASE}
217
207
        exit ;;
218
208
    *:ekkoBSD:*:*)
219
 
        echo ${UNAME_MACHINE}-${VENDOR}-ekkobsd${UNAME_RELEASE}
 
209
        echo ${UNAME_MACHINE}-unknown-ekkobsd${UNAME_RELEASE}
220
210
        exit ;;
221
211
    *:SolidBSD:*:*)
222
 
        echo ${UNAME_MACHINE}-${VENDOR}-solidbsd${UNAME_RELEASE}
 
212
        echo ${UNAME_MACHINE}-unknown-solidbsd${UNAME_RELEASE}
223
213
        exit ;;
224
214
    macppc:MirBSD:*:*)
225
 
        echo powerpc-${VENDOR}-mirbsd${UNAME_RELEASE}
 
215
        echo powerpc-unknown-mirbsd${UNAME_RELEASE}
226
216
        exit ;;
227
217
    *:MirBSD:*:*)
228
 
        echo ${UNAME_MACHINE}-${VENDOR}-mirbsd${UNAME_RELEASE}
 
218
        echo ${UNAME_MACHINE}-unknown-mirbsd${UNAME_RELEASE}
229
219
        exit ;;
230
220
    alpha:OSF1:*:*)
231
221
        case $UNAME_RELEASE in
290
280
        echo alpha-dec-winnt3.5
291
281
        exit ;;
292
282
    Amiga*:UNIX_System_V:4.0:*)
293
 
        echo m68k-${VENDOR}-sysv4
 
283
        echo m68k-unknown-sysv4
294
284
        exit ;;
295
285
    *:[Aa]miga[Oo][Ss]:*:*)
296
 
        echo ${UNAME_MACHINE}-${VENDOR}-amigaos
 
286
        echo ${UNAME_MACHINE}-unknown-amigaos
297
287
        exit ;;
298
288
    *:[Mm]orph[Oo][Ss]:*:*)
299
 
        echo ${UNAME_MACHINE}-${VENDOR}-morphos
 
289
        echo ${UNAME_MACHINE}-unknown-morphos
300
290
        exit ;;
301
291
    *:OS/390:*:*)
302
292
        echo i370-ibm-openedition
311
301
        echo arm-acorn-riscix${UNAME_RELEASE}
312
302
        exit ;;
313
303
    arm:riscos:*:*|arm:RISCOS:*:*)
314
 
        echo arm-${VENDOR}-riscos
 
304
        echo arm-unknown-riscos
315
305
        exit ;;
316
306
    SR2?01:HI-UX/MPP:*:* | SR8000:HI-UX/MPP:*:*)
317
307
        echo hppa1.1-hitachi-hiuxmpp
419
409
        echo m68k-hades-mint${UNAME_RELEASE}
420
410
        exit ;;
421
411
    *:*MiNT:*:* | *:*mint:*:* | *:*TOS:*:*)
422
 
        echo m68k-${VENDOR}-mint${UNAME_RELEASE}
 
412
        echo m68k-unknown-mint${UNAME_RELEASE}
423
413
        exit ;;
424
414
    m68k:machten:*:*)
425
415
        echo m68k-apple-machten${UNAME_RELEASE}
730
720
        exit ;;
731
721
    i*86:OSF1:*:*)
732
722
        if [ -x /usr/sbin/sysversion ] ; then
733
 
            echo ${UNAME_MACHINE}-${VENDOR}-osf1mk
 
723
            echo ${UNAME_MACHINE}-unknown-osf1mk
734
724
        else
735
 
            echo ${UNAME_MACHINE}-${VENDOR}-osf1
 
725
            echo ${UNAME_MACHINE}-unknown-osf1
736
726
        fi
737
727
        exit ;;
738
728
    parisc*:Lites*:*:*)
792
782
        echo ${UNAME_MACHINE}-pc-bsdi${UNAME_RELEASE}
793
783
        exit ;;
794
784
    sparc*:BSD/OS:*:*)
795
 
        echo sparc-${VENDOR}-bsdi${UNAME_RELEASE}
 
785
        echo sparc-unknown-bsdi${UNAME_RELEASE}
796
786
        exit ;;
797
787
    *:BSD/OS:*:*)
798
 
        echo ${UNAME_MACHINE}-${VENDOR}-bsdi${UNAME_RELEASE}
 
788
        echo ${UNAME_MACHINE}-unknown-bsdi${UNAME_RELEASE}
799
789
        exit ;;
800
790
    *:FreeBSD:*:*)
801
791
        case ${UNAME_MACHINE} in
802
792
            pc98)
803
 
                echo i386-${VENDOR}-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;;
 
793
                echo i386-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;;
804
794
            amd64)
805
 
                echo x86_64-${VENDOR}-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;;
 
795
                echo x86_64-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;;
806
796
            *)
807
 
                echo ${UNAME_MACHINE}-${VENDOR}-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;;
 
797
                echo ${UNAME_MACHINE}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;;
808
798
        esac
809
799
        exit ;;
810
800
    i*:CYGWIN*:*)
826
816
                echo i586-pc-interix${UNAME_RELEASE}
827
817
                exit ;;
828
818
            authenticamd | genuineintel | EM64T)
829
 
                echo x86_64-${VENDOR}-interix${UNAME_RELEASE}
 
819
                echo x86_64-unknown-interix${UNAME_RELEASE}
830
820
                exit ;;
831
821
            IA64)
832
 
                echo ia64-${VENDOR}-interix${UNAME_RELEASE}
 
822
                echo ia64-unknown-interix${UNAME_RELEASE}
833
823
                exit ;;
834
824
        esac ;;
835
825
    [345]86:Windows_95:* | [345]86:Windows_98:* | [345]86:Windows_NT:*)
848
838
        echo ${UNAME_MACHINE}-pc-uwin
849
839
        exit ;;
850
840
    amd64:CYGWIN*:*:* | x86_64:CYGWIN*:*:*)
851
 
        echo x86_64-${VENDOR}-cygwin
 
841
        echo x86_64-unknown-cygwin
852
842
        exit ;;
853
843
    p*:CYGWIN*:*)
854
 
        echo powerpcle-${VENDOR}-cygwin
 
844
        echo powerpcle-unknown-cygwin
855
845
        exit ;;
856
846
    prep*:SunOS:5.*:*)
857
 
        echo powerpcle-${VENDOR}-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
 
847
        echo powerpcle-unknown-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
858
848
        exit ;;
859
849
    *:GNU:*:*)
860
850
        # the GNU system
861
 
        echo `echo ${UNAME_MACHINE}|sed -e 's,[-/].*$,,'`-${VENDOR}-gnu`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'`
 
851
        echo `echo ${UNAME_MACHINE}|sed -e 's,[-/].*$,,'`-unknown-gnu`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'`
862
852
        exit ;;
863
853
    *:GNU/*:*:*)
864
854
        # other systems with GNU libc and userland
865
 
        echo ${UNAME_MACHINE}-${VENDOR}-`echo ${UNAME_SYSTEM} | sed 's,^[^/]*/,,' | tr '[A-Z]' '[a-z]'``echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`-gnu
 
855
        echo ${UNAME_MACHINE}-unknown-`echo ${UNAME_SYSTEM} | sed 's,^[^/]*/,,' | tr '[A-Z]' '[a-z]'``echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`-gnu
866
856
        exit ;;
867
857
    i*86:Minix:*:*)
868
858
        echo ${UNAME_MACHINE}-pc-minix
879
869
        esac
880
870
        objdump --private-headers /bin/sh | grep -q ld.so.1
881
871
        if test "$?" = 0 ; then LIBC="libc1" ; else LIBC="" ; fi
882
 
        echo ${UNAME_MACHINE}-${VENDOR}-linux-gnu${LIBC}
 
872
        echo ${UNAME_MACHINE}-unknown-linux-gnu${LIBC}
883
873
        exit ;;
884
874
    arm*:Linux:*:*)
885
875
        eval $set_cc_for_build
886
876
        if echo __ARM_EABI__ | $CC_FOR_BUILD -E - 2>/dev/null \
887
877
            | grep -q __ARM_EABI__
888
878
        then
889
 
            echo ${UNAME_MACHINE}-${VENDOR}-linux-gnu
 
879
            echo ${UNAME_MACHINE}-unknown-linux-gnu
890
880
        else
891
 
            echo ${UNAME_MACHINE}-${VENDOR}-linux-gnueabi
 
881
            echo ${UNAME_MACHINE}-unknown-linux-gnueabi
892
882
        fi
893
883
        exit ;;
894
884
    avr32*:Linux:*:*)
895
 
        echo ${UNAME_MACHINE}-${VENDOR}-linux-gnu
 
885
        echo ${UNAME_MACHINE}-unknown-linux-gnu
896
886
        exit ;;
897
887
    cris:Linux:*:*)
898
888
        echo cris-axis-linux-gnu
901
891
        echo crisv32-axis-linux-gnu
902
892
        exit ;;
903
893
    frv:Linux:*:*)
904
 
        echo frv-${VENDOR}-linux-gnu
 
894
        echo frv-unknown-linux-gnu
905
895
        exit ;;
906
896
    i*86:Linux:*:*)
907
897
        LIBC=gnu
912
902
        #endif
913
903
EOF
914
904
        eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^LIBC'`
915
 
        echo "${UNAME_MACHINE}-${VENDOR}-linux-${LIBC}"
 
905
        echo "${UNAME_MACHINE}-pc-linux-${LIBC}"
916
906
        exit ;;
917
907
    ia64:Linux:*:*)
918
 
        echo ${UNAME_MACHINE}-${VENDOR}-linux-gnu
 
908
        echo ${UNAME_MACHINE}-unknown-linux-gnu
919
909
        exit ;;
920
910
    m32r*:Linux:*:*)
921
 
        echo ${UNAME_MACHINE}-${VENDOR}-linux-gnu
 
911
        echo ${UNAME_MACHINE}-unknown-linux-gnu
922
912
        exit ;;
923
913
    m68*:Linux:*:*)
924
 
        echo ${UNAME_MACHINE}-${VENDOR}-linux-gnu
 
914
        echo ${UNAME_MACHINE}-unknown-linux-gnu
925
915
        exit ;;
926
916
    mips:Linux:*:* | mips64:Linux:*:*)
927
917
        eval $set_cc_for_build
940
930
        #endif
941
931
EOF
942
932
        eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^CPU'`
943
 
        test x"${CPU}" != x && { echo "${CPU}-${VENDOR}-linux-gnu"; exit; }
 
933
        test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; }
944
934
        ;;
945
935
    or32:Linux:*:*)
946
 
        echo or32-${VENDOR}-linux-gnu
 
936
        echo or32-unknown-linux-gnu
947
937
        exit ;;
948
938
    padre:Linux:*:*)
949
 
        echo sparc-${VENDOR}-linux-gnu
 
939
        echo sparc-unknown-linux-gnu
950
940
        exit ;;
951
941
    parisc64:Linux:*:* | hppa64:Linux:*:*)
952
 
        echo hppa64-${VENDOR}-linux-gnu
 
942
        echo hppa64-unknown-linux-gnu
953
943
        exit ;;
954
944
    parisc:Linux:*:* | hppa:Linux:*:*)
955
945
        # Look for CPU level
956
946
        case `grep '^cpu[^a-z]*:' /proc/cpuinfo 2>/dev/null | cut -d' ' -f2` in
957
 
          PA7*) echo hppa1.1-${VENDOR}-linux-gnu ;;
958
 
          PA8*) echo hppa2.0-${VENDOR}-linux-gnu ;;
959
 
          *)    echo hppa-${VENDOR}-linux-gnu ;;
 
947
          PA7*) echo hppa1.1-unknown-linux-gnu ;;
 
948
          PA8*) echo hppa2.0-unknown-linux-gnu ;;
 
949
          *)    echo hppa-unknown-linux-gnu ;;
960
950
        esac
961
951
        exit ;;
962
952
    ppc64:Linux:*:*)
963
 
        echo powerpc64-${VENDOR}-linux-gnu
 
953
        echo powerpc64-unknown-linux-gnu
964
954
        exit ;;
965
955
    ppc:Linux:*:*)
966
 
        echo powerpc-${VENDOR}-linux-gnu
 
956
        echo powerpc-unknown-linux-gnu
967
957
        exit ;;
968
958
    s390:Linux:*:* | s390x:Linux:*:*)
969
959
        echo ${UNAME_MACHINE}-ibm-linux
970
960
        exit ;;
971
961
    sh64*:Linux:*:*)
972
 
        echo ${UNAME_MACHINE}-${VENDOR}-linux-gnu
 
962
        echo ${UNAME_MACHINE}-unknown-linux-gnu
973
963
        exit ;;
974
964
    sh*:Linux:*:*)
975
 
        echo ${UNAME_MACHINE}-${VENDOR}-linux-gnu
 
965
        echo ${UNAME_MACHINE}-unknown-linux-gnu
976
966
        exit ;;
977
967
    sparc:Linux:*:* | sparc64:Linux:*:*)
978
 
        echo ${UNAME_MACHINE}-${VENDOR}-linux-gnu
 
968
        echo ${UNAME_MACHINE}-unknown-linux-gnu
979
969
        exit ;;
980
970
    vax:Linux:*:*)
981
971
        echo ${UNAME_MACHINE}-dec-linux-gnu
982
972
        exit ;;
983
973
    x86_64:Linux:*:*)
984
 
        echo x86_64-${VENDOR}-linux-gnu
 
974
        echo x86_64-unknown-linux-gnu
985
975
        exit ;;
986
976
    xtensa*:Linux:*:*)
987
 
        echo ${UNAME_MACHINE}-${VENDOR}-linux-gnu
 
977
        echo ${UNAME_MACHINE}-unknown-linux-gnu
988
978
        exit ;;
989
979
    i*86:DYNIX/ptx:4*:*)
990
980
        # ptx 4.0 does uname -s correctly, with DYNIX/ptx in there.
1006
996
        echo ${UNAME_MACHINE}-pc-os2-emx
1007
997
        exit ;;
1008
998
    i*86:XTS-300:*:STOP)
1009
 
        echo ${UNAME_MACHINE}-${VENDOR}-stop
 
999
        echo ${UNAME_MACHINE}-unknown-stop
1010
1000
        exit ;;
1011
1001
    i*86:atheos:*:*)
1012
 
        echo ${UNAME_MACHINE}-${VENDOR}-atheos
 
1002
        echo ${UNAME_MACHINE}-unknown-atheos
1013
1003
        exit ;;
1014
1004
    i*86:syllable:*:*)
1015
1005
        echo ${UNAME_MACHINE}-pc-syllable
1016
1006
        exit ;;
1017
1007
    i*86:LynxOS:2.*:* | i*86:LynxOS:3.[01]*:* | i*86:LynxOS:4.[02]*:*)
1018
 
        echo i386-${VENDOR}-lynxos${UNAME_RELEASE}
 
1008
        echo i386-unknown-lynxos${UNAME_RELEASE}
1019
1009
        exit ;;
1020
1010
    i*86:*DOS:*:*)
1021
1011
        echo ${UNAME_MACHINE}-pc-msdosdjgpp
1035
1025
            *Pentium)        UNAME_MACHINE=i586 ;;
1036
1026
            *Pent*|*Celeron) UNAME_MACHINE=i686 ;;
1037
1027
        esac
1038
 
        echo ${UNAME_MACHINE}-${VENDOR}-sysv${UNAME_RELEASE}${UNAME_SYSTEM}${UNAME_VERSION}
 
1028
        echo ${UNAME_MACHINE}-unknown-sysv${UNAME_RELEASE}${UNAME_SYSTEM}${UNAME_VERSION}
1039
1029
        exit ;;
1040
1030
    i*86:*:3.2:*)
1041
1031
        if test -f /usr/options/cb.name; then
1074
1064
        if grep Stardent /usr/include/sys/uadmin.h >/dev/null 2>&1 ; then
1075
1065
          echo i860-stardent-sysv${UNAME_RELEASE} # Stardent Vistra i860-SVR4
1076
1066
        else # Add other i860-SVR4 vendors below as they are discovered.
1077
 
          echo i860-${VENDOR}-sysv${UNAME_RELEASE}  # Unknown i860-SVR4
 
1067
          echo i860-unknown-sysv${UNAME_RELEASE}  # Unknown i860-SVR4
1078
1068
        fi
1079
1069
        exit ;;
1080
1070
    mini*:CTIX:SYS*5:*)
1111
1101
        /bin/uname -p 2>/dev/null | /bin/grep pteron >/dev/null \
1112
1102
            && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;;
1113
1103
    m68*:LynxOS:2.*:* | m68*:LynxOS:3.0*:*)
1114
 
        echo m68k-${VENDOR}-lynxos${UNAME_RELEASE}
 
1104
        echo m68k-unknown-lynxos${UNAME_RELEASE}
1115
1105
        exit ;;
1116
1106
    mc68030:UNIX_System_V:4.*:*)
1117
1107
        echo m68k-atari-sysv4
1118
1108
        exit ;;
1119
1109
    TSUNAMI:LynxOS:2.*:*)
1120
 
        echo sparc-${VENDOR}-lynxos${UNAME_RELEASE}
 
1110
        echo sparc-unknown-lynxos${UNAME_RELEASE}
1121
1111
        exit ;;
1122
1112
    rs6000:LynxOS:2.*:*)
1123
 
        echo rs6000-${VENDOR}-lynxos${UNAME_RELEASE}
 
1113
        echo rs6000-unknown-lynxos${UNAME_RELEASE}
1124
1114
        exit ;;
1125
1115
    PowerPC:LynxOS:2.*:* | PowerPC:LynxOS:3.[01]*:* | PowerPC:LynxOS:4.[02]*:*)
1126
 
        echo powerpc-${VENDOR}-lynxos${UNAME_RELEASE}
 
1116
        echo powerpc-unknown-lynxos${UNAME_RELEASE}
1127
1117
        exit ;;
1128
1118
    SM[BE]S:UNIX_SV:*:*)
1129
1119
        echo mips-dde-sysv${UNAME_RELEASE}
1173
1163
        if [ -d /usr/nec ]; then
1174
1164
                echo mips-nec-sysv${UNAME_RELEASE}
1175
1165
        else
1176
 
                echo mips-${VENDOR}-sysv${UNAME_RELEASE}
 
1166
                echo mips-unknown-sysv${UNAME_RELEASE}
1177
1167
        fi
1178
1168
        exit ;;
1179
1169
    BeBox:BeOS:*:*)     # BeOS running on hardware made by Be, PPC only.
1264
1254
        else
1265
1255
            UNAME_MACHINE="$cputype"
1266
1256
        fi
1267
 
        echo ${UNAME_MACHINE}-${VENDOR}-plan9
 
1257
        echo ${UNAME_MACHINE}-unknown-plan9
1268
1258
        exit ;;
1269
1259
    *:TOPS-10:*:*)
1270
 
        echo pdp10-${VENDOR}-tops10
 
1260
        echo pdp10-unknown-tops10
1271
1261
        exit ;;
1272
1262
    *:TENEX:*:*)
1273
 
        echo pdp10-${VENDOR}-tenex
 
1263
        echo pdp10-unknown-tenex
1274
1264
        exit ;;
1275
1265
    KS10:TOPS-20:*:* | KL10:TOPS-20:*:* | TYPE4:TOPS-20:*:*)
1276
1266
        echo pdp10-dec-tops20
1279
1269
        echo pdp10-xkl-tops20
1280
1270
        exit ;;
1281
1271
    *:TOPS-20:*:*)
1282
 
        echo pdp10-${VENDOR}-tops20
 
1272
        echo pdp10-unknown-tops20
1283
1273
        exit ;;
1284
1274
    *:ITS:*:*)
1285
 
        echo pdp10-${VENDOR}-its
 
1275
        echo pdp10-unknown-its
1286
1276
        exit ;;
1287
1277
    SEI:*:*:SEIUX)
1288
1278
        echo mips-sei-seiux${UNAME_RELEASE}
1289
1279
        exit ;;
1290
1280
    *:DragonFly:*:*)
1291
 
        echo ${UNAME_MACHINE}-${VENDOR}-dragonfly`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`
 
1281
        echo ${UNAME_MACHINE}-unknown-dragonfly`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`
1292
1282
        exit ;;
1293
1283
    *:*VMS:*:*)
1294
1284
        UNAME_MACHINE=`(uname -p) 2>/dev/null`