~ubuntu-branches/ubuntu/warty/xfce4-panel/warty

« back to all changes in this revision

Viewing changes to config.guess

  • Committer: Bazaar Package Importer
  • Author(s): Simon Huggins
  • Date: 2004-06-08 10:44:21 UTC
  • Revision ID: james.westby@ubuntu.com-20040608104421-2foga6j81a0pi05l
Tags: 4.0.5-4
And extracting po/no.gmo so it builds, I also overwrote my lovingly
updated libtool stuff.
Update libtool once again.                                  closes: #252927

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
#   Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
4
4
#   2000, 2001, 2002, 2003 Free Software Foundation, Inc.
5
5
 
6
 
timestamp='2004-01-05'
 
6
timestamp='2004-03-12'
7
7
 
8
8
# This file is free software; you can redistribute it and/or modify it
9
9
# under the terms of the GNU General Public License as published by
197
197
        # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM is used.
198
198
        echo "${machine}-${os}${release}"
199
199
        exit 0 ;;
 
200
    amd64:OpenBSD:*:*)
 
201
        echo x86_64-unknown-openbsd${UNAME_RELEASE}
 
202
        exit 0 ;;
200
203
    amiga:OpenBSD:*:*)
201
204
        echo m68k-unknown-openbsd${UNAME_RELEASE}
202
205
        exit 0 ;;
203
206
    arc:OpenBSD:*:*)
204
207
        echo mipsel-unknown-openbsd${UNAME_RELEASE}
205
208
        exit 0 ;;
 
209
    cats:OpenBSD:*:*)
 
210
        echo arm-unknown-openbsd${UNAME_RELEASE}
 
211
        exit 0 ;;
206
212
    hp300:OpenBSD:*:*)
207
213
        echo m68k-unknown-openbsd${UNAME_RELEASE}
208
214
        exit 0 ;;
239
245
    *:OpenBSD:*:*)
240
246
        echo ${UNAME_MACHINE}-unknown-openbsd${UNAME_RELEASE}
241
247
        exit 0 ;;
 
248
    *:ekkoBSD:*:*)
 
249
        echo ${UNAME_MACHINE}-unknown-ekkobsd${UNAME_RELEASE}
 
250
        exit 0 ;;
 
251
    macppc:MirBSD:*:*)
 
252
        echo powerppc-unknown-mirbsd${UNAME_RELEASE}
 
253
        exit 0 ;;
 
254
    *:MirBSD:*:*)
 
255
        echo ${UNAME_MACHINE}-unknown-mirbsd${UNAME_RELEASE}
 
256
        exit 0 ;;
242
257
    alpha:OSF1:*:*)
243
 
        if test $UNAME_RELEASE = "V4.0"; then
 
258
        case $UNAME_RELEASE in
 
259
        *4.0)
244
260
                UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $3}'`
245
 
        fi
 
261
                ;;
 
262
        *5.*)
 
263
                UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $4}'`
 
264
                ;;
 
265
        esac
246
266
        # According to Compaq, /usr/sbin/psrinfo has been available on
247
267
        # OSF/1 and Tru64 systems produced since 1995.  I hope that
248
268
        # covers most systems running today.  This code pipes the CPU
280
300
            "EV7.9 (21364A)")
281
301
                UNAME_MACHINE="alphaev79" ;;
282
302
        esac
 
303
        # A Pn.n version is a patched version.
283
304
        # A Vn.n version is a released version.
284
305
        # A Tn.n version is a released field test version.
285
306
        # A Xn.n version is an unreleased experimental baselevel.
286
307
        # 1.2 uses "1.2" for uname -r.
287
 
        echo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[VTX]//' | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'`
 
308
        echo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[PVTX]//' | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'`
288
309
        exit 0 ;;
289
310
    Alpha*:OpenVMS:*:*)
290
311
        echo alpha-hp-vms
405
426
    *:*MiNT:*:* | *:*mint:*:* | *:*TOS:*:*)
406
427
        echo m68k-unknown-mint${UNAME_RELEASE}
407
428
        exit 0 ;;
 
429
    m68k:machten:*:*)
 
430
        echo m68k-apple-machten${UNAME_RELEASE}
 
431
        exit 0 ;;
408
432
    powerpc:machten:*:*)
409
433
        echo powerpc-apple-machten${UNAME_RELEASE}
410
434
        exit 0 ;;
829
853
    ia64:Linux:*:*)
830
854
        echo ${UNAME_MACHINE}-unknown-linux-gnu
831
855
        exit 0 ;;
 
856
    m32r*:Linux:*:*)
 
857
        echo ${UNAME_MACHINE}-unknown-linux-gnu
 
858
        exit 0 ;;
832
859
    m68*:Linux:*:*)
833
860
        echo ${UNAME_MACHINE}-unknown-linux-gnu
834
861
        exit 0 ;;
1230
1257
    SEI:*:*:SEIUX)
1231
1258
        echo mips-sei-seiux${UNAME_RELEASE}
1232
1259
        exit 0 ;;
1233
 
    *:DRAGONFLY:*:*)
1234
 
        echo ${UNAME_MACHINE}-unknown-dragonfly${UNAME_RELEASE}
 
1260
    *:DragonFly:*:*)
 
1261
        echo ${UNAME_MACHINE}-unknown-dragonfly`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`
1235
1262
        exit 0 ;;
1236
1263
esac
1237
1264