OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

[/] [or1k/] [trunk/] [insight/] [tcl/] [unix/] [mkLinks] - Blame information for rev 1765

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 578 markom
#!/bin/sh
2
# This script is invoked when installing manual entries.  It generates
3
# additional links to manual entries, corresponding to the procedure
4
# and command names described by the manual entry.  For example, the
5
# Tcl manual entry Hash.3 describes procedures Tcl_InitHashTable,
6
# Tcl_CreateHashEntry, and many more.  This script will make hard
7
# links so that Tcl_InitHashTable.3, Tcl_CreateHashEntry.3, and so
8
# on all refer to Hash.3 in the installed directory.
9
#
10
# Because of the length of command and procedure names, this mechanism
11
# only works on machines that support file names longer than 14 characters.
12
# This script checks to see if long file names are supported, and it
13
# doesn't make any links if they are not.
14
#
15
# The script takes one argument, which is the name of the directory
16
# where the manual entries have been installed.
17
 
18
if test $# != 1; then
19
    echo "Usage: mkLinks dir"
20
    exit 1
21
fi
22
 
23
cd $1
24
echo foo > xyzzyTestingAVeryLongFileName.foo
25
x=`echo xyzzyTe*`
26
rm xyzzyTe*
27
if test "$x" != "xyzzyTestingAVeryLongFileName.foo"; then
28
    exit
29
fi
30
 
31
if test -r AddErrInfo.3; then
32
    rm -f Tcl_AddObjErrorInfo.3
33
    ln AddErrInfo.3 Tcl_AddObjErrorInfo.3
34
fi
35
if test -r AddErrInfo.3; then
36
    rm -f Tcl_AddErrorInfo.3
37
    ln AddErrInfo.3 Tcl_AddErrorInfo.3
38
fi
39
if test -r AddErrInfo.3; then
40
    rm -f Tcl_SetErrorCode.3
41
    ln AddErrInfo.3 Tcl_SetErrorCode.3
42
fi
43
if test -r AddErrInfo.3; then
44
    rm -f Tcl_PosixError.3
45
    ln AddErrInfo.3 Tcl_PosixError.3
46
fi
47
if test -r Alloc.3; then
48
    rm -f Tcl_Alloc.3
49
    ln Alloc.3 Tcl_Alloc.3
50
fi
51
if test -r Alloc.3; then
52
    rm -f Tcl_Free.3
53
    ln Alloc.3 Tcl_Free.3
54
fi
55
if test -r Alloc.3; then
56
    rm -f Tcl_Realloc.3
57
    ln Alloc.3 Tcl_Realloc.3
58
fi
59
if test -r AllowExc.3; then
60
    rm -f Tcl_AllowExceptions.3
61
    ln AllowExc.3 Tcl_AllowExceptions.3
62
fi
63
if test -r AppInit.3; then
64
    rm -f Tcl_AppInit.3
65
    ln AppInit.3 Tcl_AppInit.3
66
fi
67
if test -r AssocData.3; then
68
    rm -f Tcl_GetAssocData.3
69
    ln AssocData.3 Tcl_GetAssocData.3
70
fi
71
if test -r AssocData.3; then
72
    rm -f Tcl_SetAssocData.3
73
    ln AssocData.3 Tcl_SetAssocData.3
74
fi
75
if test -r AssocData.3; then
76
    rm -f Tcl_DeleteAssocData.3
77
    ln AssocData.3 Tcl_DeleteAssocData.3
78
fi
79
if test -r Async.3; then
80
    rm -f Tcl_AsyncCreate.3
81
    ln Async.3 Tcl_AsyncCreate.3
82
fi
83
if test -r Async.3; then
84
    rm -f Tcl_AsyncMark.3
85
    ln Async.3 Tcl_AsyncMark.3
86
fi
87
if test -r Async.3; then
88
    rm -f Tcl_AsyncInvoke.3
89
    ln Async.3 Tcl_AsyncInvoke.3
90
fi
91
if test -r Async.3; then
92
    rm -f Tcl_AsyncDelete.3
93
    ln Async.3 Tcl_AsyncDelete.3
94
fi
95
if test -r BackgdErr.3; then
96
    rm -f Tcl_BackgroundError.3
97
    ln BackgdErr.3 Tcl_BackgroundError.3
98
fi
99
if test -r Backslash.3; then
100
    rm -f Tcl_Backslash.3
101
    ln Backslash.3 Tcl_Backslash.3
102
fi
103
if test -r BoolObj.3; then
104
    rm -f Tcl_NewBooleanObj.3
105
    ln BoolObj.3 Tcl_NewBooleanObj.3
106
fi
107
if test -r BoolObj.3; then
108
    rm -f Tcl_SetBooleanObj.3
109
    ln BoolObj.3 Tcl_SetBooleanObj.3
110
fi
111
if test -r BoolObj.3; then
112
    rm -f Tcl_GetBooleanFromObj.3
113
    ln BoolObj.3 Tcl_GetBooleanFromObj.3
114
fi
115
if test -r CallDel.3; then
116
    rm -f Tcl_CallWhenDeleted.3
117
    ln CallDel.3 Tcl_CallWhenDeleted.3
118
fi
119
if test -r CallDel.3; then
120
    rm -f Tcl_DontCallWhenDeleted.3
121
    ln CallDel.3 Tcl_DontCallWhenDeleted.3
122
fi
123
if test -r CmdCmplt.3; then
124
    rm -f Tcl_CommandComplete.3
125
    ln CmdCmplt.3 Tcl_CommandComplete.3
