~ubuntu-branches/ubuntu/maverick/brasero/maverick

« back to all changes in this revision

Viewing changes to config.guess

  • Committer: Bazaar Package Importer
  • Author(s): Didier Roche
  • Date: 2010-09-14 10:23:22 UTC
  • mfrom: (1.1.44 upstream)
  • Revision ID: james.westby@ubuntu.com-20100914102322-7eigq8pge5wqfol1
Tags: 2.31.92-0ubuntu1
* New upstream release:
  - Revert to libunique from GApplication (Luis Medinas)
  - Remove dbus-glib requires from pkgconfig file (Luis Medinas)
  - Some more debugging to find out about problems with encrypted DVDs
    (Philippe Rouquier)
  - Fix minor issues in gdbus conversion. (Luis Medinas)
  - Remove dbus-glib check from configure (Luis Medinas)
  - Replace last part of dbus-glib by GDBus (Luis Medinas)
  - Fix Inhibit() d-bus parameters (Robert Ancell)
  - Remove dbus libraries from the Makefile. (Luis Medinas)
  - Use --with-gtk switch for gtk 2/3 selection (Christian Persch)
  - Fix image checksuming that did not occur when GConf or GSetting returned 0
    as a value for the checksum type key (Philippe Rouquier)
  - Don't hardcode gconf gsettings backend (Robert Ancell)
  - Fix brasero plugin directory (Robert Ancell)
* debian/control:
  - build-dep on libunique
* debian/patches/010_lpi.patch,31_link_libice.patch:
  - adapt to latest code
* debian/patches/013_gsettings_backend.patch,014_plugin_directory.patch,
  015_inhibit_params.patch:
  - removed, now upstream

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