~ubuntu-branches/ubuntu/precise/flac/precise-updates

« back to all changes in this revision

Viewing changes to config.sub

  • Committer: Bazaar Package Importer
  • Author(s): Joshua Kwan
  • Date: 2007-05-29 22:56:36 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20070529225636-ljeff8xxip09qaap
Tags: 1.1.4-1
* New upstream release. closes: #405167, #411311
  - libOggFLAC and libOggFLAC++ have been merged into libFLAC, so
    remove their corresponding packages.
  - Because of the API changes required to effect the above, there has
    been yet another soname bump. libflac7 -> libflac8 and
    libflac++5 -> libflac++6. Emails have been dispatched to the
    maintainers of dependent packages.
* Some notes on patches that were removed:
  - 02_stdin_stdout, 06_manpage_mention_utf8_convert: merged upstream
  - 08_manpage_warnings: Upstream has changed the manpage so it defintely
    can't fit in in 80 cols, so just forget about it. We'll live.
  - 05_eof_warnings_are_errors: Upstream decided to add a -w option to
    flac to treat all warnings as errors. I am going to defer to that
    for now, but if people think it's stupid let me know and I'll port
    the patch forward.
  - 04_stack_smasher: was a backport from 1.1.3, so it's obsolete.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#! /bin/sh
2
2
# Configuration validation subroutine script.
3
3
#   Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
4
 
#   2000, 2001, 2002, 2003 Free Software Foundation, Inc.
 
4
#   2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation,
 
5
#   Inc.
5
6
 
6
 
timestamp='2004-03-12'
 
7
timestamp='2007-01-18'
7
8
 
8
9
# This file is (in principle) common to ALL GNU software.
9
10
# The presence of a machine in this file suggests that SOME GNU software
21
22
#
22
23
# You should have received a copy of the GNU General Public License
23
24
# along with this program; if not, write to the Free Software
24
 
# Foundation, Inc., 59 Temple Place - Suite 330,
25
 
# Boston, MA 02111-1307, USA.
26
 
 
 
25
# Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA
 
26
# 02110-1301, USA.
 
27
#
27
28
# As a special exception to the GNU General Public License, if you
28
29
# distribute this file as part of a program that contains a
29
30
# configuration script generated by Autoconf, you may include it under
30
31
# the same distribution terms that you use for the rest of that program.
31
32
 
 
33
 
32
34
# Please send patches to <config-patches@gnu.org>.  Submit a context
33
35
# diff and a properly formatted ChangeLog entry.
34
36
#
70
72
version="\
71
73
GNU config.sub ($timestamp)
72
74
 
73
 
Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001
 
75
Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005
74
76
Free Software Foundation, Inc.
75
77
 
76
78
This is free software; see the source for copying conditions.  There is NO
83
85
while test $# -gt 0 ; do
84
86
  case $1 in
85
87
    --time-stamp | --time* | -t )
86
 
       echo "$timestamp" ; exit 0 ;;
 
88
       echo "$timestamp" ; exit ;;
87
89
    --version | -v )
88
 
       echo "$version" ; exit 0 ;;
 
90
       echo "$version" ; exit ;;
89
91
    --help | --h* | -h )
90
 
       echo "$usage"; exit 0 ;;
 
92
       echo "$usage"; exit ;;
91
93
    -- )     # Stop option processing
92
94
       shift; break ;;
93
95
    - ) # Use stdin as input.
99
101
    *local*)
100
102
       # First pass through any local machine types.
101
103
       echo $1
102
 
       exit 0;;
 
104
       exit ;;
103
105
 
104
106
    * )
105
107
       break ;;
118
120
# Here we must recognize all the valid KERNEL-OS combinations.
119
121
maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'`
120
122
case $maybe_os in
121
 
  nto-qnx* | linux-gnu* | linux-dietlibc | linux-uclibc* | uclinux-uclibc* | uclinux-gnu* | \