126
fi
127
if test -r Concat.3; then
128
    rm -f Tcl_Concat.3
129
    ln Concat.3 Tcl_Concat.3
130
fi
131
if test -r CrtChannel.3; then
132
    rm -f Tcl_CreateChannel.3
133
    ln CrtChannel.3 Tcl_CreateChannel.3
134
fi
135
if test -r CrtChannel.3; then
136
    rm -f Tcl_GetChannelInstanceData.3
137
    ln CrtChannel.3 Tcl_GetChannelInstanceData.3
138
fi
139
if test -r CrtChannel.3; then
140
    rm -f Tcl_GetChannelType.3
141
    ln CrtChannel.3 Tcl_GetChannelType.3
142
fi
143
if test -r CrtChannel.3; then
144
    rm -f Tcl_GetChannelName.3
145
    ln CrtChannel.3 Tcl_GetChannelName.3
146
fi
147
if test -r CrtChannel.3; then
148
    rm -f Tcl_GetChannelHandle.3
149
    ln CrtChannel.3 Tcl_GetChannelHandle.3
150
fi
151
if test -r CrtChannel.3; then
152
    rm -f Tcl_GetChannelMode.3
153
    ln CrtChannel.3 Tcl_GetChannelMode.3
154
fi
155
if test -r CrtChannel.3; then
156
    rm -f Tcl_GetChannelBufferSize.3
157
    ln CrtChannel.3 Tcl_GetChannelBufferSize.3
158
fi
159
if test -r CrtChannel.3; then
160
    rm -f Tcl_SetDefaultTranslation.3
161
    ln CrtChannel.3 Tcl_SetDefaultTranslation.3
162
fi
163
if test -r CrtChannel.3; then
164
    rm -f Tcl_SetChannelBufferSize.3
165
    ln CrtChannel.3 Tcl_SetChannelBufferSize.3
166
fi
167
if test -r CrtChannel.3; then
168
    rm -f Tcl_NotifyChannel.3
169
    ln CrtChannel.3 Tcl_NotifyChannel.3
170
fi
171
if test -r CrtChannel.3; then
172
    rm -f Tcl_BadChannelOption.3
173
    ln CrtChannel.3 Tcl_BadChannelOption.3
174
fi
175
if test -r CrtChnlHdlr.3; then
176
    rm -f Tcl_CreateChannelHandler.3
177
    ln CrtChnlHdlr.3 Tcl_CreateChannelHandler.3
178
fi
179
if test -r CrtChnlHdlr.3; then
180
    rm -f Tcl_DeleteChannelHandler.3
181
    ln CrtChnlHdlr.3 Tcl_DeleteChannelHandler.3
182
fi
183
if test -r CrtCloseHdlr.3; then
184
    rm -f Tcl_CreateCloseHandler.3
185
    ln CrtCloseHdlr.3 Tcl_CreateCloseHandler.3
186
fi
187
if test -r CrtCloseHdlr.3; then
188
    rm -f Tcl_DeleteCloseHandler.3
189
    ln CrtCloseHdlr.3 Tcl_DeleteCloseHandler.3
190
fi
191
if test -r CrtCommand.3; then
192
    rm -f Tcl_CreateCommand.3
193
    ln CrtCommand.3 Tcl_CreateCommand.3
194
fi
195
if test -r CrtFileHdlr.3; then
196
    rm -f Tcl_CreateFileHandler.3
197
    ln CrtFileHdlr.3 Tcl_CreateFileHandler.3
198
fi
199
if test -r CrtFileHdlr.3; then
200
    rm -f Tcl_DeleteFileHandler.3
201
    ln CrtFileHdlr.3 Tcl_DeleteFileHandler.3
202
fi
203
if test -r CrtInterp.3; then
204
    rm -f Tcl_CreateInterp.3
205
    ln CrtInterp.3 Tcl_CreateInterp.3
206
fi
207
if test -r CrtInterp.3; then
208
    rm -f Tcl_DeleteInterp.3
209
    ln CrtInterp.3 Tcl_DeleteInterp.3
210
fi
211
if test -r CrtInterp.3; then
212
    rm -f Tcl_InterpDeleted.3
213
    ln CrtInterp.3 Tcl_InterpDeleted.3
214
fi
215
if test -r CrtMathFnc.3; then
216
    rm -f Tcl_CreateMathFunc.3
217
    ln CrtMathFnc.3 Tcl_CreateMathFunc.3
218
fi
219
if test -r CrtObjCmd.3; then
220
    rm -f Tcl_CreateObjCommand.3
221
    ln CrtObjCmd.3 Tcl_CreateObjCommand.3
222
fi
223
if test -r CrtObjCmd.3; then
224
    rm -f Tcl_DeleteCommand.3
225
    ln CrtObjCmd.3 Tcl_DeleteCommand.3
226
fi
227
if test -r CrtObjCmd.3; then
228
    rm -f Tcl_DeleteCommandFromToken.3
229
    ln CrtObjCmd.3 Tcl_DeleteCommandFromToken.3
230
fi
231
if test -r CrtObjCmd.3; then
232
    rm -f Tcl_GetCommandInfo.3
233
    ln CrtObjCmd.3 Tcl_GetCommandInfo.3
234
fi
235
if test -r CrtObjCmd.3; then
236
    rm -f Tcl_SetCommandInfo.3
237
    ln CrtObjCmd.3 Tcl_SetCommandInfo.3
238
fi
239
if test -r CrtObjCmd.3; then
240
    rm -f Tcl_GetCommandName.3
241
    ln CrtObjCmd.3 Tcl_GetCommandName.3
