-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.c
817 lines (699 loc) · 23.6 KB
/
main.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
/*****
** ** Module Header ******************************************************* **
** **
** Modules Revision 3.0 **
** Providing a flexible user environment **
** **
** File: main.c **
** First Edition: 1991/10/23 **
** **
** Authors: John Furlan, jlf@behere.com **
** Jens Hamisch, jens@Strawberry.COM **
** **
** Description: The main routine of Tcl Modules including all of **
** the global data. **
** **
** Exports: main Main program **
** module_usage Module usage information **
** Tcl_AppInit Tcl Application initialization **
** **
** Notes: **
** **
** ************************************************************************ **
****/
/** ** Copyright *********************************************************** **
** **
** Copyright 1991-1994 by John L. Furlan. **
** see LICENSE.GPL, which must be provided, for details **
** **
** ************************************************************************ **/
static char Id[] = "@(#)$Id: 938a2d20aaa98af116c70f9d7fc4b5708e417231 $";
static void *UseId[] = { &UseId, Id };
/** ************************************************************************ **/
/** HEADERS **/
/** ************************************************************************ **/
#include "modules_def.h"
#include "getopt.h"
/** ************************************************************************ **/
/** LOCAL DATATYPES **/
/** ************************************************************************ **/
/** not applicable **/
/** ************************************************************************ **/
/** CONSTANTS **/
/** ************************************************************************ **/
/** not applicable **/
/** ************************************************************************ **/
/** MACROS **/
/** ************************************************************************ **/
/** not applicable **/
/** ************************************************************************ **/
/** GLOBAL DATA **/
/** ************************************************************************ **/
char *g_current_module = NULL, /** The module which is handled by **/
/** the current command **/
*g_specified_module = NULL, /** The module that was specified **/
/** on the command line **/
*g_module_path = NULL, /** The path to the module **/
*shell_name, /** Name of the shell **/
/** (first parameter to modulcmd) **/
*shell_derelict, /** Shell family (sh, csh, etc) **/
*shell_init, /** Shell init script name **/
*shell_cmd_separator; /** Shell command separator char **/
int g_flags = 0, /** Control what to do at the moment **/
/** The posible values are defined in**/
/** module_def.h **/
g_retval = 0, /** exit return value **/
g_output = 0, /** Has output been generated **/
append_flag = 0; /** only used by the 'use' command **/
char _default[] = "default"; /** id string for default versions **/
char _colon[] = ":"; /** directory separator **/
/**
** Name of the rc files
** PREFIX points to the location where modules is going to be installed.
** It comes from the Makefile
**/
char *instpath = PREFIX,
*rc_file = RCFILE,
*modulerc_file = MODULERCFILE,
*version_file = VERSIONFILE;
/**
** pointers for regular expression evaluations
**/
char
*addRE = "^(add|load)", /** 'module add <file>' **/
*rmRE = "^(rm|del|era|remov|unload)", /** 'module unload <file>' **/
*swRE = "^sw", /** 'module switch <file>' **/
*dispRE = "^(disp|show)", /** 'module display <file>' **/
*listRE = "^li", /** 'module list <file>' **/
*availRE = "^av", /** 'module avail <file>' **/
*helpRE = "^(help|\\?)", /** 'module help <file>' **/
*initRE = "^init", /** 'module init' **/
*useRE = "^use", /** 'module use <file>' **/
*unuseRE = "^unuse", /** 'module unuse <file>' **/
*updateRE = "^update", /** 'module update' **/
*purgeRE = "^purge", /** 'module purge' **/
*clearRE = "^clear", /** 'module clear' **/
*whatisRE = "^wh", /** 'module whatis' **/
*aproposRE = "^(apr|key)", /** 'module apropos' **/
*refreshRE = "^refr"; /** 'module refresh' **/
/**
** Hash-Tables for all changes to the environment.
** ??? What do we save here, the old or the new setup ???
**/
Tcl_HashTable *setenvHashTable,
*unsetenvHashTable,
*aliasSetHashTable,
*aliasUnsetHashTable,
*markVariableHashTable,
*markAliasHashTable;
/**
** A buffer for reading a single line
**/
char *line = NULL;
/**
** Flags influenced by the command line switches
**/
int sw_force = 0,
sw_detach = 0,
sw_format = 0,
sw_verbose = 0,
sw_create = 0,
sw_userlvl = UL_ADVANCED,
sw_icase = 0;
/** ************************************************************************ **/
/** LOCAL DATA **/
/** ************************************************************************ **/
static char module_name[] = "main.c"; /** File name of this module **/
#if WITH_DEBUGGING
static char _proc_main[] = "main";
#endif /* WITH_DEBUGGING */
#if WITH_DEBUGGING_MODULECMD
static char _proc_Module_Usage[] = "Module_Usage";
#endif /* WITH_DEBUGGING_MODULECMD */
#if WITH_DEBUGGING_INIT
static char _proc_Check_Switches[] = "Check_Switches";
static char _proc_Tcl_AppInit[] = "Tcl_AppInit";
#endif /* WITH_DEBUGGING_INIT */
/** ************************************************************************ **/
/** PROTOTYPES **/
/** ************************************************************************ **/
static int Check_Switches(int *argc, char *argv[]);
static void version(FILE *output);
/*++++
** ** Function-Header ***************************************************** **
** **
** Function: main **
** **
** Description: Main program **
** **
** First Edition: 1991/10/23 **
** **
** Parameters: int argc Number of parameters **
** char *argv[] Command line arguments **
** char *environ[] Pointer to the process' en- **
** vironment. **
** Result: int 1 Usage information printed **
** TCL_OK Successful completion **
** other Return value of the module **
** subcomand **
** **
** Attached Globals: *Ptr by InitializeTcl **
** *HashTable by InitializeTcl **
** **
** ************************************************************************ **
++++*/
/* since when does 'main()' take three arguments? */
int main(int argc, char *argv[], char *environ[]) {
Tcl_Interp *interp;
int return_val = 0;
char *rc_name;
char *rc_path;
#if WITH_DEBUGGING
ErrorLogger(NO_ERR_START, LOC, _proc_main, NULL);
#endif /* WITH_DEBUGGING */
/**
** check if first argument is --version or -V then output the
** version to stdout. This is a special circumstance handled
** by the regular options.
**/
if ((argc > 1) && (*argv[1] == '-')) {
if ((!strcmp("-V", argv[1])) || (!strcmp("--version", argv[1]))) {
version(stdout);
return 0;
}
}
/**
** Initialization.
** Check the command line syntax. There will be no return from the
** initialization function in case of invalid command line arguments.
**/
if (TCL_OK != Initialize_Tcl(&interp, argc, argv, environ)) {
goto unwind0;
}
if (TCL_OK != Setup_Environment(interp)) {
goto unwind0;
}
/**
** Check for command line switches
**/
if (TCL_OK != Check_Switches(&argc, argv)) {
goto unwind0;
}
/**
** Figure out, which global RC file to use. This depends on the environ-
** ment variable 'MODULERCFILE', which can be set to one of the following:
**
** <filename> --> PREFIX/etc/<filename>
** <dir>/ --> <dir>/RC_FILE
** <dir>/<file> --> <dir>/<file>
** Use xgetenv to expand 1 level of env.vars.
**/
if ((rc_name = xgetenv("MODULERCFILE"))) {
/* found something in MODULERCFILE */
if ((char *)NULL == (rc_path = stringer(NULL, 0, rc_name, NULL))) {
if (OK != ErrorLogger(ERR_STRING, LOC, NULL)) {
goto unwind1;
} else {
null_free((void *)&rc_name);
}
} else {
null_free((void *)&rc_name);
if ((char *)NULL == (rc_name = strrchr(rc_path, '/'))) {
rc_name = rc_path;
rc_path = instpath;
} else {
*rc_name++ = '\0';
}
if (!*rc_name) {
rc_name = rc_file;
}
}
} else {
rc_path = instpath;
null_free((void *)&rc_name);
rc_name = rc_file;
}
/**
** Finally we have to change PREFIX -> PREFIX/etc
**/
if (rc_path == instpath) {
if ((char *)NULL == (rc_path = stringer(NULL, 0, instpath,
"/etc", NULL))) {
if (OK != ErrorLogger(ERR_ALLOC, LOC, NULL)) {
goto unwind1;
} else {
rc_path = NULL;
}
}
}
/**
** Source the global and the user defined RC file
**/
g_current_module = (char *)NULL;
if ((TCL_ERROR == SourceRC(interp, rc_path, rc_name)) ||
(TCL_ERROR == SourceRC(interp, getenv("HOME"), modulerc_file))) {
exit(1);
}
if (rc_path) {
null_free((void *)&rc_path);
}
/**
** Invocation of the module command as specified in the command line
**/
g_flags = 0;
return_val = cmdModule((ClientData)0, interp, (argc - 1),
(CONST84 char **)(argv + 1));
/**
** If we were doing some operation that has already flushed its output,
** then we do NOT need to re-flush the output here.
**
** Also, if we have had an error here, then the whole modulecmd failed
** and not just the values for a single modulefile. So, we shall pass in
** a NULL here to indicate that any error message should say that
** absolutely NO changes were made to the environment.
**/
if (TCL_OK == return_val) {
Output_Modulefile_Changes(interp);
#ifdef HAS_X11LIBS
xresourceFinish(1);
#endif /* HAS_X11LIBS */
} else {
Unwind_Modulefile_Changes(interp, NULL);
#ifdef HAS_X11LIBS
xresourceFinish(0);
#endif /* HAS_X11LIBS */
}
/**
** Finally clean up. Delete the required hash tables and conditionally
** allocated areas.
**/
Delete_Global_Hash_Tables();
if (line) {
null_free((void *)&line);
}
if (error_line) {
null_free((void *)&error_line);
}
/**
** This return value may be evaluated by the calling shell:
**/
#if WITH_DEBUGGING
ErrorLogger(NO_ERR_END, LOC, _proc_main, NULL);
#endif /* WITH_DEBUGGING */
OutputExit();
return (return_val ? return_val : g_retval);
goto unwind2;
unwind2:
null_free((void *)&rc_path);
unwind1:
null_free((void *)&rc_name);
unwind0:
/* an error occurred of some type */
g_retval = (g_retval ? g_retval : 1);
OutputExit();
return (g_retval);
} /** End of 'main' **/
/*++++
** ** Function-Header ***************************************************** **
** **
** Function: module_usage **
** **
** Description: Lists out the helpful usage info that we've all come **
** to expect from unix commands. **
** **
** First Edition: 2002/10/13 **
** **
** Parameters: FILE *output Where the output goes **
** **
** Result: void No return values **
** **
** Attached Globals: **
** version_string Current module version **
** date_string Current module date **
** **
** ************************************************************************ **
++++*/
void module_usage(FILE *output)
{
/**
** General help wanted.
**/
#if WITH_DEBUGGING_MODULECMD
ErrorLogger(NO_ERR_START, LOC, _proc_Module_Usage, NULL);
#endif /* WITH_DEBUGGING_MODULECMD */
fprintf(output,
"\n Modules Release %s %s (Copyright GNU GPL v2 1991):\n\n",
version_string,date_string);
fprintf(output,
" Usage: module [ switches ] [ subcommand ] [subcommand-args ]\n\n"
"Switches:\n"
" -H|--help this usage info\n"
" -V|--version modules version & configuration options\n"
" -f|--force force active dependency resolution\n"
" -t|--terse terse format avail and list format\n"
" -l|--long long format avail and list format\n"
" -h|--human readable format avail and list format\n"
" -v|--verbose enable verbose messages\n"
" -s|--silent disable verbose messages\n"
" -c|--create create caches for avail and apropos\n"
" -i|--icase case insensitive\n"
" -u|--userlvl <lvl> set user level to (nov[ice],exp[ert],adv[anced])\n"
" Available SubCommands and Args:\n"
" + add|load modulefile [modulefile ...]\n"
" + rm|unload modulefile [modulefile ...]\n"
" + switch|swap [modulefile1] modulefile2\n"
" + display|show modulefile [modulefile ...]\n"
" + avail [modulefile [modulefile ...]]\n"
" + use [-a|--append] dir [dir ...]\n"
" + unuse dir [dir ...]\n"
#ifdef BEGINENV
" + update\n"
#endif /* BEGINENV */
" + refresh\n"
" + purge\n"
" + list\n"
" + clear\n"
" + help [modulefile [modulefile ...]]\n"
" + whatis [modulefile [modulefile ...]]\n"
" + apropos|keyword string\n"
" + initadd modulefile [modulefile ...]\n"
" + initprepend modulefile [modulefile ...]\n"
" + initrm modulefile [modulefile ...]\n"
" + initswitch modulefile1 modulefile2\n"
" + initlist\n"
" + initclear\n\n");
/* this string is too long... */
} /** End of 'module_usage' **/
/*++++
** ** Function-Header ***************************************************** **
** **
** Function: Tcl_AppInit **
** **
** Description: This is needed if you use shared TCL libraries. **
** It won't be called, but the linker complains if it **
** doesn't exist. **
** **
** First Edition: 1991/10/23 **
** **
** Parameters: Tcl_Interp *interp Tcl interpreter to **
** be initialized **
** Result: int TCL_OK Initialization succ. **
** Attached Globals: - **
** **
** ************************************************************************ **
++++*/
int Tcl_AppInit(Tcl_Interp *interp)
{
#if WITH_DEBUGGING_INIT
ErrorLogger( NO_ERR_START, LOC, _proc_Tcl_AppInit, NULL);
#endif
return( TCL_OK);
} /** End of 'Tcl_AppInit' **/
/*++++
** ** Function-Header ***************************************************** **
** **
** Function: Check_Switches **
** **
** Description: Check for command line switches and set internal **
** control variable according to them. Command line **
** switches are defined to appear between the shell and **
** the module command. They begin on a dash and may **
** appear in long and short format. **
** **
** The following switches are defined: **
** **
** --force, -f Force prerequired actions **
** --terse, -t Terse, parseable messages **
** --human, -h Human readable form **
** --long, -l Long messages **
** --verbose, -v Verbose mode on **
** --silent, -s Verbose mode off **
** --create, -c Create a cache while execu- **
** ting the command **
** --userlvl, -u Change the user level **
** --icase, -i Ignore case of modulefile **
** names **
** --help, -H Helpful usage info **
** --version, -V Report version only **
** **
** First Edition: 1995/12/20 **
** **
** Parameters: int *argc Number of parameters **
** char *argv[] Command line arguments **
** **
** Result: int TCL_OK Successful completion **
** TCL_ERROR Unknown switch found **
** *argc, *argv All switches are removed **
** from the argv vector **
** **
** Attached Globals: sw_force --force, -f **
** sw_format -t, -l, -h, -p **
** sw_verbose --verbose, -v, --silent, -s **
** sw_create --create, -c **
** sw_userlvl --userlvl, -u **
** sw_icase --icase, -i **
** **
** ************************************************************************ **
++++*/
static int Check_Switches( int *argc, char *argv[])
{
int c;
/**
** These are the options we do provide
**/
const struct option longopts[] = {
{ "force", no_argument, NULL, 'f' },
{ "terse", no_argument, NULL, 't' },
{ "long", no_argument, NULL, 'l' },
{ "human", no_argument, NULL, 'h' },
{ "parseable", no_argument, NULL, 'p' },
{ "parse", no_argument, NULL, 'p' },
{ "verbose", no_argument, NULL, 'v' },
{ "silent", no_argument, NULL, 's' },
{ "create", no_argument, NULL, 'c' },
{ "icase", no_argument, NULL, 'i' },
{ "userlvl", required_argument, NULL, 'u'},
{ "append", no_argument, NULL, 'a' },
{ "help", no_argument, NULL, 'H' },
{ "version", no_argument, NULL, 'V' },
{ NULL, no_argument, NULL, 0 }
};
#if WITH_DEBUGGING_INIT
ErrorLogger( NO_ERR_START, LOC, _proc_Check_Switches, NULL);
#endif
/**
** Scan the command line for options defined in the longopt table.
** Skip the very first argument, which is the shell to be used
**/
if( *argc > 1) {
while( EOF != (c = getopt_long( *argc-1, &argv[1], "hpftlvsciu:aHV",
longopts, NULL))) {
switch( c) {
/**
** Force
**/
case 'f': /* force */
sw_force = 1;
break;
/**
** Format of the messages
**/
case 't': /* terse */
sw_format |= (SW_SET | SW_TERSE);
sw_format &= ~ SW_LONG;
break;
case 'l': /* long */
sw_format |= (SW_SET | SW_LONG);
sw_format &= ~ SW_TERSE;
break;
case 'h': /* human */
sw_format |= (SW_SET | SW_HUMAN);
sw_format &= ~ SW_PARSE;
break;
case 'p': /* parseable */
sw_format |= (SW_SET | SW_PARSE);
sw_format &= ~ SW_HUMAN;
break;
/**
** Verbosity
**/
case 'v': /* verbose */
sw_verbose = 1;
break;
case 's': /* silent */
sw_detach = 1;
break;
/**
** Caching control
**/
case 'c': /* create */
sw_create = 1;
break;
/**
** Locating
**/
case 'i': /* icase */
sw_icase = 1;
break;
/**
** The user level comes as a string argument to the -u option
**/
case 'u': /* userlvl */
cmdModuleUser_sub( optarg);
break;
/**
** a special purpose flag for 'use' only
**/
case 'a': /* --append */
append_flag = 1;
break;
case 'H': /* helpful info */
module_usage(stderr);
return ~TCL_OK;
case 'V': /* version */
version(stderr);
return ~TCL_OK;
/**
** All remaining options will influence their flags as defined
** in the optlong table above.
**/
case 0:
break;
/**
** Error messages for unknown options will be printed by
** getopt ...
**/
case '?':
break;
/**
** Well, this seems to be an internal error
**/
default:
if( OK != ErrorLogger( ERR_GETOPT, LOC, NULL))
return( TCL_ERROR); /** --- EXIT (FAILURE) ----> **/
break;
} /** switch() **/
} /** while() **/
} /** if( argc) **/
/**
** Special things to be dine for the 'silent' option: Pipe stderr
** output to /dev/null
**/
if( sw_detach) {
sw_verbose = 0;
if (!ttyname(2)) {
int temp_fd = open("/dev/null", O_RDWR);
close(2);
dup2(temp_fd, 2);
}
}
/**
** Finally remove all options from the command line stream
**/
c = (optind - 1);
if ((optind < *argc) && (c > 0)) {
while (optind < *argc) {
argv[(optind - c)] = argv[optind];
optind++;
}
*argc -= c;
}
/**
** Exit on success:
**/
#if WITH_DEBUGGING_INIT
ErrorLogger(NO_ERR_END, LOC, _proc_Check_Switches, NULL);
#endif /* WITH_DEBUGGING_INIT */
return (TCL_OK);
} /** End of 'Check_Switches' **/
/*++++
** ** Function-Header ***************************************************** **
** **
** Function: dup2 **
** **
** Description: Duplicate file descriptor **
** **
** First Edition: 1996/02/08 **
** **
** Parameters: int old Old file descriptor **
** int new New file descriptor **
** **
** Result: int -1 any error **
** other new file descriptor **
** **
** ************************************************************************ **
++++*/
#if !defined(HAVE_DUP2) && defined(EMFILE)
int dup2(int old, int new)
{
int fd;
close(new);
fd = dup(old);
if (fd != new) {
close(fd);
errno = EMFILE;
fd = -1;
}
return (fd);
}
#endif /* !HAVE_DUP2 && EMFILE */
/*++++
** ** Function-Header ***************************************************** **
** **
** Function: version **
** **
** Description: Outputs the Modules version and features **
** **
** First Edition: 2002/06/13 **
** **
** Parameters: FILE * output All input is from defined **
** macros **
** Result: void no return value **
** All output is to output **
** **
** Attached Globals: **
** version_string Current module version **
** date_string Current module date **
** **
** ************************************************************************ **
++++*/
#define str(a) #a
#define format "%s=%s\n"
#define isdefined(a,b) {if (strcmp(str(a),b)) x=str(a); else x="undef"; \
fprintf(output,format,b,x);}
static void version(FILE *output) {
char *x;
/* the "%s=%s\n"; format used to be assigned to a variable called "format",
* but fprintf() wants string literals, so define it as a preprocessor
* macro above instead */
fprintf(output, format, "VERSION", version_string);
fprintf(output, format, "DATE", date_string);
fprintf(output, "\n");
isdefined(AUTOLOADPATH, str(AUTOLOADPATH));
isdefined(BASEPREFIX, str(BASEPREFIX));
isdefined(BEGINENV, str(BEGINENV));
isdefined(CACHE_AVAIL, str(CACHE_AVAIL));
isdefined(DEF_COLLATE_BY_NUMBER, str(DEF_COLLATE_BY_NUMBER));
isdefined(DOT_EXT, str(DOT_EXT));
isdefined(EVAL_ALIAS, str(EVAL_ALIAS));
isdefined(HAS_BOURNE_FUNCS, str(HAS_BOURNE_FUNCS));
isdefined(HAS_BOURNE_ALIAS, str(HAS_BOURNE_ALIAS));
isdefined(HAS_TCLXLIBS, str(HAS_TCLXLIBS));
isdefined(HAS_X11LIBS, str(HAS_X11LIBS));
isdefined(LMSPLIT_SIZE, str(LMSPLIT_SIZE));
isdefined(MODULEPATH, str(MODULEPATH));
isdefined(MODULES_INIT_DIR, str(MODULES_INIT_DIR));
isdefined(PREFIX, str(PREFIX));
isdefined(TCL_VERSION, str(TCL_VERSION));
isdefined(TCL_PATCH_LEVEL, str(TCL_PATCH_LEVEL));
isdefined(TMP_DIR, str(TMP_DIR));
isdefined(USE_FREE, str(USE_FREE));
isdefined(VERSION_MAGIC, str(VERSION_MAGIC));
isdefined(VERSIONPATH, str(VERSIONPATH));
isdefined(WANTS_VERSIONING, str(WANTS_VERSIONING));
isdefined(WITH_DEBUG_INFO, str(WITH_DEBUG_INFO));
fprintf(output, "\n");
}
#undef str
#undef isdefined
/* EOF */