122
 
  kfreebsd*-gnu* | knetbsd*-gnu* | netbsd*-gnu* | storm-chaos* | os2-emx* | rtmk-nova*)
 
123
  nto-qnx* | linux-gnu* | linux-dietlibc | linux-newlib* | linux-uclibc* | \
 
124
  uclinux-uclibc* | uclinux-gnu* | kfreebsd*-gnu* | knetbsd*-gnu* | netbsd*-gnu* | \
 
125
  storm-chaos* | os2-emx* | rtmk-nova*)
123
126
    os=-$maybe_os
124
127
    basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'`
125
128
    ;;
145
148
        -convergent* | -ncr* | -news | -32* | -3600* | -3100* | -hitachi* |\
146
149
        -c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \
147
150
        -harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp | \
148
 
        -apple | -axis)
 
151
        -apple | -axis | -knuth | -cray)
149
152
                os=
150
153
                basic_machine=$1
151
154
                ;;
170
173
        -hiux*)
171
174
                os=-hiuxwe2
172
175
                ;;
 
176
        -sco6)
 
177
                os=-sco5v6
 
178
                basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
 
179
                ;;
173
180
        -sco5)
174
181
                os=-sco3.2v5
175
182
                basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
186
193
                # Don't forget version if it is 3.2v4 or newer.
187
194
                basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
188
195
                ;;
 
196
        -sco5v6*)
 
197
                # Don't forget version if it is 3.2v4 or newer.
 
198
                basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
 
199
                ;;
189
200
        -sco*)
190
201
                os=-sco3.2v2
191
202
                basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
230
241
        | alpha | alphaev[4-8] | alphaev56 | alphaev6[78] | alphapca5[67] \
231
242
        | alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | alpha64pca5[67] \
232
243
        | am33_2.0 \
233
 
        | arc | arm | arm[bl]e | arme[lb] | armv[2345] | armv[345][lb] | avr \
 
244
        | arc | arm | arm[bl]e | arme[lb] | armv[2345] | armv[345][lb] | avr | avr32 \
 
245
        | bfin \
234
246
        | c4x | clipper \
235
247
        | d10v | d30v | dlx | dsp16xx \
236
 
        | fr30 | frv \
 
248
        | fido | fr30 | frv \
237
249
        | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \
238
250
        | i370 | i860 | i960 | ia64 \
239
251
        | ip2k | iq2000 \
240
 
        | m32r | m32rle | m68000 | m68k | m88k | mcore \
 
252
        | m32c | m32r | m32rle | m68000 | m68k | m88k \
 
253
        | maxq | mb | microblaze | mcore | mep \
241
254
        | mips | mipsbe | mipseb | mipsel | mipsle \
242
255
        | mips16 \
243
256
        | mips64 | mips64el \
246
259
        | mips64vr4100 | mips64vr4100el \
247
260
        | mips64vr4300 | mips64vr4300el \
248
261
        | mips64vr5000 | mips64vr5000el \
 
262
        | mips64vr5900 | mips64vr5900el \
249
263
        | mipsisa32 | mipsisa32el \
250
264
        | mipsisa32r2 | mipsisa32r2el \
251
265
        | mipsisa64 | mipsisa64el \
254
268
        | mipsisa64sr71k | mipsisa64sr71kel \
255
269
        | mipstx39 | mipstx39el \
256
270
        | mn10200 | mn10300 \
 
271
        | mt \
257
272
        | msp430 \
 
273
        | nios | nios2 \
258
274
        | ns16k | ns32k \
259
 
        | openrisc | or32 \
 
275
        | or32 \
260
276
        | pdp10 | pdp11 | pj | pjl \
261
277
        | powerpc | powerpc64 | powerpc64le | powerpcle | ppcbe \
262
278
        | pyramid \
263
 
        | sh | sh[1234] | sh[23]e | sh[34]eb | shbe | shle | sh[1234]le | sh3ele \
 