242
fi
243
if test -r CrtSlave.3; then
244
    rm -f Tcl_IsSafe.3
245
    ln CrtSlave.3 Tcl_IsSafe.3
246
fi
247
if test -r CrtSlave.3; then
248
    rm -f Tcl_MakeSafe.3
249
    ln CrtSlave.3 Tcl_MakeSafe.3
250
fi
251
if test -r CrtSlave.3; then
252
    rm -f Tcl_CreateSlave.3
253
    ln CrtSlave.3 Tcl_CreateSlave.3
254
fi
255
if test -r CrtSlave.3; then
256
    rm -f Tcl_GetSlave.3
257
    ln CrtSlave.3 Tcl_GetSlave.3
258
fi
259
if test -r CrtSlave.3; then
260
    rm -f Tcl_GetMaster.3
261
    ln CrtSlave.3 Tcl_GetMaster.3
262
fi
263
if test -r CrtSlave.3; then
264
    rm -f Tcl_GetInterpPath.3
265
    ln CrtSlave.3 Tcl_GetInterpPath.3
266
fi
267
if test -r CrtSlave.3; then
268
    rm -f Tcl_CreateAlias.3
269
    ln CrtSlave.3 Tcl_CreateAlias.3
270
fi
271
if test -r CrtSlave.3; then
272
    rm -f Tcl_CreateAliasObj.3
273
    ln CrtSlave.3 Tcl_CreateAliasObj.3
274
fi
275
if test -r CrtSlave.3; then
276
    rm -f Tcl_GetAlias.3
277
    ln CrtSlave.3 Tcl_GetAlias.3
278
fi
279
if test -r CrtSlave.3; then
280
    rm -f Tcl_GetAliasObj.3
281
    ln CrtSlave.3 Tcl_GetAliasObj.3
282
fi
283
if test -r CrtSlave.3; then
284
    rm -f Tcl_ExposeCommand.3
285
    ln CrtSlave.3 Tcl_ExposeCommand.3
286
fi
287
if test -r CrtSlave.3; then
288
    rm -f Tcl_HideCommand.3
289
    ln CrtSlave.3 Tcl_HideCommand.3
290
fi
291
if test -r CrtTimerHdlr.3; then
292
    rm -f Tcl_CreateTimerHandler.3
293
    ln CrtTimerHdlr.3 Tcl_CreateTimerHandler.3
294
fi
295
if test -r CrtTimerHdlr.3; then
296
    rm -f Tcl_DeleteTimerHandler.3
297
    ln CrtTimerHdlr.3 Tcl_DeleteTimerHandler.3
298
fi
299
if test -r CrtTrace.3; then
300
    rm -f Tcl_CreateTrace.3
301
    ln CrtTrace.3 Tcl_CreateTrace.3
302
fi
303
if test -r CrtTrace.3; then
304
    rm -f Tcl_DeleteTrace.3
305
    ln CrtTrace.3 Tcl_DeleteTrace.3
306
fi
307
if test -r DString.3; then
308
    rm -f Tcl_DStringInit.3
309
    ln DString.3 Tcl_DStringInit.3
310
fi
311
if test -r DString.3; then
312
    rm -f Tcl_DStringAppend.3
313
    ln DString.3 Tcl_DStringAppend.3
314
fi
315
if test -r DString.3; then
316
    rm -f Tcl_DStringAppendElement.3
317
    ln DString.3 Tcl_DStringAppendElement.3
318
fi
319
if test -r DString.3; then
320
    rm -f Tcl_DStringStartSublist.3
321
    ln DString.3 Tcl_DStringStartSublist.3
322
fi
323
if test -r DString.3; then
324
    rm -f Tcl_DStringEndSublist.3
325
    ln DString.3 Tcl_DStringEndSublist.3
326
fi
327
if test -r DString.3; then
328
    rm -f Tcl_DStringLength.3
329
    ln DString.3 Tcl_DStringLength.3
330
fi
331
if test -r DString.3; then
332
    rm -f Tcl_DStringValue.3
333
    ln DString.3 Tcl_DStringValue.3
334
fi
335
if test -r DString.3; then
336
    rm -f Tcl_DStringSetLength.3
337
    ln DString.3 Tcl_DStringSetLength.3
338
fi
339
if test -r DString.3; then
340
    rm -f Tcl_DStringFree.3
341
    ln DString.3 Tcl_DStringFree.3
342
fi
343
if test -r DString.3; then
344
    rm -f Tcl_DStringResult.3
345
    ln DString.3 Tcl_DStringResult.3
346
fi
347
if test -r DString.3; then
348
    rm -f Tcl_DStringGetResult.3
349
    ln DString.3 Tcl_DStringGetResult.3
350
fi
351
if test -r DetachPids.3; then
352
    rm -f Tcl_DetachPids.3
353
    ln DetachPids.3 Tcl_DetachPids.3
354
fi
355
if test -r DetachPids.3; then
356
    rm -f Tcl_ReapDetachedProcs.3
357
    ln DetachPids.3 Tcl_ReapDetachedProcs.3
358
fi
359
if test -r DoOneEvent.3; then
360
    rm -f Tcl_DoOneEvent.3
361
    ln DoOneEvent.3 Tcl_DoOneEvent.3
362
fi
363
if test -r DoWhenIdle.3; then
364
    rm -f Tcl_DoWhenIdle.3
365
    ln DoWhenIdle.3 Tcl_DoWhenIdle.3
366
fi
367
if test -r DoWhenIdle.3; then
368
    rm -f Tcl_CancelIdleCall.3
369
    ln DoWhenIdle.3 Tcl_CancelIdleCall.3
370
fi
371
if test -r DoubleObj.3; then
372
    rm -f Tcl_NewDoubleObj.3
373
    ln DoubleObj.3 Tcl_NewDoubleObj.3
374
fi
375
if test -r DoubleObj.3; then
376
    rm -f Tcl_SetDoubleObj.3
377
    ln DoubleObj.3 Tcl_SetDoubleObj.3
378
fi
379
if test -r DoubleObj.3; then
380
    rm -f Tcl_GetDoubleFromObj.3
381
    ln DoubleObj.3 Tcl_GetDoubleFromObj.3
382
fi
383
if test -r Eval.3; then
384
    rm -f Tcl_Eval.3
385
    ln Eval.3 Tcl_Eval.3
386
fi
387
if test -r Eval.3; then
388
    rm -f Tcl_VarEval.3
389
    ln Eval.3 Tcl_VarEval.3
390
fi
391
if test -r Eval.3; then
392
    rm -f Tcl_EvalFile.3
393
    ln Eval.3 Tcl_EvalFile.3
394
fi
395
if test -r Eval.3; then
396
    rm -f Tcl_GlobalEval.3
397
    ln Eval.3 Tcl_GlobalEval.3
398
fi
399
if test -r EvalObj.3; then
400
    rm -f Tcl_EvalObj.3
401
    ln EvalObj.3 Tcl_EvalObj.3
402
fi
403
if test -r EvalObj.3; then
404
    rm -f Tcl_GlobalEvalObj.3
405
    ln EvalObj.3 Tcl_GlobalEvalObj.3
406
fi
407
if test -r Exit.3; then
408
    rm -f Tcl_Exit.3
409
    ln Exit.3 Tcl_Exit.3
410
fi
411
if test -r Exit.3; then
412
    rm -f Tcl_Finalize.3
413
    ln Exit.3 Tcl_Finalize.3
414
fi
415
if test -r Exit.3; then
416
    rm -f Tcl_CreateExitHandler.3
417
    ln Exit.3 Tcl_CreateExitHandler.3
418
fi
419
if test -r Exit.3; then
420
    rm -f Tcl_DeleteExitHandler.3
421
    ln Exit.3 Tcl_DeleteExitHandler.3
422
fi
423
if test -r ExprLong.3; then
424
    rm -f Tcl_ExprLong.3
425
    ln ExprLong.3 Tcl_ExprLong.3
426
fi
427
if test -r ExprLong.3; then
428
    rm -f Tcl_ExprDouble.3
429
    ln ExprLong.3 Tcl_ExprDouble.3
430
fi
431
if test -r ExprLong.3; then
432
    rm -f Tcl_ExprBoolean.3
433
    ln ExprLong.3 Tcl_ExprBoolean.3
434
fi
435
if test -r ExprLong.3; then
436
    rm -f Tcl_ExprString.3
437
    ln ExprLong.3 Tcl_ExprString.3
438
fi
439
if test -r ExprLongObj.3; then
440
    rm -f Tcl_ExprLongObj.3
441
    ln ExprLongObj.3 Tcl_ExprLongObj.3
442
fi
443
if test -r ExprLongObj.3; then
444
    rm -f Tcl_ExprDoubleObj.3
445
    ln ExprLongObj.3 Tcl_ExprDoubleObj.3
446
fi
447
if test -r ExprLongObj.3; then
448
    rm -f Tcl_ExprBooleanObj.3
449
    ln ExprLongObj.3 Tcl_ExprBooleanObj.3
450
fi
451
if test -r ExprLongObj.3; then
452
    rm -f Tcl_ExprObj.3
453
    ln ExprLongObj.3 Tcl_ExprObj.3
454
fi
455
if test -r FindExec.3; then
456
    rm -f Tcl_FindExecutable.3
457
    ln FindExec.3 Tcl_FindExecutable.3
458
fi
459
if test -r FindExec.3; then
460
    rm -f Tcl_GetNameOfExecutable.3
461
    ln FindExec.3 Tcl_GetNameOfExecutable.3
462
fi
463
if test -r GetIndex.3; then
464
    rm -f Tcl_GetIndexFromObj.3
465
    ln GetIndex.3 Tcl_GetIndexFromObj.3
466
fi
467
if test -r GetInt.3; then
468
    rm -f Tcl_GetInt.3
469
    ln GetInt.3 Tcl_GetInt.3
470
fi
471
if test -r GetInt.3; then
472
    rm -f Tcl_GetDouble.3
473
    ln GetInt.3 Tcl_GetDouble.3
474
fi
475
if test -r GetInt.3; then
476
    rm -f Tcl_GetBoolean.3
477
    ln GetInt.3 Tcl_GetBoolean.3
478
fi
479
if test -r GetOpnFl.3; then
480
    rm -f Tcl_GetOpenFile.3
481
    ln GetOpnFl.3 Tcl_GetOpenFile.3
482
fi
483
if test -r GetStdChan.3; then
484
    rm -f Tcl_GetStdChannel.3
485
    ln GetStdChan.3 Tcl_GetStdChannel.3
486
fi
487
if test -r GetStdChan.3; then
488
    rm -f Tcl_SetStdChannel.3
489
    ln GetStdChan.3 Tcl_SetStdChannel.3
490
fi
491
if test -r Hash.3; then
492
    rm -f Tcl_InitHashTable.3
493
    ln Hash.3 Tcl_InitHashTable.3