279
        | score \
 
280
        | sh | sh[1234] | sh[24]a | sh[23]e | sh[34]eb | sheb | shbe | shle | sh[1234]le | sh3ele \
264
281
        | sh64 | sh64le \
265
 
        | sparc | sparc64 | sparc86x | sparclet | sparclite | sparcv8 | sparcv9 | sparcv9b \
266
 
        | strongarm \
 
282
        | sparc | sparc64 | sparc64b | sparc64v | sparc86x | sparclet | sparclite \
 
283
        | sparcv8 | sparcv9 | sparcv9b | sparcv9v \
 
284
        | spu | strongarm \
267
285
        | tahoe | thumb | tic4x | tic80 | tron \
268
286
        | v850 | v850e \
269
287
        | we32k \
270
 
        | x86 | xscale | xstormy16 | xtensa \
 
288
        | x86 | xc16x | xscale | xscalee[bl] | xstormy16 | xtensa \
271
289
        | z8k)
272
290
                basic_machine=$basic_machine-unknown
273
291
                ;;
278
296
                ;;
279
297
        m88110 | m680[12346]0 | m683?2 | m68360 | m5200 | v70 | w65 | z8k)
280
298
                ;;
 
299
        ms1)
 
300
                basic_machine=mt-unknown
 
301
                ;;
281
302
 
282
303
        # We use `pc' rather than `unknown'
283
304
        # because (1) that's what they normally are, and
297
318
        | alpha64-* | alpha64ev[4-8]-* | alpha64ev56-* | alpha64ev6[78]-* \
298
319
        | alphapca5[67]-* | alpha64pca5[67]-* | arc-* \
299
320
        | arm-*  | armbe-* | armle-* | armeb-* | armv*-* \
300
 
        | avr-* \
301
 
        | bs2000-* \
 
321
        | avr-* | avr32-* \
 
322
        | bfin-* | bs2000-* \
302
323
        | c[123]* | c30-* | [cjt]90-* | c4x-* | c54x-* | c55x-* | c6x-* \
303
 
        | clipper-* | cydra-* \
 
324
        | clipper-* | craynv-* | cydra-* \
304
325
        | d10v-* | d30v-* | dlx-* \
305
326
        | elxsi-* \
306
 
        | f30[01]-* | f700-* | fr30-* | frv-* | fx80-* \
 
327
        | f30[01]-* | f700-* | fido-* | fr30-* | frv-* | fx80-* \
307
328
        | h8300-* | h8500-* \
308
329
        | hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \
309
330
        | i*86-* | i860-* | i960-* | ia64-* \
310
331
        | ip2k-* | iq2000-* \
311
 
        | m32r-* | m32rle-* \
 
332
        | m32c-* | m32r-* | m32rle-* \
312
333
        | m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \
313
 
        | m88110-* | m88k-* | mcore-* \
 
334
        | m88110-* | m88k-* | maxq-* | mcore-* \
314
335
        | mips-* | mipsbe-* | mipseb-* | mipsel-* | mipsle-* \
315
336
        | mips16-* \
316
337
        | mips64-* | mips64el-* \
319
340
        | mips64vr4100-* | mips64vr4100el-* \
320
341
        | mips64vr4300-* | mips64vr4300el-* \
321
342
        | mips64vr5000-* | mips64vr5000el-* \
 
343
        | mips64vr5900-* | mips64vr5900el-* \
322
344
        | mipsisa32-* | mipsisa32el-* \
323
345
        | mipsisa32r2-* | mipsisa32r2el-* \
324
346
        | mipsisa64-* | mipsisa64el-* \
326
348
        | mipsisa64sb1-* | mipsisa64sb1el-* \
327
349
        | mipsisa64sr71k-* | mipsisa64sr71kel-* \
328
350
        | mipstx39-* | mipstx39el-* \
 
351
        | mmix-* \
 