494
fi
495
if test -r Hash.3; then
496
    rm -f Tcl_DeleteHashTable.3
497
    ln Hash.3 Tcl_DeleteHashTable.3
498
fi
499
if test -r Hash.3; then
500
    rm -f Tcl_CreateHashEntry.3
501
    ln Hash.3 Tcl_CreateHashEntry.3
502
fi
503
if test -r Hash.3; then
504
    rm -f Tcl_DeleteHashEntry.3
505
    ln Hash.3 Tcl_DeleteHashEntry.3
506
fi
507
if test -r Hash.3; then
508
    rm -f Tcl_FindHashEntry.3
509
    ln Hash.3 Tcl_FindHashEntry.3
510
fi
511
if test -r Hash.3; then
512
    rm -f Tcl_GetHashValue.3
513
    ln Hash.3 Tcl_GetHashValue.3
514
fi
515
if test -r Hash.3; then
516
    rm -f Tcl_SetHashValue.3
517
    ln Hash.3 Tcl_SetHashValue.3
518
fi
519
if test -r Hash.3; then
520
    rm -f Tcl_GetHashKey.3
521
    ln Hash.3 Tcl_GetHashKey.3
522
fi
523
if test -r Hash.3; then
524
    rm -f Tcl_FirstHashEntry.3
525
    ln Hash.3 Tcl_FirstHashEntry.3
526
fi
527
if test -r Hash.3; then
528
    rm -f Tcl_NextHashEntry.3
529
    ln Hash.3 Tcl_NextHashEntry.3
530
fi
531
if test -r Hash.3; then
532
    rm -f Tcl_HashStats.3
533
    ln Hash.3 Tcl_HashStats.3
534
fi
535
if test -r IntObj.3; then
536
    rm -f Tcl_NewIntObj.3
537
    ln IntObj.3 Tcl_NewIntObj.3
538
fi
539
if test -r IntObj.3; then
540
    rm -f Tcl_NewLongObj.3
541
    ln IntObj.3 Tcl_NewLongObj.3
542
fi
543
if test -r IntObj.3; then
544
    rm -f Tcl_SetIntObj.3
545
    ln IntObj.3 Tcl_SetIntObj.3
546
fi
547
if test -r IntObj.3; then
548
    rm -f Tcl_SetLongObj.3
549
    ln IntObj.3 Tcl_SetLongObj.3
550
fi
551
if test -r IntObj.3; then
552
    rm -f Tcl_GetIntFromObj.3
553
    ln IntObj.3 Tcl_GetIntFromObj.3
554
fi
555
if test -r IntObj.3; then
556
    rm -f Tcl_GetLongFromObj.3
557
    ln IntObj.3 Tcl_GetLongFromObj.3
558
fi
559
if test -r Interp.3; then
560
    rm -f Tcl_Interp.3
561
    ln Interp.3 Tcl_Interp.3
562
fi
563
if test -r LinkVar.3; then
564
    rm -f Tcl_LinkVar.3
565
    ln LinkVar.3 Tcl_LinkVar.3
566
fi
567
if test -r LinkVar.3; then
568
    rm -f Tcl_UnlinkVar.3
569
    ln LinkVar.3 Tcl_UnlinkVar.3
570
fi
571
if test -r LinkVar.3; then
572
    rm -f Tcl_UpdateLinkedVar.3
573
    ln LinkVar.3 Tcl_UpdateLinkedVar.3
574
fi
575
if test -r ListObj.3; then
576
    rm -f Tcl_ListObjAppendList.3
577
    ln ListObj.3 Tcl_ListObjAppendList.3
578
fi
579
if test -r ListObj.3; then
580
    rm -f Tcl_ListObjAppendElement.3
581
    ln ListObj.3 Tcl_ListObjAppendElement.3
582
fi
583
if test -r ListObj.3; then
584
    rm -f Tcl_NewListObj.3
585
    ln ListObj.3 Tcl_NewListObj.3
586
fi
587
if test -r ListObj.3; then
588
    rm -f Tcl_SetListObj.3
589
    ln ListObj.3 Tcl_SetListObj.3
590
fi
591
if test -r ListObj.3; then
592
    rm -f Tcl_ListObjGetElements.3
593
    ln ListObj.3 Tcl_ListObjGetElements.3
594
fi
595
if test -r ListObj.3; then
596
    rm -f Tcl_ListObjLength.3
597
    ln ListObj.3 Tcl_ListObjLength.3
598
fi
599
if test -r ListObj.3; then
600
    rm -f Tcl_ListObjIndex.3
601
    ln ListObj.3 Tcl_ListObjIndex.3
602
fi
603
if test -r ListObj.3; then
604
    rm -f Tcl_ListObjReplace.3
605
    ln ListObj.3 Tcl_ListObjReplace.3
606
fi
607
if test -r Notifier.3; then
608
    rm -f Tcl_CreateEventSource.3
609
    ln Notifier.3 Tcl_CreateEventSource.3
610
fi
611
if test -r Notifier.3; then
612
    rm -f Tcl_DeleteEventSource.3
613
    ln Notifier.3 Tcl_DeleteEventSource.3
614
fi
615
if test -r Notifier.3; then
616
    rm -f Tcl_SetMaxBlockTime.3
617
    ln Notifier.3 Tcl_SetMaxBlockTime.3
618
fi
619
if test -r Notifier.3; then
620
    rm -f Tcl_QueueEvent.3
621
    ln Notifier.3 Tcl_QueueEvent.3
622
fi
623
if test -r Notifier.3; then
624
    rm -f Tcl_DeleteEvents.3
625
    ln Notifier.3 Tcl_DeleteEvents.3
626
fi
627
if test -r Notifier.3; then
628
    rm -f Tcl_WaitForEvent.3
629
    ln Notifier.3 Tcl_WaitForEvent.3
630
fi
631
if test -r Notifier.3; then
632
    rm -f Tcl_SetTimer.3
633
    ln Notifier.3 Tcl_SetTimer.3
634
fi
635
if test -r Notifier.3; then
636
    rm -f Tcl_ServiceAll.3
637
    ln Notifier.3 Tcl_ServiceAll.3
638
fi
639
if test -r Notifier.3; then
640
    rm -f Tcl_ServiceEvent.3
641
    ln Notifier.3 Tcl_ServiceEvent.3
642
fi
643
if test -r Notifier.3; then
644
    rm -f Tcl_GetServiceMode.3
645
    ln Notifier.3 Tcl_GetServiceMode.3
646
fi
647
if test -r Notifier.3; then
648
    rm -f Tcl_SetServiceMode.3
649
    ln Notifier.3 Tcl_SetServiceMode.3
650
fi
651
if test -r ObjSetVar.3; then
652
    rm -f Tcl_ObjSetVar2.3
653
    ln ObjSetVar.3 Tcl_ObjSetVar2.3
654
fi
655
if test -r ObjSetVar.3; then
656
    rm -f Tcl_ObjGetVar2.3
657
    ln ObjSetVar.3 Tcl_ObjGetVar2.3
658
fi
659
if test -r Object.3; then
660
    rm -f Tcl_NewObj.3
661
    ln Object.3 Tcl_NewObj.3
662
fi
663
if test -r Object.3; then
664
    rm -f Tcl_DuplicateObj.3
665
    ln Object.3 Tcl_DuplicateObj.3
666
fi
667
if test -r Object.3; then
668
    rm -f Tcl_IncrRefCount.3
669
    ln Object.3 Tcl_IncrRefCount.3
670
fi
671
if test -r Object.3; then
672
    rm -f Tcl_DecrRefCount.3
673
    ln Object.3 Tcl_DecrRefCount.3
674
fi
675
if test -r Object.3; then
676
    rm -f Tcl_IsShared.3
677
    ln Object.3 Tcl_IsShared.3
678
fi
679
if test -r ObjectType.3; then
680
    rm -f Tcl_RegisterObjType.3
681
    ln ObjectType.3 Tcl_RegisterObjType.3
682
fi
683
if test -r ObjectType.3; then
684
    rm -f Tcl_GetObjType.3
685
    ln ObjectType.3 Tcl_GetObjType.3
686
fi
687
if test -r ObjectType.3; then
688
    rm -f Tcl_AppendAllObjTypes.3
689
    ln ObjectType.3 Tcl_AppendAllObjTypes.3
690
fi
691
if test -r ObjectType.3; then
692
    rm -f Tcl_ConvertToType.3
693
    ln ObjectType.3 Tcl_ConvertToType.3
694
fi
695
if test -r OpenFileChnl.3; then
696
    rm -f Tcl_OpenFileChannel.3
697
    ln OpenFileChnl.3 Tcl_OpenFileChannel.3
698
fi
699
if test -r OpenFileChnl.3; then
700
    rm -f Tcl_OpenCommandChannel.3
701
    ln OpenFileChnl.3 Tcl_OpenCommandChannel.3
702
fi
703
if test -r OpenFileChnl.3; then
704
    rm -f Tcl_MakeFileChannel.3
705
    ln OpenFileChnl.3 Tcl_MakeFileChannel.3
706
fi
707
if test -r OpenFileChnl.3; then
708
    rm -f Tcl_GetChannel.3
709
    ln OpenFileChnl.3 Tcl_GetChannel.3
710
fi
711
if test -r OpenFileChnl.3; then
712
    rm -f Tcl_RegisterChannel.3
713
    ln OpenFileChnl.3 Tcl_RegisterChannel.3
714
fi
715
if test -r OpenFileChnl.3; then
716
    rm -f Tcl_UnregisterChannel.3
717
    ln OpenFileChnl.3 Tcl_UnregisterChannel.3
718
fi
719
if test -r OpenFileChnl.3; then
720
    rm -f Tcl_Close.3
721
    ln OpenFileChnl.3 Tcl_Close.3
722
fi
723
if test -r OpenFileChnl.3; then
724
    rm -f Tcl_Read.3
725
    ln OpenFileChnl.3 Tcl_Read.3
726
fi
727
if test -r OpenFileChnl.3; then
728
    rm -f Tcl_Gets.3
729
    ln OpenFileChnl.3 Tcl_Gets.3
730
fi
731
if test -r OpenFileChnl.3; then
732
    rm -f Tcl_Write.3
733
    ln OpenFileChnl.3 Tcl_Write.3
734
fi
735
if test -r OpenFileChnl.3; then
736
    rm -f Tcl_Flush.3
737
    ln OpenFileChnl.3 Tcl_Flush.3
738
fi
739
if test -r OpenFileChnl.3; then
740
    rm -f Tcl_Seek.3
741
    ln OpenFileChnl.3 Tcl_Seek.3
742
fi
743
if test -r OpenFileChnl.3; then
744
    rm -f Tcl_Tell.3
745
    ln OpenFileChnl.3 Tcl_Tell.3
746
fi
747
if test -r OpenFileChnl.3; then
748
    rm -f Tcl_Eof.3
749
    ln OpenFileChnl.3 Tcl_Eof.3