352
        | mt-* \
329
353
        | msp430-* \
330
 
        | none-* | np1-* | nv1-* | ns16k-* | ns32k-* \
 
354
        | nios-* | nios2-* \
 
355
        | none-* | np1-* | ns16k-* | ns32k-* \
331
356
        | orion-* \
332
357
        | pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \
333
358
        | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* | ppcbe-* \
334
359
        | pyramid-* \
335
360
        | romp-* | rs6000-* \
336
 
        | sh-* | sh[1234]-* | sh[23]e-* | sh[34]eb-* | shbe-* \
 
361
        | sh-* | sh[1234]-* | sh[24]a-* | sh[23]e-* | sh[34]eb-* | sheb-* | shbe-* \
337
362
        | shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \
338
 
        | sparc-* | sparc64-* | sparc86x-* | sparclet-* | sparclite-* \
339
 
        | sparcv8-* | sparcv9-* | sparcv9b-* | strongarm-* | sv1-* | sx?-* \
 
363
        | sparc-* | sparc64-* | sparc64b-* | sparc64v-* | sparc86x-* | sparclet-* \
 
364
        | sparclite-* \
 
365
        | sparcv8-* | sparcv9-* | sparcv9b-* | sparcv9v-* | strongarm-* | sv1-* | sx?-* \
340
366
        | tahoe-* | thumb-* \
341
367
        | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \
342
368
        | tron-* \
343
369
        | v850-* | v850e-* | vax-* \
344
370
        | we32k-* \
345
 
        | x86-* | x86_64-* | xps100-* | xscale-* | xstormy16-* \
346
 
        | xtensa-* \
 
371
        | x86-* | x86_64-* | xc16x-* | xps100-* | xscale-* | xscalee[bl]-* \
 
372
        | xstormy16-* | xtensa-* \
347
373
        | ymp-* \
348
374
        | z8k-*)
349
375
                ;;
445
471
                basic_machine=j90-cray
446
472
                os=-unicos
447
473
                ;;
 
474
        craynv)
 
475
                basic_machine=craynv-cray
 
476
                os=-unicosmp
 
477
                ;;
448
478
        cr16c)
449
479
                basic_machine=cr16c-unknown
450
480
                os=-elf
452
482
        crds | unos)
453
483
                basic_machine=m68k-crds
454
484
                ;;
 
485
        crisv32 | crisv32-* | etraxfs*)
 
486
                basic_machine=crisv32-axis
 
487
                ;;
455
488
        cris | cris-* | etrax*)
456
489
                basic_machine=cris-axis
457
490
                ;;
481
514
                basic_machine=m88k-motorola
482
515
                os=-sysv3
483
516
                ;;
 
517
        djgpp)
 
518
                basic_machine=i586-pc
 
519
                os=-msdosdjgpp
 
520
                ;;
484
521
        dpx20 | dpx20-*)
485
522
                basic_machine=rs6000-bull
486
523
                os=-bosx
659
696
        mips3*)