750
fi
751
if test -r OpenFileChnl.3; then
752
    rm -f Tcl_InputBlocked.3
753
    ln OpenFileChnl.3 Tcl_InputBlocked.3
754
fi
755
if test -r OpenFileChnl.3; then
756
    rm -f Tcl_InputBuffered.3
757
    ln OpenFileChnl.3 Tcl_InputBuffered.3
758
fi
759
if test -r OpenFileChnl.3; then
760
    rm -f Tcl_GetChannelOption.3
761
    ln OpenFileChnl.3 Tcl_GetChannelOption.3
762
fi
763
if test -r OpenFileChnl.3; then
764
    rm -f Tcl_SetChannelOption.3
765
    ln OpenFileChnl.3 Tcl_SetChannelOption.3
766
fi
767
if test -r OpenTcp.3; then
768
    rm -f Tcl_OpenTcpClient.3
769
    ln OpenTcp.3 Tcl_OpenTcpClient.3
770
fi
771
if test -r OpenTcp.3; then
772
    rm -f Tcl_MakeTcpClientChannel.3
773
    ln OpenTcp.3 Tcl_MakeTcpClientChannel.3
774
fi
775
if test -r OpenTcp.3; then
776
    rm -f Tcl_OpenTcpServer.3
777
    ln OpenTcp.3 Tcl_OpenTcpServer.3
778
fi
779
if test -r PkgRequire.3; then
780
    rm -f Tcl_PkgRequire.3
781
    ln PkgRequire.3 Tcl_PkgRequire.3
782
fi
783
if test -r PkgRequire.3; then
784
    rm -f Tcl_PkgProvide.3
785
    ln PkgRequire.3 Tcl_PkgProvide.3
786
fi
787
if test -r Preserve.3; then
788
    rm -f Tcl_Preserve.3
789
    ln Preserve.3 Tcl_Preserve.3
790
fi
791
if test -r Preserve.3; then
792
    rm -f Tcl_Release.3
793
    ln Preserve.3 Tcl_Release.3
794
fi
795
if test -r Preserve.3; then
796
    rm -f Tcl_EventuallyFree.3
797
    ln Preserve.3 Tcl_EventuallyFree.3
798
fi
799
if test -r PrintDbl.3; then
800
    rm -f Tcl_PrintDouble.3
801
    ln PrintDbl.3 Tcl_PrintDouble.3
802
fi
803
if test -r RecEvalObj.3; then
804
    rm -f Tcl_RecordAndEvalObj.3
805
    ln RecEvalObj.3 Tcl_RecordAndEvalObj.3
806
fi
807
if test -r RecordEval.3; then
808
    rm -f Tcl_RecordAndEval.3
809
    ln RecordEval.3 Tcl_RecordAndEval.3
810
fi
811
if test -r RegExp.3; then
812
    rm -f Tcl_RegExpMatch.3
813
    ln RegExp.3 Tcl_RegExpMatch.3
814
fi
815
if test -r RegExp.3; then
816
    rm -f Tcl_RegExpCompile.3
817
    ln RegExp.3 Tcl_RegExpCompile.3
818
fi
819
if test -r RegExp.3; then
820
    rm -f Tcl_RegExpExec.3
821
    ln RegExp.3 Tcl_RegExpExec.3
822
fi
823
if test -r RegExp.3; then
824
    rm -f Tcl_RegExpRange.3
825
    ln RegExp.3 Tcl_RegExpRange.3
826
fi
827
if test -r SetErrno.3; then
828
    rm -f Tcl_SetErrno.3
829
    ln SetErrno.3 Tcl_SetErrno.3
830
fi
831
if test -r SetErrno.3; then
832
    rm -f Tcl_GetErrno.3
833
    ln SetErrno.3 Tcl_GetErrno.3
834
fi
835
if test -r SetRecLmt.3; then
836
    rm -f Tcl_SetRecursionLimit.3
837
    ln SetRecLmt.3 Tcl_SetRecursionLimit.3
838
fi
839
if test -r SetResult.3; then
840
    rm -f Tcl_SetObjResult.3
841
    ln SetResult.3 Tcl_SetObjResult.3
842
fi
843
if test -r SetResult.3; then
844
    rm -f Tcl_GetObjResult.3
845
    ln SetResult.3 Tcl_GetObjResult.3
846
fi
847
if test -r SetResult.3; then
848
    rm -f Tcl_SetResult.3
849
    ln SetResult.3 Tcl_SetResult.3
850
fi
851
if test -r SetResult.3; then
852
    rm -f Tcl_GetStringResult.3
853
    ln SetResult.3 Tcl_GetStringResult.3
854
fi
855
if test -r SetResult.3; then
856
    rm -f Tcl_AppendResult.3
857
    ln SetResult.3 Tcl_AppendResult.3
858
fi
859
if test -r SetResult.3; then
860
    rm -f Tcl_AppendElement.3
861
    ln SetResult.3 Tcl_AppendElement.3
862
fi
863
if test -r SetResult.3; then
864
    rm -f Tcl_ResetResult.3
865
    ln SetResult.3 Tcl_ResetResult.3
866
fi
867
if test -r SetVar.3; then
868
    rm -f Tcl_SetVar.3
869
    ln SetVar.3 Tcl_SetVar.3
870
fi
871
if test -r SetVar.3; then
872
    rm -f Tcl_SetVar2.3
873
    ln SetVar.3 Tcl_SetVar2.3
874
fi
875
if test -r SetVar.3; then
876
    rm -f Tcl_GetVar.3
877
    ln SetVar.3 Tcl_GetVar.3
878
fi
879
if test -r SetVar.3; then
880
    rm -f Tcl_GetVar2.3
881
    ln SetVar.3 Tcl_GetVar2.3
882
fi
883
if test -r SetVar.3; then
884
    rm -f Tcl_UnsetVar.3
885
    ln SetVar.3 Tcl_UnsetVar.3
886
fi
887
if test -r SetVar.3; then
888
    rm -f Tcl_UnsetVar2.3
889
    ln SetVar.3 Tcl_UnsetVar2.3
890
fi
891
if test -r Sleep.3; then
892
    rm -f Tcl_Sleep.3
893
    ln Sleep.3 Tcl_Sleep.3
894
fi
895
if test -r SplitList.3; then
896
    rm -f Tcl_SplitList.3
897
    ln SplitList.3 Tcl_SplitList.3
898
fi
899
if test -r SplitList.3; then
900
    rm -f Tcl_Merge.3
901
    ln SplitList.3 Tcl_Merge.3
902
fi
903
if test -r SplitList.3; then
904
    rm -f Tcl_ScanElement.3
905
    ln SplitList.3 Tcl_ScanElement.3
906
fi
907
if test -r SplitList.3; then
908
    rm -f Tcl_ConvertElement.3
909
    ln SplitList.3 Tcl_ConvertElement.3
910
fi
911
if test -r SplitPath.3; then
912
    rm -f Tcl_SplitPath.3
913
    ln SplitPath.3 Tcl_SplitPath.3
914
fi
915
if test -r SplitPath.3; then
916
    rm -f Tcl_JoinPath.3
917
    ln SplitPath.3 Tcl_JoinPath.3
918
fi
919
if test -r SplitPath.3; then
920
    rm -f Tcl_GetPathType.3
921
    ln SplitPath.3 Tcl_GetPathType.3
922
fi
923
if test -r StaticPkg.3; then
924
    rm -f Tcl_StaticPackage.3
925
    ln StaticPkg.3 Tcl_StaticPackage.3
926
fi
927
if test -r StrMatch.3; then
928
    rm -f Tcl_StringMatch.3
929
    ln StrMatch.3 Tcl_StringMatch.3
930
fi
931
if test -r StringObj.3; then
932
    rm -f Tcl_NewStringObj.3
933
    ln StringObj.3 Tcl_NewStringObj.3
934
fi
935
if test -r StringObj.3; then
936
    rm -f Tcl_SetStringObj.3
937
    ln StringObj.3 Tcl_SetStringObj.3
938
fi
939
if test -r StringObj.3; then
940
    rm -f Tcl_GetStringFromObj.3
941
    ln StringObj.3 Tcl_GetStringFromObj.3
942
fi
943
if test -r StringObj.3; then
944
    rm -f Tcl_AppendToObj.3
945
    ln StringObj.3 Tcl_AppendToObj.3
946
fi
947
if test -r StringObj.3; then
948
    rm -f Tcl_AppendStringsToObj.3
949
    ln StringObj.3 Tcl_AppendStringsToObj.3
950
fi
951
if test -r StringObj.3; then
952
    rm -f Tcl_SetObjLength.3
953
    ln StringObj.3 Tcl_SetObjLength.3
954
fi
955
if test -r StringObj.3; then
956
    rm -f TclConcatObj.3
957
    ln StringObj.3 TclConcatObj.3
958
fi
959
if test -r TraceVar.3; then
960
    rm -f Tcl_TraceVar.3
961
    ln TraceVar.3 Tcl_TraceVar.3
962
fi
963
if test -r TraceVar.3; then
964
    rm -f Tcl_TraceVar2.3
965
    ln TraceVar.3 Tcl_TraceVar2.3
966
fi
967
if test -r TraceVar.3; then
968
    rm -f Tcl_UntraceVar.3
969
    ln TraceVar.3 Tcl_UntraceVar.3
970
fi
971
if test -r TraceVar.3; then
972
    rm -f Tcl_UntraceVar2.3
973
    ln TraceVar.3 Tcl_UntraceVar2.3
974
fi
975
if test -r TraceVar.3; then
976
    rm -f Tcl_VarTraceInfo.3
977
    ln TraceVar.3 Tcl_VarTraceInfo.3
978
fi
979
if test -r TraceVar.3; then
980
    rm -f Tcl_VarTraceInfo2.3
981
    ln TraceVar.3 Tcl_VarTraceInfo2.3
982
fi
983
if test -r Translate.3; then
984
    rm -f Tcl_TranslateFileName.3
985
    ln Translate.3 Tcl_TranslateFileName.3
986
fi
987
if test -r UpVar.3; then
988
    rm -f Tcl_UpVar.3
989
    ln UpVar.3 Tcl_UpVar.3
990
fi
991
if test -r UpVar.3; then
992
    rm -f Tcl_UpVar2.3
993
    ln UpVar.3 Tcl_UpVar2.3
994
fi
995
if test -r WrongNumArgs.3; then
996
    rm -f Tcl_WrongNumArgs.3
997
    ln WrongNumArgs.3 Tcl_WrongNumArgs.3
998
fi
999
if test -r http.n; then
1000
    rm -f Http.n
1001
    ln http.n Http.n
1002
fi
1003
if test -r pkgMkIndex.n; then
1004
    rm -f pkg_mkIndex.n
1005
    ln pkgMkIndex.n pkg_mkIndex.n
1006
fi
1007
if test -r safe.n; then
1008
    rm -f SafeBase.n
1009
    ln safe.n SafeBase.n
1010
fi
1011
exit 0

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.