660
697
                basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`-unknown
661
698
                ;;
662
 
        mmix*)
663
 
                basic_machine=mmix-knuth
664
 
                os=-mmixware
665
 
                ;;
666
699
        monitor)
667
700
                basic_machine=m68k-rom68k
668
701
                os=-coff
675
708
                basic_machine=i386-pc
676
709
                os=-msdos
677
710
                ;;
 
711
        ms1-*)
 
712
                basic_machine=`echo $basic_machine | sed -e 's/ms1-/mt-/'`
 
713
                ;;
678
714
        mvs)
679
715
                basic_machine=i370-ibm
680
716
                os=-mvs
743
779
        np1)
744
780
                basic_machine=np1-gould
745
781
                ;;
746
 
        nv1)
747
 
                basic_machine=nv1-cray
748
 
                os=-unicosmp
749
 
                ;;
750
782
        nsr-tandem)
751
783
                basic_machine=nsr-tandem
752
784
                ;;
754
786
                basic_machine=hppa1.1-oki
755
787
                os=-proelf
756
788
                ;;
757
 
        or32 | or32-*)
 
789
        openrisc | openrisc-*)
758
790
                basic_machine=or32-unknown
759
 
                os=-coff
760
791
                ;;
761
792
        os400)
762
793
                basic_machine=powerpc-ibm
787
818
        pc532 | pc532-*)
788
819
                basic_machine=ns32k-pc532
789
820
                ;;
 
821
        pc98)
 
822
                basic_machine=i386-pc
 
823
                ;;
 
824
        pc98-*)
 
825
                basic_machine=i386-`echo $basic_machine | sed 's/^[^-]*-//'`
 
826
                ;;
790
827
        pentium | p5 | k5 | k6 | nexgen | viac3)
791
828
                basic_machine=i586-pc
792
829
                ;;
843
880
                basic_machine=i586-unknown
844
881
                os=-pw32
845
882
                ;;
 
883
        rdos)
 
884
                basic_machine=i386-pc
 
885
                os=-rdos
 
886
                ;;
846
887
        rom68k)
847
888
                basic_machine=m68k-rom68k
848
889
                os=-coff
869
910
        sb1el)
870
911
                basic_machine=mipsisa64sb1el-unknown
871
912
                ;;
 
913
        sde)
 
914
                basic_machine=mipsisa32-sde
 
915
                os=-elf
 
916
                ;;
872
917
        sei)
873
918
                basic_machine=mips-sei
874
919
                os=-seiux
880
925
                basic_machine=sh-hitachi
881
926
                os=-hms
882
927
                ;;
 
928
        sh5el)
 
929
                basic_machine=sh5le-unknown
 
930
                ;;
883
931
        sh64)
884
932
                basic_machine=sh64-unknown
885
933
                ;;
1029
1077
                basic_machine=hppa1.1-winbond
1030
1078
                os=-proelf
1031
1079
                ;;
 
1080
        xbox)
 
1081
                basic_machine=i686-pc
 
1082
                os=-mingw32
 
1083
                ;;
1032
1084
        xps | xps100)
1033
1085
                basic_machine=xps100-honeywell
1034
1086
                ;;
1059
1111
        romp)
1060
1112
                basic_machine=romp-ibm
1061
1113
                ;;
 
1114
        mmix)
 
1115
                basic_machine=mmix-knuth
 
1116
                ;;
1062
1117
        rs6000)
1063
1118
                basic_machine=rs6000-ibm
1064
1119
                ;;
1075
1130
        we32k)
1076
1131
                basic_machine=we32k-att
1077
1132
                ;;
1078
 
        sh3 | sh4 | sh[34]eb | sh[1234]le | sh[23]ele)
 
1133
        sh[1234] | sh[24]a | sh[34]eb | sh[1234]le | sh[23]ele)
1079
1134
                basic_machine=sh-unknown
1080
1135
                ;;
1081
 
        sh64)
1082
 
                basic_machine=sh64-unknown
1083
 
                ;;
1084
 
        sparc | sparcv8 | sparcv9 | sparcv9b)
 
1136
        sparc | sparcv8 | sparcv9 | sparcv9b | sparcv9v)
1085
1137
                basic_machine=sparc-sun
1086
1138
                ;;
1087
1139
        cydra)
1154
1206
              | -aos* \
1155
1207
              | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \
1156
1208
              | -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \
1157
 
              | -hiux* | -386bsd* | -knetbsd* | -mirbsd* | -netbsd* | -openbsd* \
 
1209
              | -hiux* | -386bsd* | -knetbsd* | -mirbsd* | -netbsd* \
 
1210
              | -openbsd* | -solidbsd* \
1158
1211
              | -ekkobsd* | -kfreebsd* | -freebsd* | -riscix* | -lynxos* \
1159
1212
              | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \
1160
1213
              | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \
1161
1214
              | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \
1162
1215
              | -chorusos* | -chorusrdb* \
1163
1216
              | -cygwin* | -pe* | -psos* | -moss* | -proelf* | -rtems* \
1164
 
              | -mingw32* | -linux-gnu* | -linux-uclibc* | -uxpv* | -beos* | -mpeix* | -udk* \
 
1217
              | -mingw32* | -linux-gnu* | -linux-newlib* | -linux-uclibc* \
 
1218
              | -uxpv* | -beos* | -mpeix* | -udk* \
1165
1219
              | -interix* | -uwin* | -mks* | -rhapsody* | -darwin* | -opened* \
1166
1220
              | -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* \
1167
1221
              | -storm-chaos* | -tops10* | -tenex* | -tops20* | -its* \
1168
1222
              | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \
1169
1223
              | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \
1170
 
              | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly*)
 
1224
              | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \
 
1225
              | -skyos* | -haiku* | -rdos* | -toppers* | -drops*)
1171
1226
        # Remember, each alternative MUST END IN *, to match a version number.
1172
1227
                ;;
1173
1228
        -qnx*)
1185
1240
                os=`echo $os | sed -e 's|nto|nto-qnx|'`
1186
1241
                ;;
1187
1242
        -sim | -es1800* | -hms* | -xray | -os68k* | -none* | -v88r* \
1188
 
              | -windows* | -osx | -abug | -netware* | -os9* | -beos* \
 
1243
              | -windows* | -osx | -abug | -netware* | -os9* | -beos* | -haiku* \
1189
1244
              | -macos* | -mpw* | -magic* | -mmixware* | -mon960* | -lnews*)
1190
1245
                ;;
1191
1246
        -mac*)
1294
1349
        -kaos*)
1295
1350
                os=-kaos
1296
1351
                ;;
 
1352
        -zvmoe)
 
1353
                os=-zvmoe
 
1354
                ;;
1297
1355
        -none)
1298
1356
                ;;
1299
1357
        *)
1316
1374
# system, and we'll never get to this point.
1317
1375
 
1318
1376
case $basic_machine in
 
1377
        score-*)
 
1378
                os=-elf
 
1379
                ;;
 
1380
        spu-*)
 
1381
                os=-elf
 
1382
                ;;
1319
1383
        *-acorn)
1320
1384
                os=-riscix1.2
1321
1385
                ;;
1325
1389
        arm*-semi)
1326
1390
                os=-aout
1327
1391
                ;;
1328
 
    c4x-* | tic4x-*)
1329
 
        os=-coff
1330
 
        ;;
 
1392
        c4x-* | tic4x-*)
 
1393
                os=-coff
 
1394
                ;;
1331
1395
        # This must come before the *-dec entry.
1332
1396
        pdp10-*)
1333
1397
                os=-tops20
1353
1417
        m68*-cisco)
1354
1418
                os=-aout
1355
1419
                ;;
 
1420
        mep-*)
 
1421
                os=-elf
 
1422
                ;;
1356
1423
        mips*-cisco)
1357
1424
                os=-elf
1358
1425
                ;;
1371
1438
        *-be)
1372
1439
                os=-beos
1373
1440
                ;;
 
1441
        *-haiku)
 
1442
                os=-haiku
 
1443
                ;;
1374
1444
        *-ibm)
1375
1445
                os=-aix
1376
1446
                ;;
 
1447
        *-knuth)
 
1448
                os=-mmixware
 
1449
                ;;
1377
1450
        *-wec)
1378
1451
                os=-proelf
1379
1452
                ;;
1539
1612
esac
1540
1613
 
1541
1614
echo $basic_machine$os
1542
 
exit 0
 
1615
exit
1543
1616
 
1544
1617
# Local variables:
1545
1618
# eval: (add-hook 'write-file-hooks 'time-stamp)