Fixes related to working local $.
[p5sagit/p5-mst-13.2.git] / Porting / Glossary
CommitLineData
d7418ba7 1This file contains a description of all the shell variables whose value is
2determined by the Configure script. Variables intended for use in C
ebc74a4b 3programs (e.g. I_UNISTD) are already described in config_h.SH. [`configpm'
4generates pod documentation for Config.pm from this file--please try to keep
5the formatting regular.]
d7418ba7 6
dfe9444c 7_a (Unix.U):
8 This variable defines the extension used for ordinary libraries.
9 For unix, it is '.a'. The '.' is included. Other possible
10 values include '.lib'.
11
12_exe (Unix.U):
13 This variable defines the extension used for executable files.
14 For unix it is empty. Other possible values include '.exe'.
15
16_o (Unix.U):
17 This variable defines the extension used for object files.
18 For unix, it is '.o'. The '.' is included. Other possible
19 values include '.obj'.
20
21afs (afs.U):
22 This variable is set to 'true' if AFS (Andrew File System) is used
23 on the system, 'false' otherwise. It is possible to override this
24 with a hint value or command line option, but you'd better know
25 what you are doing.
26
d7418ba7 27alignbytes (alignbytes.U):
28 This variable holds the number of bytes required to align a
29 double. Usual values are 2, 4 and 8.
30
c4f23d77 31ansi2knr (ansi2knr.U):
32 This variable is set if the user needs to run ansi2knr.
33 Currently, this is not supported, so we just abort.
34
dfe9444c 35aphostname (d_gethname.U):
af4c28eb 36 This variable contains the command which can be used to compute the
dfe9444c 37 host name. The command is fully qualified by its absolute path, to make
38 it safe when used by a process with super-user privileges.
d7418ba7 39
bfb7748a 40apiversion (patchlevel.U):
41 This is a number which identifies the lowest version of perl
42 to have an API (for XS extensions) compatible with the present
43 version. For example, for 5.005_01, the apiversion should be
44 5.005, since 5.005_01 should be binary compatible with 5.005.
45 This should probably be incremented manually somehow, perhaps
46 from patchlevel.h. For now, we'll guess maintenance subversions
47 will retain binary compatibility.
48
3a6175e1 49ar (Loc.U):
50 This variable is be used internally by Configure to determine the
51 full pathname (if any) of the ar program. After Configure runs,
52 the value is reset to a plain "ar" and is not useful.
53
d7418ba7 54archlib (archlib.U):
55 This variable holds the name of the directory in which the user wants
56 to put architecture-dependent public library files for $package.
57 It is most often a local directory such as /usr/local/lib.
58 Programs using this variable must be prepared to deal
59 with filename expansion.
60
61archlibexp (archlib.U):
62 This variable is the same as the archlib variable, but is
63 filename expanded at configuration time, for convenient use.
64
921b2963 65archname64 (use64bits.U):
66 This variable is used for the 64-bitness part of $archname.
67
dfe9444c 68archname (archname.U):
69 This variable is a short name to characterize the current
70 architecture. It is used mainly to construct the default archlib.
71
d7418ba7 72archobjs (Unix.U):
73 This variable defines any additional objects that must be linked
74 in with the program on this architecture. On unix, it is usually
75 empty. It is typically used to include emulations of unix calls
76 or other facilities. For perl on OS/2, for example, this would
77 include os2/os2.obj.
78
3a6175e1 79awk (Loc.U):
80 This variable is be used internally by Configure to determine the
81 full pathname (if any) of the awk program. After Configure runs,
82 the value is reset to a plain "awk" and is not useful.
83
dfe9444c 84baserev (baserev.U):
85 The base revision level of this package, from the .package file.
86
3a6175e1 87bash (Loc.U):
88 This variable is defined but not used by Configure.
89 The value is a plain '' and is not useful.
90
d7418ba7 91bin (bin.U):
92 This variable holds the name of the directory in which the user wants
93 to put publicly executable images for the package in question. It
94 is most often a local directory such as /usr/local/bin. Programs using
95 this variable must be prepared to deal with ~name substitution.
96
dfe9444c 97binexp (bin.U):
98 This is the same as the bin variable, but is filename expanded at
99 configuration time, for use in your makefiles.
100
3a6175e1 101bison (Loc.U):
102 This variable is defined but not used by Configure.
103 The value is a plain '' and is not useful.
104
105byacc (Loc.U):
106 This variable is be used internally by Configure to determine the
107 full pathname (if any) of the byacc program. After Configure runs,
108 the value is reset to a plain "byacc" and is not useful.
109
d7418ba7 110byteorder (byteorder.U):
111 This variable holds the byte order. In the following, larger digits
112 indicate more significance. The variable byteorder is either 4321
113 on a big-endian machine, or 1234 on a little-endian, or 87654321
114 on a Cray ... or 3412 with weird order !
115
116c (n.U):
117 This variable contains the \c string if that is what causes the echo
118 command to suppress newline. Otherwise it is null. Correct usage is
ccc7f9b3 119 $echo $n "prompt for a question: $c".
d7418ba7 120
121castflags (d_castneg.U):
122 This variable contains a flag that precise difficulties the
123 compiler has casting odd floating values to unsigned long:
ccc7f9b3 124 0 = ok
125 1 = couldn't cast < 0
126 2 = couldn't cast >= 0x80000000
127 4 = couldn't cast in argument expression list
d7418ba7 128
3a6175e1 129cat (Loc.U):
130 This variable is be used internally by Configure to determine the
131 full pathname (if any) of the cat program. After Configure runs,
132 the value is reset to a plain "cat" and is not useful.
133
d7418ba7 134cc (cc.U):
135 This variable holds the name of a command to execute a C compiler which
136 can resolve multiple global references that happen to have the same
fb87c415 137 name. Usual values are 'cc', 'Mcc', 'cc -M', and 'gcc'.
d7418ba7 138
139cccdlflags (dlsrc.U):
140 This variable contains any special flags that might need to be
fb87c415 141 passed with 'cc -c' to compile modules to be used to create a shared
3a6175e1 142 library that will be used for dynamic loading. For hpux, this
d7418ba7 143 should be +z. It is up to the makefile to use it.
144
145ccdlflags (dlsrc.U):
146 This variable contains any special flags that might need to be
3a6175e1 147 passed to cc to link with a shared library for dynamic loading.
d7418ba7 148 It is up to the makefile to use it. For sunos 4.1, it should
149 be empty.
150
151ccflags (ccflags.U):
152 This variable contains any additional C compiler flags desired by
153 the user. It is up to the Makefile to use this.
154
732c9516 155ccsymbols (Cppsym.U):
156 The variable contains the symbols defined by the C compiler alone.
157 The symbols defined by cpp or by cc when it calls cpp are not in
158 this list, see cppsymbols and cppccsymbols.
159 The list is a space-separated list of symbol=value tokens.
160
d7418ba7 161cf_by (cf_who.U):
162 Login name of the person who ran the Configure script and answered the
163 questions. This is used to tag both config.sh and config_h.SH.
164
dfe9444c 165cf_email (cf_email.U):
166 Electronic mail address of the person who ran Configure. This can be
167 used by units that require the user's e-mail, like MailList.U.
168
d7418ba7 169cf_time (cf_who.U):
170 Holds the output of the "date" command when the configuration file was
171 produced. This is used to tag both config.sh and config_h.SH.
172
3a6175e1 173chgrp (Loc.U):
174 This variable is defined but not used by Configure.
175 The value is a plain '' and is not useful.
176
177chmod (Loc.U):
178 This variable is defined but not used by Configure.
179 The value is a plain '' and is not useful.
180
181chown (Loc.U):
182 This variable is defined but not used by Configure.
183 The value is a plain '' and is not useful.
184
dfe9444c 185clocktype (d_times.U):
186 This variable holds the type returned by times(). It can be long,
187 or clock_t on BSD sites (in which case <sys/types.h> should be
188 included).
189
3a6175e1 190comm (Loc.U):
191 This variable is be used internally by Configure to determine the
192 full pathname (if any) of the comm program. After Configure runs,
193 the value is reset to a plain "comm" and is not useful.
194
195compress (Loc.U):
196 This variable is defined but not used by Configure.
197 The value is a plain '' and is not useful.
198
dfe9444c 199contains (contains.U):
200 This variable holds the command to do a grep with a proper return
201 status. On most sane systems it is simply "grep". On insane systems
202 it is a grep followed by a cat followed by a test. This variable
203 is primarily for the use of other Configure units.
204
3a6175e1 205cp (Loc.U):
206 This variable is be used internally by Configure to determine the
207 full pathname (if any) of the cp program. After Configure runs,
208 the value is reset to a plain "cp" and is not useful.
209
210cpio (Loc.U):
211 This variable is defined but not used by Configure.
212 The value is a plain '' and is not useful.
213
214cpp (Loc.U):
215 This variable is be used internally by Configure to determine the
216 full pathname (if any) of the cpp program. After Configure runs,
217 the value is reset to a plain "cpp" and is not useful.
218
d7418ba7 219cpp_stuff (cpp_stuff.U):
220 This variable contains an identification of the catenation mechanism
221 used by the C preprocessor.
222
732c9516 223cppccsymbols (Cppsym.U):
224 The variable contains the symbols defined by the C compiler when
225 when it calls cpp. The symbols defined by the cc alone or cpp
226 alone are not in this list, see ccsymbols and cppsymbols.
227 The list is a space-separated list of symbol=value tokens.
228
d7418ba7 229cppflags (ccflags.U):
230 This variable holds the flags that will be passed to the C pre-
231 processor. It is up to the Makefile to use it.
232
dfe9444c 233cpplast (cppstdin.U):
921b2963 234 This variable has the same functionality as cppminus, only it applies
235 to cpprun and not cppstdin.
dfe9444c 236
d7418ba7 237cppminus (cppstdin.U):
238 This variable contains the second part of the string which will invoke
239 the C preprocessor on the standard input and produce to standard
921b2963 240 output. This variable will have the value "-" if cppstdin needs
241 a minus to specify standard input, otherwise the value is "".
d7418ba7 242
dfe9444c 243cpprun (cppstdin.U):
244 This variable contains the command which will invoke a C preprocessor
245 on standard input and put the output to stdout. It is guaranteed not
246 to be a wrapper and may be a null string if no preprocessor can be
247 made directly available. This preprocessor might be different from the
248 one used by the C compiler. Don't forget to append cpplast after the
249 preprocessor options.
250
d7418ba7 251cppstdin (cppstdin.U):
252 This variable contains the command which will invoke the C
253 preprocessor on standard input and put the output to stdout.
254 It is primarily used by other Configure units that ask about
255 preprocessor symbols.
256
732c9516 257cppsymbols (Cppsym.U):
258 The variable contains the symbols defined by the C preprocessor
259 alone. The symbols defined by cc or by cc when it calls cpp are
260 not in this list, see ccsymbols and cppccsymbols.
261 The list is a space-separated list of symbol=value tokens.
262
af4c28eb 263crosscompile (crosscompile.U):
264 This variable conditionally defines the CROSSCOMPILE symbol
265 which signifies that the build process is be a cross-compilation.
266 This is normally set by hints files or from Configure command line.
267
d7418ba7 268cryptlib (d_crypt.U):
269 This variable holds -lcrypt or the path to a libcrypt.a archive if
270 the crypt() function is not defined in the standard C library. It is
271 up to the Makefile to use this.
272
3a6175e1 273csh (Loc.U):
274 This variable is be used internally by Configure to determine the
275 full pathname (if any) of the csh program. After Configure runs,
276 the value is reset to a plain "csh" and is not useful.
277
d7418ba7 278d_access (d_access.U):
279 This variable conditionally defines HAS_ACCESS if the access() system
280 call is available to check for access permissions using real IDs.
281
921b2963 282d_accessx (d_accessx.U):
283 This variable conditionally defines the HAS_ACCESSX symbol, which
284 indicates to the C program that the accessx() routine is available.
285
d7418ba7 286d_alarm (d_alarm.U):
287 This variable conditionally defines the HAS_ALARM symbol, which
288 indicates to the C program that the alarm() routine is available.
289
290d_archlib (archlib.U):
291 This variable conditionally defines ARCHLIB to hold the pathname
292 of architecture-dependent library files for $package. If
293 $archlib is the same as $privlib, then this is set to undef.
294
dc45a647 295d_attribut (d_attribut.U):
296 This variable conditionally defines HASATTRIBUTE, which
297 indicates the C compiler can check for function attributes,
298 such as printf formats.
299
d7418ba7 300d_bcmp (d_bcmp.U):
301 This variable conditionally defines the HAS_BCMP symbol if
302 the bcmp() routine is available to compare strings.
303
304d_bcopy (d_bcopy.U):
305 This variable conditionally defines the HAS_BCOPY symbol if
306 the bcopy() routine is available to copy strings.
307
dfe9444c 308d_bsd (Guess.U):
309 This symbol conditionally defines the symbol BSD when running on a
310 BSD system.
7e1af8bc 311
c43cd16b 312d_bsdgetpgrp (d_getpgrp.U):
313 This variable conditionally defines USE_BSD_GETPGRP if
314 getpgrp needs one arguments whereas USG one needs none.
315
dc45a647 316d_bsdsetpgrp (d_setpgrp.U):
317 This variable conditionally defines USE_BSD_SETPGRP if
318 setpgrp needs two arguments whereas USG one needs none.
319 See also d_setpgid for a POSIX interface.
320
d7418ba7 321d_bzero (d_bzero.U):
322 This variable conditionally defines the HAS_BZERO symbol if
323 the bzero() routine is available to set memory to 0.
324
325d_casti32 (d_casti32.U):
326 This variable conditionally defines CASTI32, which indicates
327 whether the C compiler can cast large floats to 32-bit ints.
328
329d_castneg (d_castneg.U):
330 This variable conditionally defines CASTNEG, which indicates
331 wether the C compiler can cast negative float to unsigned.
332
333d_charvspr (d_vprintf.U):
334 This variable conditionally defines CHARVSPRINTF if this system
335 has vsprintf returning type (char*). The trend seems to be to
336 declare it as "int vsprintf()".
337
338d_chown (d_chown.U):
339 This variable conditionally defines the HAS_CHOWN symbol, which
340 indicates to the C program that the chown() routine is available.
341
342d_chroot (d_chroot.U):
343 This variable conditionally defines the HAS_CHROOT symbol, which
344 indicates to the C program that the chroot() routine is available.
345
346d_chsize (d_chsize.U):
347 This variable conditionally defines the CHSIZE symbol, which
348 indicates to the C program that the chsize() routine is available
349 to truncate files. You might need a -lx to get this routine.
350
dfe9444c 351d_closedir (d_closedir.U):
352 This variable conditionally defines HAS_CLOSEDIR if closedir() is
353 available.
354
de4597cb 355d_cmsghdr_s (d_socket.U):
356 This variable conditionally defines the HAS_STRUCT_CMSGHDR symbol,
357 which indicates that the the struct cmsghdr is supported.
358
d7418ba7 359d_const (d_const.U):
360 This variable conditionally defines the HASCONST symbol, which
361 indicates to the C program that this C compiler knows about the
362 const type.
363
364d_crypt (d_crypt.U):
365 This variable conditionally defines the CRYPT symbol, which
366 indicates to the C program that the crypt() routine is available
367 to encrypt passwords and the like.
368
369d_csh (d_csh.U):
370 This variable conditionally defines the CSH symbol, which
371 indicates to the C program that the C-shell exists.
372
373d_cuserid (d_cuserid.U):
374 This variable conditionally defines the HAS_CUSERID symbol, which
375 indicates to the C program that the cuserid() routine is available
376 to get character login names.
377
378d_dbl_dig (d_dbl_dig.U):
379 This variable conditionally defines d_dbl_dig if this system's
380 header files provide DBL_DIG, which is the number of significant
381 digits in a double precision number.
382
921b2963 383d_dbmclose64 (dbm64.U):
384 This variable conditionally defines the HAS_DBMCLOSE64 symbol, which
385 indicates to the C program that the dbmclose64() routine is available.
386
387d_dbminit64 (dbm64.U):
388 This variable conditionally defines the HAS_DBMINIT64 symbol, which
389 indicates to the C program that the dbminit64() routine is available.
390
391d_delete64 (dbm64.U):
392 This variable conditionally defines the HAS_DELETE64 symbol, which
393 indicates to the C program that the delete64() routine is available.
394
d7418ba7 395d_difftime (d_difftime.U):
396 This variable conditionally defines the HAS_DIFFTIME symbol, which
397 indicates to the C program that the difftime() routine is available.
398
de4597cb 399d_dirent64_s (io64.U):
921b2963 400 This symbol will be defined if the C compiler supports struct dirent64.
401
d7418ba7 402d_dirnamlen (i_dirent.U):
403 This variable conditionally defines DIRNAMLEN, which indicates
404 to the C program that the length of directory entry names is
405 provided by a d_namelen field.
406
407d_dlerror (d_dlerror.U):
408 This variable conditionally defines the HAS_DLERROR symbol, which
409 indicates to the C program that the dlerror() routine is available.
410
dfe9444c 411d_dlopen (d_dlopen.U):
412 This variable conditionally defines the HAS_DLOPEN symbol, which
413 indicates to the C program that the dlopen() routine is available.
414
d7418ba7 415d_dlsymun (d_dlsymun.U):
416 This variable conditionally defines DLSYM_NEEDS_UNDERSCORE, which
417 indicates that we need to prepend an underscore to the symbol
418 name before calling dlsym().
419
420d_dosuid (d_dosuid.U):
421 This variable conditionally defines the symbol DOSUID, which
422 tells the C program that it should insert setuid emulation code
423 on hosts which have setuid #! scripts disabled.
424
921b2963 425d_drand48proto (d_drand48proto.U):
426 This variable conditionally defines the HAS_DRAND48_PROTO symbol,
427 which indicates to the C program that the system provides
428 a prototype for the drand48() function. Otherwise, it is
429 up to the program to supply one.
430
d7418ba7 431d_dup2 (d_dup2.U):
432 This variable conditionally defines HAS_DUP2 if dup2() is
433 available to duplicate file descriptors.
434
921b2963 435d_eaccess (d_eaccess.U):
436 This variable conditionally defines the HAS_EACCESS symbol, which
437 indicates to the C program that the eaccess() routine is available.
438
93341792 439d_endgrent (d_endgrent.U):
440 This variable conditionally defines the HAS_ENDGRENT symbol, which
441 indicates to the C program that the endgrent() routine is available
442 for sequential access of the group database.
443
e5c9fcd0 444d_endhent (d_endhent.U):
445 This variable conditionally defines HAS_ENDHOSTENT if endhostent() is
446 available to close whatever was being used for host queries.
447
448d_endnent (d_endnent.U):
449 This variable conditionally defines HAS_ENDNETENT if endnetent() is
450 available to close whatever was being used for network queries.
451
452d_endpent (d_endpent.U):
453 This variable conditionally defines HAS_ENDPROTOENT if endprotoent() is
454 available to close whatever was being used for protocol queries.
455
93341792 456d_endpwent (d_endpwent.U):
457 This variable conditionally defines the HAS_ENDPWENT symbol, which
458 indicates to the C program that the endpwent() routine is available
459 for sequential access of the passwd database.
460
e5c9fcd0 461d_endsent (d_endsent.U):
462 This variable conditionally defines HAS_ENDSERVENT if endservent() is
463 available to close whatever was being used for service queries.
464
d7418ba7 465d_eofnblk (nblock_io.U):
466 This variable conditionally defines EOF_NONBLOCK if EOF can be seen
467 when reading from a non-blocking I/O source.
468
dfe9444c 469d_eunice (Guess.U):
470 This variable conditionally defines the symbols EUNICE and VAX, which
471 alerts the C program that it must deal with ideosyncracies of VMS.
472
d7418ba7 473d_fchmod (d_fchmod.U):
474 This variable conditionally defines the HAS_FCHMOD symbol, which
475 indicates to the C program that the fchmod() routine is available
476 to change mode of opened files.
477
478d_fchown (d_fchown.U):
479 This variable conditionally defines the HAS_FCHOWN symbol, which
480 indicates to the C program that the fchown() routine is available
481 to change ownership of opened files.
482
483d_fcntl (d_fcntl.U):
484 This variable conditionally defines the HAS_FCNTL symbol, and indicates
485 whether the fcntl() function exists
486
dfe9444c 487d_fd_macros (d_fd_set.U):
488 This variable contains the eventual value of the HAS_FD_MACROS symbol,
489 which indicates if your C compiler knows about the macros which
490 manipulate an fd_set.
491
492d_fd_set (d_fd_set.U):
493 This variable contains the eventual value of the HAS_FD_SET symbol,
494 which indicates if your C compiler knows about the fd_set typedef.
495
496d_fds_bits (d_fd_set.U):
497 This variable contains the eventual value of the HAS_FDS_BITS symbol,
498 which indicates if your fd_set typedef contains the fds_bits member.
499 If you have an fd_set typedef, but the dweebs who installed it did
500 a half-fast job and neglected to provide the macros to manipulate
501 an fd_set, HAS_FDS_BITS will let us know how to fix the gaffe.
502
921b2963 503d_fetch64 (dbm64.U):
504 This variable conditionally defines the HAS_FETCH64 symbol, which
505 indicates to the C program that the fetch64() routine is available.
506
507d_fgetpos64 (stdio64.U):
508 This variable conditionally defines the HAS_FGETPOS64 symbol, which
509 indicates to the C program that the fgetpos64() routine is available.
510
d7418ba7 511d_fgetpos (d_fgetpos.U):
512 This variable conditionally defines HAS_FGETPOS if fgetpos() is
513 available to get the file position indicator.
514
921b2963 515d_firstkey64 (dbm64.U):
516 This variable conditionally defines the HAS_FIRSTKEY64 symbol, which
517 indicates to the C program that the firstkey64() routine is available.
518
d7418ba7 519d_flexfnam (d_flexfnam.U):
520 This variable conditionally defines the FLEXFILENAMES symbol, which
521 indicates that the system supports filenames longer than 14 characters.
522
de4597cb 523d_flock64_s (io64.U):
921b2963 524 This symbol will be defined if the C compiler supports struct flock64.
525
d7418ba7 526d_flock (d_flock.U):
527 This variable conditionally defines HAS_FLOCK if flock() is
528 available to do file locking.
529
921b2963 530d_fopen64 (stdio64.U):
531 This variable conditionally defines the HAS_FOPEN64 symbol, which
532 indicates to the C program that the fopen64() routine is available.
533
d7418ba7 534d_fork (d_fork.U):
535 This variable conditionally defines the HAS_FORK symbol, which
536 indicates to the C program that the fork() routine is available.
537
538d_fpathconf (d_pathconf.U):
539 This variable conditionally defines the HAS_FPATHCONF symbol, which
540 indicates to the C program that the pathconf() routine is available
541 to determine file-system related limits and options associated
542 with a given open file descriptor.
543
921b2963 544d_freopen64 (stdio64.U):
545 This variable conditionally defines the HAS_FREOPEN64 symbol, which
546 indicates to the C program that the freopen64() routine is available.
547
548d_fseek64 (stdio64.U):
549 This variable conditionally defines the HAS_FSEEK64 symbol, which
550 indicates to the C program that the fseek64() routine is available.
551
552d_fseeko64 (stdio64.U):
553 This variable conditionally defines the HAS_FSEEKO64 symbol, which
554 indicates to the C program that the fseeko64() routine is available.
555
556d_fseeko (d_fseeko.U):
557 This variable conditionally defines the HAS_FSEEKO symbol, which
558 indicates to the C program that the fseeko() routine is available.
559
560d_fsetpos64 (stdio64.U):
561 This variable conditionally defines the HAS_FSETPOS64 symbol, which
562 indicates to the C program that the fsetpos64() routine is available.
563
d7418ba7 564d_fsetpos (d_fsetpos.U):
565 This variable conditionally defines HAS_FSETPOS if fsetpos() is
566 available to set the file position indicator.
567
921b2963 568d_fstat64 (io64.U):
569 This variable conditionally defines the HAS_FSTAT64 symbol, which
570 indicates to the C program that the fstat64() routine is available.
571
732c9516 572d_fstatfs (d_statfs.U):
573 This variable conditionally defines the HAS_FSTATFS symbol, which
574 indicates to the C program that the fstatfs() routine is available.
575
576d_fstatvfs (d_statvfs.U):
577 This variable conditionally defines the HAS_FSTATVFS symbol, which
578 indicates to the C program that the fstatvfs() routine is available.
579
921b2963 580d_ftell64 (stdio64.U):
581 This variable conditionally defines the HAS_FTELL64 symbol, which
582 indicates to the C program that the ftell64() routine is available.
583
584d_ftello64 (stdio64.U):
585 This variable conditionally defines the HAS_FTELLO64 symbol, which
586 indicates to the C program that the ftello64() routine is available.
587
588d_ftello (d_ftello.U):
589 This variable conditionally defines the HAS_FTELLO symbol, which
590 indicates to the C program that the ftello() routine is available.
591
7e1af8bc 592d_ftime (d_ftime.U):
dfe9444c 593 This variable conditionally defines the HAS_FTIME symbol, which indicates
594 that the ftime() routine exists. The ftime() routine is basically
595 a sub-second accuracy clock.
596
921b2963 597d_ftruncate64 (io64.U):
598 This variable conditionally defines the HAS_FTRUNCATE64 symbol, which
599 indicates to the C program that the ftruncate64() routine is available.
600
a71cd7cd 601d_Gconvert (d_gconvert.U):
602 This variable holds what Gconvert is defined as to convert
603 floating point numbers into strings. It could be 'gconvert'
604 or a more complex macro emulating gconvert with gcvt() or sprintf.
605 Possible values are:
606 d_Gconvert='gconvert((x),(n),(t),(b))'
607 d_Gconvert='gcvt((x),(n),(b))'
608 d_Gconvert='sprintf((b),"%.*g",(n),(x))'
609
93341792 610d_getgrent (d_getgrent.U):
611 This variable conditionally defines the HAS_GETGRENT symbol, which
612 indicates to the C program that the getgrent() routine is available
613 for sequential access of the group database.
614
dfe9444c 615d_getgrps (d_getgrps.U):
616 This variable conditionally defines the HAS_GETGROUPS symbol, which
617 indicates to the C program that the getgroups() routine is available
618 to get the list of process groups.
619
620d_gethbyaddr (d_gethbyad.U):
621 This variable conditionally defines the HAS_GETHOSTBYADDR symbol, which
622 indicates to the C program that the gethostbyaddr() routine is available
623 to look up hosts by their IP addresses.
7e1af8bc 624
dc45a647 625d_gethbyname (d_gethbynm.U):
626 This variable conditionally defines the HAS_GETHOSTBYNAME symbol, which
627 indicates to the C program that the gethostbyname() routine is available
628 to look up host names in some data base or other.
629
d7418ba7 630d_gethent (d_gethent.U):
631 This variable conditionally defines HAS_GETHOSTENT if gethostent() is
693762b4 632 available to look up host names in some data base or another.
d7418ba7 633
dfe9444c 634d_gethname (d_gethname.U):
635 This variable conditionally defines the HAS_GETHOSTNAME symbol, which
636 indicates to the C program that the gethostname() routine may be
637 used to derive the host name.
7e1af8bc 638
dc45a647 639d_gethostprotos (d_gethostprotos.U):
640 This variable conditionally defines the HAS_GETHOST_PROTOS symbol,
641 which indicates to the C program that <netdb.h> supplies
642 prototypes for the various gethost*() functions.
643 See also netdbtype.U for probing for various netdb types.
644
d7418ba7 645d_getlogin (d_getlogin.U):
646 This variable conditionally defines the HAS_GETLOGIN symbol, which
647 indicates to the C program that the getlogin() routine is available
648 to get the login name.
649
732c9516 650d_getmntent (d_getmntent.U):
651 This variable conditionally defines the HAS_GETMNTENT symbol, which
652 indicates to the C program that the getmntent() routine is available
653 to iterate through mounted files.
654
dfe9444c 655d_getnbyaddr (d_getnbyad.U):
656 This variable conditionally defines the HAS_GETNETBYADDR symbol, which
657 indicates to the C program that the getnetbyaddr() routine is available
658 to look up networks by their IP addresses.
659
693762b4 660d_getnbyname (d_getnbynm.U):
661 This variable conditionally defines the HAS_GETNETBYNAME symbol, which
662 indicates to the C program that the getnetbyname() routine is available
663 to look up networks by their names.
664
e5c9fcd0 665d_getnent (d_getnent.U):
666 This variable conditionally defines HAS_GETNETENT if getnetent() is
667 available to look up network names in some data base or another.
668
dc45a647 669d_getnetprotos (d_getnetprotos.U):
670 This variable conditionally defines the HAS_GETNET_PROTOS symbol,
671 which indicates to the C program that <netdb.h> supplies
672 prototypes for the various getnet*() functions.
673 See also netdbtype.U for probing for various netdb types.
674
693762b4 675d_getpbyname (d_getprotby.U):
676 This variable conditionally defines the HAS_GETPROTOBYNAME
677 symbol, which indicates to the C program that the
678 getprotobyname() routine is available to look up protocols
679 by their name.
680
681d_getpbynumber (d_getprotby.U):
682 This variable conditionally defines the HAS_GETPROTOBYNUMBER
683 symbol, which indicates to the C program that the
684 getprotobynumber() routine is available to look up protocols
685 by their number.
686
e5c9fcd0 687d_getpent (d_getpent.U):
688 This variable conditionally defines HAS_GETPROTOENT if getprotoent() is
689 available to look up protocols in some data base or another.
690
c43cd16b 691d_getpgid (d_getpgid.U):
692 This variable conditionally defines the HAS_GETPGID symbol, which
693 indicates to the C program that the getpgid(pid) function
694 is available to get the process group id.
695
d7418ba7 696d_getpgrp2 (d_getpgrp2.U):
697 This variable conditionally defines the HAS_GETPGRP2 symbol, which
698 indicates to the C program that the getpgrp2() (as in DG/UX) routine
699 is available to get the current process group.
700
dfe9444c 701d_getpgrp (d_getpgrp.U):
702 This variable conditionally defines HAS_GETPGRP if getpgrp() is
703 available to get the current process group.
704
d7418ba7 705d_getppid (d_getppid.U):
706 This variable conditionally defines the HAS_GETPPID symbol, which
707 indicates to the C program that the getppid() routine is available
708 to get the parent process ID.
709
710d_getprior (d_getprior.U):
711 This variable conditionally defines HAS_GETPRIORITY if getpriority()
712 is available to get a process's priority.
713
dc45a647 714d_getprotoprotos (d_getprotoprotos.U):
715 This variable conditionally defines the HAS_GETPROTO_PROTOS symbol,
716 which indicates to the C program that <netdb.h> supplies
717 prototypes for the various getproto*() functions.
718 See also netdbtype.U for probing for various netdb types.
719
93341792 720d_getpwent (d_getpwent.U):
721 This variable conditionally defines the HAS_GETPWENT symbol, which
722 indicates to the C program that the getpwent() routine is available
723 for sequential access of the passwd database.
724
693762b4 725d_getsbyname (d_getsrvby.U):
726 This variable conditionally defines the HAS_GETSERVBYNAME
727 symbol, which indicates to the C program that the
728 getservbyname() routine is available to look up services
729 by their name.
730
731d_getsbyport (d_getsrvby.U):
732 This variable conditionally defines the HAS_GETSERVBYPORT
733 symbol, which indicates to the C program that the
734 getservbyport() routine is available to look up services
735 by their port.
736
e5c9fcd0 737d_getsent (d_getsent.U):
738 This variable conditionally defines HAS_GETSERVENT if getservent() is
739 available to look up network services in some data base or another.
740
dc45a647 741d_getservprotos (d_getservprotos.U):
742 This variable conditionally defines the HAS_GETSERV_PROTOS symbol,
743 which indicates to the C program that <netdb.h> supplies
744 prototypes for the various getserv*() functions.
745 See also netdbtype.U for probing for various netdb types.
746
dfe9444c 747d_gettimeod (d_ftime.U):
748 This variable conditionally defines the HAS_GETTIMEOFDAY symbol, which
749 indicates that the gettimeofday() system call exists (to obtain a
750 sub-second accuracy clock). You should probably include <sys/resource.h>.
751
752d_gnulibc (d_gnulibc.U):
753 Defined if we're dealing with the GNU C Library.
754
93341792 755d_grpasswd (i_grp.U):
756 This variable conditionally defines GRPASSWD, which indicates
757 that struct group in <grp.h> contains gr_passwd.
758
732c9516 759d_hasmntopt (d_hasmntopt.U):
760 This variable conditionally defines the HAS_HASMNTOPT symbol, which
761 indicates to the C program that the hasmntopt() routine is available
762 to query the mount options of file systems.
763
d7418ba7 764d_htonl (d_htonl.U):
765 This variable conditionally defines HAS_HTONL if htonl() and its
766 friends are available to do network order byte swapping.
767
768d_index (d_strchr.U):
769 This variable conditionally defines HAS_INDEX if index() and
770 rindex() are available for string searching.
771
7e1af8bc 772d_inetaton (d_inetaton.U):
773 This variable conditionally defines the HAS_INET_ATON symbol, which
774 indicates to the C program that the inet_aton() function is available
775 to parse IP address "dotted-quad" strings.
776
af4c28eb 777d_ino64_t (io64.U):
921b2963 778 This symbol will be defined if the C compiler supports ino64_t.
779
780d_int64t (i_inttypes.U):
ccc7f9b3 781 This symbol will be defined if the C compiler supports int64_t.
921b2963 782
de4597cb 783d_iovec_s (i_sysuio.U):
784 This variable conditionally defines the HAS_STRUCT_IOVEC symbol,
785 which indicates that the struct iovec is supported.
786
d7418ba7 787d_isascii (d_isascii.U):
788 This variable conditionally defines the HAS_ISASCII constant,
789 which indicates to the C program that isascii() is available.
790
791d_killpg (d_killpg.U):
792 This variable conditionally defines the HAS_KILLPG symbol, which
793 indicates to the C program that the killpg() routine is available
794 to kill process groups.
795
dd64f1c3 796d_lchown (d_lchown.U):
797 This variable conditionally defines the HAS_LCHOWN symbol, which
798 indicates to the C program that the lchown() routine is available
799 to operate on a symbolic link (instead of following the link).
800
d7418ba7 801d_link (d_link.U):
802 This variable conditionally defines HAS_LINK if link() is
803 available to create hard links.
804
af4c28eb 805d_llseek (io64.U):
806 This variable conditionally defines the HAS_LLSEEK symbol, which
807 indicates to the C program that the llseek() routine is available.
808
d7418ba7 809d_locconv (d_locconv.U):
810 This variable conditionally defines HAS_LOCALECONV if localeconv() is
811 available for numeric and monetary formatting conventions.
812
921b2963 813d_lockf64 (io64.U):
814 This variable conditionally defines the HAS_LOCKF64 symbol, which
815 indicates to the C program that the lockf64() routine is available.
816
d7418ba7 817d_lockf (d_lockf.U):
818 This variable conditionally defines HAS_LOCKF if lockf() is
819 available to do file locking.
820
e5c9fcd0 821d_longdbl (d_longdbl.U):
822 This variable conditionally defines HAS_LONG_DOUBLE if
823 the long double type is supported.
824
dc45a647 825d_longlong (d_longlong.U):
826 This variable conditionally defines HAS_LONG_LONG if
827 the long long type is supported.
828
921b2963 829d_lseek64 (io64.U):
830 This variable conditionally defines the HAS_LSEEK64 symbol, which
831 indicates to the C program that the lseek64() routine is available.
832
833d_lstat64 (io64.U):
834 This variable conditionally defines the HAS_LSTAT64 symbol, which
835 indicates to the C program that the lstat64() routine is available.
836
d7418ba7 837d_lstat (d_lstat.U):
838 This variable conditionally defines HAS_LSTAT if lstat() is
839 available to do file stats on symbolic links.
840
732c9516 841d_madvise (d_madvise.U):
842 This variable conditionally defines HAS_MADVISE if madvise() is
843 available to map a file into memory.
844
d7418ba7 845d_mblen (d_mblen.U):
846 This variable conditionally defines the HAS_MBLEN symbol, which
847 indicates to the C program that the mblen() routine is available
848 to find the number of bytes in a multibye character.
849
850d_mbstowcs (d_mbstowcs.U):
851 This variable conditionally defines the HAS_MBSTOWCS symbol, which
852 indicates to the C program that the mbstowcs() routine is available
853 to convert a multibyte string into a wide character string.
854
855d_mbtowc (d_mbtowc.U):
856 This variable conditionally defines the HAS_MBTOWC symbol, which
857 indicates to the C program that the mbtowc() routine is available
858 to convert multibyte to a wide character.
859
a71cd7cd 860d_memchr (d_memchr.U):
861 This variable conditionally defines the HAS_MEMCHR symbol, which
862 indicates to the C program that the memchr() routine is available
863 to locate characters within a C string.
864
d7418ba7 865d_memcmp (d_memcmp.U):
866 This variable conditionally defines the HAS_MEMCMP symbol, which
867 indicates to the C program that the memcmp() routine is available
868 to compare blocks of memory.
869
870d_memcpy (d_memcpy.U):
871 This variable conditionally defines the HAS_MEMCPY symbol, which
872 indicates to the C program that the memcpy() routine is available
873 to copy blocks of memory.
874
875d_memmove (d_memmove.U):
876 This variable conditionally defines the HAS_MEMMOVE symbol, which
877 indicates to the C program that the memmove() routine is available
878 to copy potentatially overlapping blocks of memory.
879
880d_memset (d_memset.U):
881 This variable conditionally defines the HAS_MEMSET symbol, which
882 indicates to the C program that the memset() routine is available
883 to set blocks of memory.
884
885d_mkdir (d_mkdir.U):
886 This variable conditionally defines the HAS_MKDIR symbol, which
887 indicates to the C program that the mkdir() routine is available
888 to create directories..
889
890d_mkfifo (d_mkfifo.U):
891 This variable conditionally defines the HAS_MKFIFO symbol, which
892 indicates to the C program that the mkfifo() routine is available.
893
894d_mktime (d_mktime.U):
895 This variable conditionally defines the HAS_MKTIME symbol, which
896 indicates to the C program that the mktime() routine is available.
897
732c9516 898d_mmap (d_mmap.U):
899 This variable conditionally defines HAS_MMAP if mmap() is
900 available to map a file into memory.
901
902d_mprotect (d_mprotect.U):
903 This variable conditionally defines HAS_MPROTECT if mprotect() is
904 available to modify the access protection of a memory mapped file.
905
d7418ba7 906d_msg (d_msg.U):
907 This variable conditionally defines the HAS_MSG symbol, which
908 indicates that the entire msg*(2) library is present.
909
de4597cb 910d_msg_ctrunc (d_socket.U):
911 This variable conditionally defines the HAS_MSG_CTRUNC symbol,
912 which indicates that the MSG_CTRUNC is available. #ifdef is
913 not enough because it may be an enum, glibc has been known to do this.
914
915d_msg_dontroute (d_socket.U):
916 This variable conditionally defines the HAS_MSG_DONTROUTE symbol,
917 which indicates that the MSG_DONTROUTE is available. #ifdef is
918 not enough because it may be an enum, glibc has been known to do this.
919
920d_msg_oob (d_socket.U):
921 This variable conditionally defines the HAS_MSG_OOB symbol,
922 which indicates that the MSG_OOB is available. #ifdef is
923 not enough because it may be an enum, glibc has been known to do this.
924
925d_msg_peek (d_socket.U):
926 This variable conditionally defines the HAS_MSG_PEEK symbol,
927 which indicates that the MSG_PEEK is available. #ifdef is
928 not enough because it may be an enum, glibc has been known to do this.
929
930d_msg_proxy (d_socket.U):
931 This variable conditionally defines the HAS_MSG_PROXY symbol,
932 which indicates that the MSG_PROXY is available. #ifdef is
933 not enough because it may be an enum, glibc has been known to do this.
934
dfe9444c 935d_msgctl (d_msgctl.U):
936 This variable conditionally defines the HAS_MSGCTL symbol, which
937 indicates to the C program that the msgctl() routine is available.
938
939d_msgget (d_msgget.U):
940 This variable conditionally defines the HAS_MSGGET symbol, which
941 indicates to the C program that the msgget() routine is available.
942
de4597cb 943d_msghdr_s (d_socket.U):
944 This variable conditionally defines the HAS_STRUCT_MSGHDR symbol,
945 which indicates that the struct msghdr is supported.
946
dfe9444c 947d_msgrcv (d_msgrcv.U):
948 This variable conditionally defines the HAS_MSGRCV symbol, which
949 indicates to the C program that the msgrcv() routine is available.
950
951d_msgsnd (d_msgsnd.U):
952 This variable conditionally defines the HAS_MSGSND symbol, which
953 indicates to the C program that the msgsnd() routine is available.
954
732c9516 955d_msync (d_msync.U):
956 This variable conditionally defines HAS_MSYNC if msync() is
957 available to synchronize a mapped file.
958
959d_munmap (d_munmap.U):
960 This variable conditionally defines HAS_MUNMAP if munmap() is
961 available to unmap a region mapped by mmap().
962
d7418ba7 963d_mymalloc (mallocsrc.U):
964 This variable conditionally defines MYMALLOC in case other parts
965 of the source want to take special action if MYMALLOC is used.
966 This may include different sorts of profiling or error detection.
967
921b2963 968d_nextkey64 (dbm64.U):
969 This variable conditionally defines the HAS_NEXTKEY64 symbol, which
970 indicates to the C program that the nextkey64() routine is available.
971
d7418ba7 972d_nice (d_nice.U):
973 This variable conditionally defines the HAS_NICE symbol, which
974 indicates to the C program that the nice() routine is available.
975
af4c28eb 976d_off64_t (io64.U):
921b2963 977 This symbol will be defined if the C compiler supports off64_t.
978
af4c28eb 979d_offset_t (io64.U):
980 This symbol will be defined if the C compiler supports offset_t.
981
ef4af2be 982d_old_pthread_create_joinable (d_pthrattrj.U):
983 This variable conditionally defines pthread_create_joinable.
984 undef if pthread.h defines PTHREAD_CREATE_JOINABLE.
985
693762b4 986d_oldpthreads (usethreads.U):
987 This variable conditionally defines the OLD_PTHREADS_API symbol,
988 and indicates that Perl should be built to use the old
989 draft POSIX threads API. This is only potneially meaningful if
990 usethreads is set.
991
dfe9444c 992d_oldsock (d_socket.U):
993 This variable conditionally defines the OLDSOCKET symbol, which
994 indicates that the BSD socket interface is based on 4.1c and not 4.2.
d7418ba7 995
996d_open3 (d_open3.U):
997 This variable conditionally defines the HAS_OPEN3 manifest constant,
998 which indicates to the C program that the 3 argument version of
999 the open(2) function is available.
1000
921b2963 1001d_open64 (io64.U):
1002 This variable conditionally defines the HAS_OPEN64 symbol, which
1003 indicates to the C program that the open64() routine is available.
1004
1005d_opendir64 (io64.U):
1006 This variable conditionally defines the HAS_OPENDIR64 symbol, which
1007 indicates to the C program that the opendir64() routine is available.
1008
d7418ba7 1009d_pathconf (d_pathconf.U):
1010 This variable conditionally defines the HAS_PATHCONF symbol, which
1011 indicates to the C program that the pathconf() routine is available
1012 to determine file-system related limits and options associated
1013 with a given filename.
1014
1015d_pause (d_pause.U):
1016 This variable conditionally defines the HAS_PAUSE symbol, which
1017 indicates to the C program that the pause() routine is available
1018 to suspend a process until a signal is received.
1019
dfe9444c 1020d_phostname (d_gethname.U):
af4c28eb 1021 This variable conditionally defines the HAS_PHOSTNAME symbol, which
dfe9444c 1022 contains the shell command which, when fed to popen(), may be
1023 used to derive the host name.
1024
d7418ba7 1025d_pipe (d_pipe.U):
1026 This variable conditionally defines the HAS_PIPE symbol, which
1027 indicates to the C program that the pipe() routine is available
1028 to create an inter-process channel.
1029
1030d_poll (d_poll.U):
1031 This variable conditionally defines the HAS_POLL symbol, which
1032 indicates to the C program that the poll() routine is available
1033 to poll active file descriptors.
1034
dfe9444c 1035d_portable (d_portable.U):
1036 This variable conditionally defines the PORTABLE symbol, which
1037 indicates to the C program that it should not assume that it is
1038 running on the machine it was compiled on.
1039
1040d_pthread_yield (d_pthread_y.U):
1041 This variable conditionally defines the HAS_PTHREAD_YIELD
1042 symbol if the pthread_yield routine is available to yield
1043 the execution of the current thread.
1044
d7418ba7 1045d_pwage (i_pwd.U):
c4f23d77 1046 This variable conditionally defines PWAGE, which indicates
d7418ba7 1047 that struct passwd contains pw_age.
1048
1049d_pwchange (i_pwd.U):
c4f23d77 1050 This variable conditionally defines PWCHANGE, which indicates
d7418ba7 1051 that struct passwd contains pw_change.
1052
1053d_pwclass (i_pwd.U):
c4f23d77 1054 This variable conditionally defines PWCLASS, which indicates
d7418ba7 1055 that struct passwd contains pw_class.
1056
1057d_pwcomment (i_pwd.U):
c4f23d77 1058 This variable conditionally defines PWCOMMENT, which indicates
d7418ba7 1059 that struct passwd contains pw_comment.
1060
1061d_pwexpire (i_pwd.U):
c4f23d77 1062 This variable conditionally defines PWEXPIRE, which indicates
d7418ba7 1063 that struct passwd contains pw_expire.
1064
c4f23d77 1065d_pwgecos (i_pwd.U):
1066 This variable conditionally defines PWGECOS, which indicates
1067 that struct passwd contains pw_gecos.
1068
93341792 1069d_pwpasswd (i_pwd.U):
1070 This variable conditionally defines PWPASSWD, which indicates
1071 that struct passwd contains pw_passwd.
1072
d7418ba7 1073d_pwquota (i_pwd.U):
c4f23d77 1074 This variable conditionally defines PWQUOTA, which indicates
d7418ba7 1075 that struct passwd contains pw_quota.
1076
921b2963 1077d_readdir64 (io64.U):
1078 This variable conditionally defines the HAS_READDIR64 symbol, which
1079 indicates to the C program that the readdir64() routine is available.
1080
d7418ba7 1081d_readdir (d_readdir.U):
1082 This variable conditionally defines HAS_READDIR if readdir() is
1083 available to read directory entries.
1084
1085d_readlink (d_readlink.U):
1086 This variable conditionally defines the HAS_READLINK symbol, which
1087 indicates to the C program that the readlink() routine is available
1088 to read the value of a symbolic link.
1089
de4597cb 1090d_readv (d_readv.U):
1091 This variable conditionally defines the HAS_READV symbol, which
1092 indicates to the C program that the readv() routine is available.
1093
1094d_recvmsg (d_socket.U):
1095 This variable conditionally defines the HAS_RECVMSG symbol,
1096 which indicates that the recvmsg is supported.
1097
d7418ba7 1098d_rename (d_rename.U):
1099 This variable conditionally defines the HAS_RENAME symbol, which
1100 indicates to the C program that the rename() routine is available
1101 to rename files.
1102
1103d_rewinddir (d_readdir.U):
1104 This variable conditionally defines HAS_REWINDDIR if rewinddir() is
1105 available.
1106
1107d_rmdir (d_rmdir.U):
1108 This variable conditionally defines HAS_RMDIR if rmdir() is
1109 available to remove directories.
1110
1111d_safebcpy (d_safebcpy.U):
1112 This variable conditionally defines the HAS_SAFE_BCOPY symbol if
1113 the bcopy() routine can do overlapping copies.
1114
1115d_safemcpy (d_safemcpy.U):
1116 This variable conditionally defines the HAS_SAFE_MEMCPY symbol if
1117 the memcpy() routine can do overlapping copies.
1118
7e1af8bc 1119d_sanemcmp (d_sanemcmp.U):
1120 This variable conditionally defines the HAS_SANE_MEMCMP symbol if
1121 the memcpy() routine is available and can be used to compare relative
1122 magnitudes of chars with their high bits set.
1123
dfe9444c 1124d_sched_yield (d_pthread_y.U):
1125 This variable conditionally defines the HAS_SCHED_YIELD
1126 symbol if the sched_yield routine is available to yield
1127 the execution of the current thread.
1128
de4597cb 1129d_scm_rights (d_socket.U):
1130 This variable conditionally defines the HAS_SCM_RIGHTS symbol,
1131 which indicates that the SCM_RIGHTS is available. #ifdef is
1132 not enough because it may be an enum, glibc has been known to do this.
1133
921b2963 1134d_seekdir64 (io64.U):
1135 This variable conditionally defines the HAS_SEEKDIR64 symbol, which
1136 indicates to the C program that the seekdir64() routine is available.
1137
d7418ba7 1138d_seekdir (d_readdir.U):
1139 This variable conditionally defines HAS_SEEKDIR if seekdir() is
1140 available.
1141
1142d_select (d_select.U):
1143 This variable conditionally defines HAS_SELECT if select() is
1144 available to select active file descriptors. A <sys/time.h>
1145 inclusion may be necessary for the timeout field.
1146
1147d_sem (d_sem.U):
1148 This variable conditionally defines the HAS_SEM symbol, which
1149 indicates that the entire sem*(2) library is present.
1150
dfe9444c 1151d_semctl (d_semctl.U):
1152 This variable conditionally defines the HAS_SEMCTL symbol, which
1153 indicates to the C program that the semctl() routine is available.
1154
af4c28eb 1155d_semctl_semid_ds (d_union_semun.U):
bd89102f 1156 This variable conditionally defines USE_SEMCTL_SEMID_DS, which
1157 indicates that struct semid_ds * is to be used for semctl IPC_STAT.
1158
af4c28eb 1159d_semctl_semun (d_union_semun.U):
bd89102f 1160 This variable conditionally defines USE_SEMCTL_SEMUN, which
1161 indicates that union semun is to be used for semctl IPC_STAT.
1162
dfe9444c 1163d_semget (d_semget.U):
1164 This variable conditionally defines the HAS_SEMGET symbol, which
1165 indicates to the C program that the semget() routine is available.
1166
1167d_semop (d_semop.U):
1168 This variable conditionally defines the HAS_SEMOP symbol, which
1169 indicates to the C program that the semop() routine is available.
1170
de4597cb 1171d_sendmsg (d_socket.U):
1172 This variable conditionally defines the HAS_SENDMSG symbol,
1173 which indicates that the sendmsg is supported.
1174
d7418ba7 1175d_setegid (d_setegid.U):
1176 This variable conditionally defines the HAS_SETEGID symbol, which
1177 indicates to the C program that the setegid() routine is available
1178 to change the effective gid of the current program.
1179
1180d_seteuid (d_seteuid.U):
1181 This variable conditionally defines the HAS_SETEUID symbol, which
1182 indicates to the C program that the seteuid() routine is available
1183 to change the effective uid of the current program.
1184
93341792 1185d_setgrent (d_setgrent.U):
1186 This variable conditionally defines the HAS_SETGRENT symbol, which
1187 indicates to the C program that the setgrent() routine is available
1188 for initializing sequential access to the group database.
1189
dfe9444c 1190d_setgrps (d_setgrps.U):
1191 This variable conditionally defines the HAS_SETGROUPS symbol, which
1192 indicates to the C program that the setgroups() routine is available
1193 to set the list of process groups.
1194
693762b4 1195d_sethent (d_sethent.U):
1196 This variable conditionally defines HAS_SETHOSTENT if sethostent() is
1197 available.
1198
d7418ba7 1199d_setlinebuf (d_setlnbuf.U):
1200 This variable conditionally defines the HAS_SETLINEBUF symbol, which
1201 indicates to the C program that the setlinebuf() routine is available
1202 to change stderr or stdout from block-buffered or unbuffered to a
1203 line-buffered mode.
1204
1205d_setlocale (d_setlocale.U):
1206 This variable conditionally defines HAS_SETLOCALE if setlocale() is
1207 available to handle locale-specific ctype implementations.
1208
e5c9fcd0 1209d_setnent (d_setnent.U):
1210 This variable conditionally defines HAS_SETNETENT if setnetent() is
1211 available.
1212
1213d_setpent (d_setpent.U):
1214 This variable conditionally defines HAS_SETPROTOENT if setprotoent() is
1215 available.
1216
d7418ba7 1217d_setpgid (d_setpgid.U):
dfe9444c 1218 This variable conditionally defines the HAS_SETPGID symbol if the
1219 setpgid(pid, gpid) function is available to set process group ID.
d7418ba7 1220
1221d_setpgrp2 (d_setpgrp2.U):
1222 This variable conditionally defines the HAS_SETPGRP2 symbol, which
1223 indicates to the C program that the setpgrp2() (as in DG/UX) routine
1224 is available to set the current process group.
1225
dfe9444c 1226d_setpgrp (d_setpgrp.U):
1227 This variable conditionally defines HAS_SETPGRP if setpgrp() is
1228 available to set the current process group.
1229
d7418ba7 1230d_setprior (d_setprior.U):
1231 This variable conditionally defines HAS_SETPRIORITY if setpriority()
1232 is available to set a process's priority.
1233
93341792 1234d_setpwent (d_setpwent.U):
1235 This variable conditionally defines the HAS_SETPWENT symbol, which
1236 indicates to the C program that the setpwent() routine is available
1237 for initializing sequential access to the passwd database.
1238
d7418ba7 1239d_setregid (d_setregid.U):
1240 This variable conditionally defines HAS_SETREGID if setregid() is
1241 available to change the real and effective gid of the current
1242 process.
1243
1244d_setresgid (d_setregid.U):
1245 This variable conditionally defines HAS_SETRESGID if setresgid() is
1246 available to change the real, effective and saved gid of the current
1247 process.
1248
1249d_setresuid (d_setreuid.U):
1250 This variable conditionally defines HAS_SETREUID if setresuid() is
1251 available to change the real, effective and saved uid of the current
1252 process.
1253
1254d_setreuid (d_setreuid.U):
1255 This variable conditionally defines HAS_SETREUID if setreuid() is
1256 available to change the real and effective uid of the current
1257 process.
1258
1259d_setrgid (d_setrgid.U):
1260 This variable conditionally defines the HAS_SETRGID symbol, which
1261 indicates to the C program that the setrgid() routine is available
1262 to change the real gid of the current program.
1263
1264d_setruid (d_setruid.U):
1265 This variable conditionally defines the HAS_SETRUID symbol, which
1266 indicates to the C program that the setruid() routine is available
1267 to change the real uid of the current program.
1268
e5c9fcd0 1269d_setsent (d_setsent.U):
1270 This variable conditionally defines HAS_SETSERVENT if setservent() is
1271 available.
1272
d7418ba7 1273d_setsid (d_setsid.U):
1274 This variable conditionally defines HAS_SETSID if setsid() is
1275 available to set the process group ID.
1276
e5c9fcd0 1277d_setvbuf (d_setvbuf.U):
1278 This variable conditionally defines the HAS_SETVBUF symbol, which
1279 indicates to the C program that the setvbuf() routine is available
1280 to change buffering on an open stdio stream.
1281
d7418ba7 1282d_sfio (d_sfio.U):
1283 This variable conditionally defines the USE_SFIO symbol,
1284 and indicates whether sfio is available (and should be used).
1285
1286d_shm (d_shm.U):
1287 This variable conditionally defines the HAS_SHM symbol, which
1288 indicates that the entire shm*(2) library is present.
1289
dfe9444c 1290d_shmat (d_shmat.U):
1291 This variable conditionally defines the HAS_SHMAT symbol, which
1292 indicates to the C program that the shmat() routine is available.
1293
d7418ba7 1294d_shmatprototype (d_shmat.U):
1295 This variable conditionally defines the HAS_SHMAT_PROTOTYPE
1296 symbol, which indicates that sys/shm.h has a prototype for
1297 shmat.
1298
dfe9444c 1299d_shmctl (d_shmctl.U):
1300 This variable conditionally defines the HAS_SHMCTL symbol, which
1301 indicates to the C program that the shmctl() routine is available.
1302
1303d_shmdt (d_shmdt.U):
1304 This variable conditionally defines the HAS_SHMDT symbol, which
1305 indicates to the C program that the shmdt() routine is available.
1306
1307d_shmget (d_shmget.U):
1308 This variable conditionally defines the HAS_SHMGET symbol, which
1309 indicates to the C program that the shmget() routine is available.
1310
d7418ba7 1311d_sigaction (d_sigaction.U):
1312 This variable conditionally defines the HAS_SIGACTION symbol, which
1313 indicates that the Vr4 sigaction() routine is available.
1314
1315d_sigsetjmp (d_sigsetjmp.U):
1316 This variable conditionally defines the HAS_SIGSETJMP symbol,
1317 which indicates that the sigsetjmp() routine is available to
1318 call setjmp() and optionally save the process's signal mask.
1319
1320d_socket (d_socket.U):
1321 This variable conditionally defines HAS_SOCKET, which indicates
1322 that the BSD socket interface is supported.
1323
1324d_sockpair (d_socket.U):
1325 This variable conditionally defines the HAS_SOCKETPAIR symbol, which
1326 indicates that the BSD socketpair() is supported.
1327
921b2963 1328d_stat64 (io64.U):
1329 This variable conditionally defines the HAS_STAT64 symbol, which
1330 indicates to the C program that the stat64() routine is available.
1331
d7418ba7 1332d_statblks (d_statblks.U):
921b2963 1333 This variable conditionally defines USE_STAT_BLOCKS
1334 if this system has a stat structure declaring
1335 st_blksize and st_blocks.
d7418ba7 1336
732c9516 1337d_statfs (d_statfs.U):
1338 This variable conditionally defines the HAS_STATFS symbol, which
1339 indicates to the C program that the statfs() routine is available.
1340
1341d_statfsflags (d_statfs.U):
1342 This variable conditionally defines the HAS_STRUCT_STATFS_FLAGS
1343 symbol, which indicates to struct statfs from has f_flags member.
1344 This kind of struct statfs is coming from sys/mount.h (BSD),
1345 not from sys/statfs.h (SYSV).
1346
1347d_statvfs (d_statvfs.U):
1348 This variable conditionally defines the HAS_STATVFS symbol, which
1349 indicates to the C program that the statvfs() routine is available.
1350
d7418ba7 1351d_stdio_cnt_lval (d_stdstdio.U):
1352 This variable conditionally defines STDIO_CNT_LVALUE if the
1353 FILE_cnt macro can be used as an lvalue.
1354
1355d_stdio_ptr_lval (d_stdstdio.U):
1356 This variable conditionally defines STDIO_PTR_LVALUE if the
1357 FILE_ptr macro can be used as an lvalue.
1358
a71cd7cd 1359d_stdio_stream_array (stdio_streams.U):
1360 This variable tells whether there is an array holding
1361 the stdio streams.
1362
d7418ba7 1363d_stdiobase (d_stdstdio.U):
1364 This variable conditionally defines USE_STDIO_BASE if this system
1365 has a FILE structure declaring a usable _base field (or equivalent)
1366 in stdio.h.
1367
1368d_stdstdio (d_stdstdio.U):
1369 This variable conditionally defines USE_STDIO_PTR if this system
1370 has a FILE structure declaring usable _ptr and _cnt fields (or
1371 equivalent) in stdio.h.
1372
921b2963 1373d_store64 (dbm64.U):
1374 This variable conditionally defines the HAS_STORE64 symbol, which
1375 indicates to the C program that the store64() routine is available.
1376
d7418ba7 1377d_strchr (d_strchr.U):
1378 This variable conditionally defines HAS_STRCHR if strchr() and
1379 strrchr() are available for string searching.
1380
1381d_strcoll (d_strcoll.U):
1382 This variable conditionally defines HAS_STRCOLL if strcoll() is
1383 available to compare strings using collating information.
1384
1385d_strctcpy (d_strctcpy.U):
1386 This variable conditionally defines the USE_STRUCT_COPY symbol, which
1387 indicates to the C program that this C compiler knows how to copy
1388 structures.
1389
1390d_strerrm (d_strerror.U):
1391 This variable holds what Strerrr is defined as to translate an error
1392 code condition into an error message string. It could be 'strerror'
1393 or a more complex macro emulating strrror with sys_errlist[], or the
1394 "unknown" string when both strerror and sys_errlist are missing.
1395
1396d_strerror (d_strerror.U):
1397 This variable conditionally defines HAS_STRERROR if strerror() is
1398 available to translate error numbers to strings.
1399
7e1af8bc 1400d_strtod (d_strtod.U):
1401 This variable conditionally defines the HAS_STRTOD symbol, which
1402 indicates to the C program that the strtod() routine is available
1403 to provide better numeric string conversion than atof().
1404
1405d_strtol (d_strtol.U):
1406 This variable conditionally defines the HAS_STRTOL symbol, which
1407 indicates to the C program that the strtol() routine is available
1408 to provide better numeric string conversion than atoi() and friends.
1409
1410d_strtoul (d_strtoul.U):
1411 This variable conditionally defines the HAS_STRTOUL symbol, which
1412 indicates to the C program that the strtoul() routine is available
1413 to provide conversion of strings to unsigned long.
1414
d7418ba7 1415d_strxfrm (d_strxfrm.U):
1416 This variable conditionally defines HAS_STRXFRM if strxfrm() is
1417 available to transform strings.
1418
1419d_suidsafe (d_dosuid.U):
1420 This variable conditionally defines SETUID_SCRIPTS_ARE_SECURE_NOW
1421 if setuid scripts can be secure. This test looks in /dev/fd/.
1422
1423d_symlink (d_symlink.U):
1424 This variable conditionally defines the HAS_SYMLINK symbol, which
1425 indicates to the C program that the symlink() routine is available
1426 to create symbolic links.
1427
1428d_syscall (d_syscall.U):
1429 This variable conditionally defines HAS_SYSCALL if syscall() is
1430 available call arbitrary system calls.
1431
1432d_sysconf (d_sysconf.U):
1433 This variable conditionally defines the HAS_SYSCONF symbol, which
1434 indicates to the C program that the sysconf() routine is available
1435 to determine system related limits and options.
1436
dfe9444c 1437d_sysernlst (d_strerror.U):
1438 This variable conditionally defines HAS_SYS_ERRNOLIST if sys_errnolist[]
1439 is available to translate error numbers to the symbolic name.
1440
d7418ba7 1441d_syserrlst (d_strerror.U):
1442 This variable conditionally defines HAS_SYS_ERRLIST if sys_errlist[] is
1443 available to translate error numbers to strings.
1444
1445d_system (d_system.U):
1446 This variable conditionally defines HAS_SYSTEM if system() is
1447 available to issue a shell command.
1448
1449d_tcgetpgrp (d_tcgtpgrp.U):
1450 This variable conditionally defines the HAS_TCGETPGRP symbol, which
1451 indicates to the C program that the tcgetpgrp() routine is available.
1452 to get foreground process group ID.
1453
1454d_tcsetpgrp (d_tcstpgrp.U):
1455 This variable conditionally defines the HAS_TCSETPGRP symbol, which
1456 indicates to the C program that the tcsetpgrp() routine is available
1457 to set foreground process group ID.
1458
921b2963 1459d_telldir64 (io64.U):
1460 This variable conditionally defines the HAS_TELLDIR64 symbol, which
1461 indicates to the C program that the telldir64() routine is available.
1462
d7418ba7 1463d_telldir (d_readdir.U):
1464 This variable conditionally defines HAS_TELLDIR if telldir() is
1465 available.
1466
732c9516 1467d_telldirproto (d_telldirproto.U):
1468 This variable conditionally defines the HAS_TELLDIR_PROTO symbol,
1469 which indicates to the C program that the system provides
1470 a prototype for the telldir() function. Otherwise, it is
1471 up to the program to supply one.
1472
dfe9444c 1473d_time (d_time.U):
1474 This variable conditionally defines the HAS_TIME symbol, which indicates
1475 that the time() routine exists. The time() routine is normaly
1476 provided on UNIX systems.
1477
d7418ba7 1478d_times (d_times.U):
1479 This variable conditionally defines the HAS_TIMES symbol, which indicates
1480 that the times() routine exists. The times() routine is normaly
1481 provided on UNIX systems. You may have to include <sys/times.h>.
1482
921b2963 1483d_tmpfile64 (stdio64.U):
1484 This variable conditionally defines the HAS_TMPFILE64 symbol, which
1485 indicates to the C program that the tmpfile64() routine is available.
1486
1487d_truncate64 (io64.U):
1488 This variable conditionally defines the HAS_TRUNCATE64 symbol, which
1489 indicates to the C program that the truncate64() routine is available.
1490
d7418ba7 1491d_truncate (d_truncate.U):
1492 This variable conditionally defines HAS_TRUNCATE if truncate() is
1493 available to truncate files.
1494
1495d_tzname (d_tzname.U):
1496 This variable conditionally defines HAS_TZNAME if tzname[] is
1497 available to access timezone names.
1498
1499d_umask (d_umask.U):
1500 This variable conditionally defines the HAS_UMASK symbol, which
1501 indicates to the C program that the umask() routine is available.
1502 to set and get the value of the file creation mask.
1503
1504d_uname (d_gethname.U):
1505 This variable conditionally defines the HAS_UNAME symbol, which
1506 indicates to the C program that the uname() routine may be
1507 used to derive the host name.
1508
af4c28eb 1509d_union_semun (d_union_semun.U):
bd89102f 1510 This variable conditionally defines HAS_UNION_SEMUN if the
1511 union semun is defined by including <sys/sem.h>.
1512
d7418ba7 1513d_vfork (d_vfork.U):
1514 This variable conditionally defines the HAS_VFORK symbol, which
1515 indicates the vfork() routine is available.
1516
1517d_void_closedir (d_closedir.U):
1518 This variable conditionally defines VOID_CLOSEDIR if closedir()
1519 does not return a value.
1520
dfe9444c 1521d_voidsig (d_voidsig.U):
1522 This variable conditionally defines VOIDSIG if this system
1523 declares "void (*signal(...))()" in signal.h. The old way was to
1524 declare it as "int (*signal(...))()".
1525
1526d_voidtty (i_sysioctl.U):
1527 This variable conditionally defines USE_IOCNOTTY to indicate that the
1528 ioctl() call with TIOCNOTTY should be used to void tty association.
1529 Otherwise (on USG probably), it is enough to close the standard file
1530 decriptors and do a setpgrp().
1531
d7418ba7 1532d_volatile (d_volatile.U):
1533 This variable conditionally defines the HASVOLATILE symbol, which
1534 indicates to the C program that this C compiler knows about the
1535 volatile declaration.
1536
1537d_vprintf (d_vprintf.U):
1538 This variable conditionally defines the HAS_VPRINTF symbol, which
1539 indicates to the C program that the vprintf() routine is available
1540 to printf with a pointer to an argument list.
1541
1542d_wait4 (d_wait4.U):
1543 This variable conditionally defines the HAS_WAIT4 symbol, which
1544 indicates the wait4() routine is available.
1545
1546d_waitpid (d_waitpid.U):
1547 This variable conditionally defines HAS_WAITPID if waitpid() is
1548 available to wait for child process.
1549
1550d_wcstombs (d_wcstombs.U):
1551 This variable conditionally defines the HAS_WCSTOMBS symbol, which
1552 indicates to the C program that the wcstombs() routine is available
1553 to convert wide character strings to multibyte strings.
1554
1555d_wctomb (d_wctomb.U):
1556 This variable conditionally defines the HAS_WCTOMB symbol, which
1557 indicates to the C program that the wctomb() routine is available
1558 to convert a wide character to a multibyte.
1559
de4597cb 1560d_writev (d_writev.U):
1561 This variable conditionally defines the HAS_WRITEV symbol, which
1562 indicates to the C program that the writev() routine is available.
1563
dfe9444c 1564d_xenix (Guess.U):
1565 This variable conditionally defines the symbol XENIX, which alerts
1566 the C program that it runs under Xenix.
1567
3a6175e1 1568date (Loc.U):
1569 This variable is be used internally by Configure to determine the
1570 full pathname (if any) of the date program. After Configure runs,
1571 the value is reset to a plain "date" and is not useful.
1572
d7418ba7 1573db_hashtype (i_db.U):
1574 This variable contains the type of the hash structure element
1575 in the <db.h> header file. In older versions of DB, it was
1576 int, while in newer ones it is u_int32_t.
1577
1578db_prefixtype (i_db.U):
1579 This variable contains the type of the prefix structure element
1580 in the <db.h> header file. In older versions of DB, it was
1581 int, while in newer ones it is size_t.
1582
732c9516 1583defvoidused (voidflags.U):
1584 This variable contains the default value of the VOIDUSED symbol (15).
1585
d7418ba7 1586direntrytype (i_dirent.U):
1587 This symbol is set to 'struct direct' or 'struct dirent' depending on
1588 whether dirent is available or not. You should use this pseudo type to
1589 portably declare your directory entries.
1590
1591dlext (dlext.U):
1592 This variable contains the extension that is to be used for the
1593 dynamically loaded modules that perl generaties.
1594
1595dlsrc (dlsrc.U):
1596 This variable contains the name of the dynamic loading file that
1597 will be used with the package.
1598
693762b4 1599doublesize (doublesize.U):
1600 This variable contains the value of the DOUBLESIZE symbol, which
1601 indicates to the C program how many bytes there are in a double.
1602
921b2963 1603drand01 (randfunc.U):
1604 Indicates the macro to be used to generate normalized
1605 random numbers. Uses randfunc, often divided by
1606 (double) (((unsigned long) 1 << randbits)) in order to
1607 normalize the result.
1608 In C programs, the macro 'Drand01' is mapped to drand01.
1609
d7418ba7 1610dynamic_ext (Extensions.U):
bfb7748a 1611 This variable holds a list of XS extension files we want to
d7418ba7 1612 link dynamically into the package. It is used by Makefile.
1613
1614eagain (nblock_io.U):
1615 This variable bears the symbolic errno code set by read() when no
1616 data is present on the file and non-blocking I/O was enabled (otherwise,
1617 read() blocks naturally).
1618
93341792 1619ebcdic (ebcdic.U):
1620 This variable conditionally defines EBCDIC if this
1621 system uses EBCDIC encoding. Among other things, this
1622 means that the character ranges are not contiguous.
1623 See trnl.U
1624
3a6175e1 1625echo (Loc.U):
1626 This variable is be used internally by Configure to determine the
1627 full pathname (if any) of the echo program. After Configure runs,
1628 the value is reset to a plain "echo" and is not useful.
1629
1630egrep (Loc.U):
1631 This variable is be used internally by Configure to determine the
1632 full pathname (if any) of the egrep program. After Configure runs,
1633 the value is reset to a plain "egrep" and is not useful.
1634
1635emacs (Loc.U):
1636 This variable is defined but not used by Configure.
1637 The value is a plain '' and is not useful.
1638
d7418ba7 1639eunicefix (Init.U):
1640 When running under Eunice this variable contains a command which will
1641 convert a shell script to the proper form of text file for it to be
1642 executable by the shell. On other systems it is a no-op.
1643
1644exe_ext (Unix.U):
dfe9444c 1645 This is an old synonym for _exe.
1646
3a6175e1 1647expr (Loc.U):
1648 This variable is be used internally by Configure to determine the
1649 full pathname (if any) of the expr program. After Configure runs,
1650 the value is reset to a plain "expr" and is not useful.
1651
dfe9444c 1652extensions (Extensions.U):
bfb7748a 1653 This variable holds a list of all extension files (both XS and
1654 non-xs linked into the package. It is propagated to Config.pm
dfe9444c 1655 and is typically used to test whether a particular extesion
1656 is available.
d7418ba7 1657
a71cd7cd 1658fflushall (fflushall.U):
1659 This symbol, if defined, tells that to flush
1660 all pending stdio output one must loop through all
1661 the stdio file handles stored in an array and fflush them.
a32a45b6 1662 Note that if fflushNULL is defined, fflushall will not
1663 even be probed for and will be left undefined.
a71cd7cd 1664
1665fflushNULL (fflushall.U):
1666 This symbol, if defined, tells that fflush(NULL) does flush
1667 all pending stdio output.
1668
3a6175e1 1669find (Loc.U):
921b2963 1670 This variable is defined but not used by Configure.
1671 The value is a plain '' and is not useful.
3a6175e1 1672
d7418ba7 1673firstmakefile (Unix.U):
1674 This variable defines the first file searched by make. On unix,
1675 it is makefile (then Makefile). On case-insensitive systems,
1676 it might be something else. This is only used to deal with
1677 convoluted make depend tricks.
1678
3a6175e1 1679flex (Loc.U):
1680 This variable is defined but not used by Configure.
1681 The value is a plain '' and is not useful.
1682
d7418ba7 1683fpostype (fpostype.U):
1684 This variable defines Fpos_t to be something like fpost_t, long,
1685 uint, or whatever type is used to declare file positions in libc.
1686
1687freetype (mallocsrc.U):
1688 This variable contains the return type of free(). It is usually
1689 void, but occasionally int.
1690
732c9516 1691full_ar (Loc_ar.U):
1692 This variable contains the full pathname to 'ar', whether or
1693 not the user has specified 'portability'. This is only used
1694 in the Makefile.SH.
1695
d7418ba7 1696full_csh (d_csh.U):
1697 This variable contains the full pathname to 'csh', whether or
1698 not the user has specified 'portability'. This is only used
1699 in the compiled C program, and we assume that all systems which
1700 can share this executable will have the same full pathname to
1701 'csh.'
1702
1703full_sed (Loc_sed.U):
1704 This variable contains the full pathname to 'sed', whether or
1705 not the user has specified 'portability'. This is only used
1706 in the compiled C program, and we assume that all systems which
1707 can share this executable will have the same full pathname to
1708 'sed.'
1709
dfe9444c 1710gccversion (cc.U):
1711 If GNU cc (gcc) is used, this variable holds '1' or '2' to
1712 indicate whether the compiler is version 1 or 2. This is used in
1713 setting some of the default cflags. It is set to '' if not gcc.
1714
d7418ba7 1715gidtype (gidtype.U):
1716 This variable defines Gid_t to be something like gid_t, int,
1717 ushort, or whatever type is used to declare the return type
1718 of getgid(). Typically, it is the type of group ids in the kernel.
1719
732c9516 1720glibpth (libpth.U):
1721 This variable holds the general path (space-separated) used to
1722 find libraries. It may contain directories that do not exist on
1723 this platform, libpth is the cleaned-up version.
1724
3a6175e1 1725grep (Loc.U):
1726 This variable is be used internally by Configure to determine the
1727 full pathname (if any) of the grep program. After Configure runs,
1728 the value is reset to a plain "grep" and is not useful.
1729
dfe9444c 1730groupcat (nis.U):
1731 This variable contains a command that produces the text of the
1732 /etc/group file. This is normally "cat /etc/group", but can be
1733 "ypcat group" when NIS is used.
1734
d7418ba7 1735groupstype (groupstype.U):
1736 This variable defines Groups_t to be something like gid_t, int,
1737 ushort, or whatever type is used for the second argument to
dfe9444c 1738 getgroups() and setgroups(). Usually, this is the same as
1739 gidtype (gid_t), but sometimes it isn't.
1740
3a6175e1 1741gzip (Loc.U):
1742 This variable is be used internally by Configure to determine the
1743 full pathname (if any) of the gzip program. After Configure runs,
1744 the value is reset to a plain "gzip" and is not useful.
1745
dfe9444c 1746h_fcntl (h_fcntl.U):
1747 This is variable gets set in various places to tell i_fcntl that
1748 <fcntl.h> should be included.
1749
1750h_sysfile (h_sysfile.U):
1751 This is variable gets set in various places to tell i_sys_file that
1752 <sys/file.h> should be included.
1753
1754hint (Oldconfig.U):
1755 Gives the type of hints used for previous answers. May be one of
1756 "default", "recommended" or "previous".
1757
1758hostcat (nis.U):
1759 This variable contains a command that produces the text of the
1760 /etc/hosts file. This is normally "cat /etc/hosts", but can be
1761 "ypcat hosts" when NIS is used.
1762
1763huge (models.U):
1764 This variable contains a flag which will tell the C compiler and loader
1765 to produce a program running with a huge memory model. If the
1766 huge model is not supported, contains the flag to produce large
1767 model programs. It is up to the Makefile to use this.
1768
93341792 1769i_arpainet (i_arpainet.U):
1770 This variable conditionally defines the I_ARPA_INET symbol,
1771 and indicates whether a C program should include <arpa/inet.h>.
1772
dfe9444c 1773i_bsdioctl (i_sysioctl.U):
1774 This variable conditionally defines the I_SYS_BSDIOCTL symbol, which
1775 indicates to the C program that <sys/bsdioctl.h> exists and should
1776 be included.
1777
1778i_db (i_db.U):
1779 This variable conditionally defines the I_DB symbol, and indicates
1780 whether a C program may include Berkeley's DB include file <db.h>.
d7418ba7 1781
dc45a647 1782i_dbm (i_dbm.U):
1783 This variable conditionally defines the I_DBM symbol, which
1784 indicates to the C program that <dbm.h> exists and should
1785 be included.
1786
d7418ba7 1787i_dirent (i_dirent.U):
1788 This variable conditionally defines I_DIRENT, which indicates
1789 to the C program that it should include <dirent.h>.
1790
dfe9444c 1791i_dld (i_dld.U):
1792 This variable conditionally defines the I_DLD symbol, which
1793 indicates to the C program that <dld.h> (GNU dynamic loading)
1794 exists and should be included.
1795
d7418ba7 1796i_dlfcn (i_dlfcn.U):
1797 This variable conditionally defines the I_DLFCN symbol, which
1798 indicates to the C program that <dlfcn.h> exists and should
1799 be included.
1800
1801i_fcntl (i_fcntl.U):
1802 This variable controls the value of I_FCNTL (which tells
1803 the C program to include <fcntl.h>).
1804
1805i_float (i_float.U):
1806 This variable conditionally defines the I_FLOAT symbol, and indicates
1807 whether a C program may include <float.h> to get symbols like DBL_MAX
1808 or DBL_MIN, i.e. machine dependent floating point values.
1809
dc45a647 1810i_gdbm (i_gdbm.U):
1811 This variable conditionally defines the I_GDBM symbol, which
1812 indicates to the C program that <gdbm.h> exists and should
1813 be included.
1814
d7418ba7 1815i_grp (i_grp.U):
1816 This variable conditionally defines the I_GRP symbol, and indicates
1817 whether a C program should include <grp.h>.
1818
921b2963 1819i_inttypes (i_inttypes.U):
ccc7f9b3 1820 This variable conditionally defines the I_INTTYPES symbol,
1821 and indicates whether a C program should include <inttypes.h>.
921b2963 1822
d7418ba7 1823i_limits (i_limits.U):
1824 This variable conditionally defines the I_LIMITS symbol, and indicates
1825 whether a C program may include <limits.h> to get symbols like WORD_BIT
1826 and friends.
1827
1828i_locale (i_locale.U):
1829 This variable conditionally defines the I_LOCALE symbol,
1830 and indicates whether a C program should include <locale.h>.
1831
921b2963 1832i_machcthr (i_machcthr.U):
ccc7f9b3 1833 This variable conditionally defines the I_MACH_CTHREADS symbol,
1834 and indicates whether a C program should include <mach/cthreads.h>.
921b2963 1835
dfe9444c 1836i_malloc (i_malloc.U):
1837 This variable conditionally defines the I_MALLOC symbol, and indicates
1838 whether a C program should include <malloc.h>.
1839
d7418ba7 1840i_math (i_math.U):
1841 This variable conditionally defines the I_MATH symbol, and indicates
1842 whether a C program may include <math.h>.
1843
1844i_memory (i_memory.U):
1845 This variable conditionally defines the I_MEMORY symbol, and indicates
1846 whether a C program should include <memory.h>.
1847
732c9516 1848i_mntent (i_mntent.U):
1849 This variable conditionally defines the I_MNTENT symbol, and indicates
1850 whether a C program should include <mntent.h>.
1851
dc45a647 1852i_ndbm (i_ndbm.U):
1853 This variable conditionally defines the I_NDBM symbol, which
1854 indicates to the C program that <ndbm.h> exists and should
1855 be included.
1856
dfe9444c 1857i_netdb (i_netdb.U):
1858 This variable conditionally defines the I_NETDB symbol, and indicates
1859 whether a C program should include <netdb.h>.
1860
d7418ba7 1861i_neterrno (i_neterrno.U):
1862 This variable conditionally defines the I_NET_ERRNO symbol, which
1863 indicates to the C program that <net/errno.h> exists and should
1864 be included.
1865
a71cd7cd 1866i_netinettcp (i_netinettcp.U):
1867 This variable conditionally defines the I_NETINET_TCP symbol,
1868 and indicates whether a C program should include <netinet/tcp.h>.
1869
d7418ba7 1870i_niin (i_niin.U):
1871 This variable conditionally defines I_NETINET_IN, which indicates
1872 to the C program that it should include <netinet/in.h>. Otherwise,
1873 you may try <sys/in.h>.
1874
5b34fd99 1875i_poll (i_poll.U):
1876 This variable conditionally defines the I_POLL symbol, and indicates
1877 whether a C program should include <poll.h>.
1878
af4c28eb 1879i_pthread (i_pthread.U):
1880 This variable conditionally defines the I_PTHREADEAD symbol,
1881 and indicates whether a C program should include <pthread.h>.
1882
d7418ba7 1883i_pwd (i_pwd.U):
1884 This variable conditionally defines I_PWD, which indicates
1885 to the C program that it should include <pwd.h>.
1886
1887i_rpcsvcdbm (i_dbm.U):
1888 This variable conditionally defines the I_RPCSVC_DBM symbol, which
1889 indicates to the C program that <rpcsvc/dbm.h> exists and should
1890 be included. Some System V systems might need this instead of <dbm.h>.
1891
1892i_sfio (i_sfio.U):
1893 This variable conditionally defines the I_SFIO symbol,
1894 and indicates whether a C program should include <sfio.h>.
1895
1896i_sgtty (i_termio.U):
1897 This variable conditionally defines the I_SGTTY symbol, which
1898 indicates to the C program that it should include <sgtty.h> rather
1899 than <termio.h>.
1900
1901i_stdarg (i_varhdr.U):
1902 This variable conditionally defines the I_STDARG symbol, which
1903 indicates to the C program that <stdarg.h> exists and should
1904 be included.
1905
1906i_stddef (i_stddef.U):
1907 This variable conditionally defines the I_STDDEF symbol, which
1908 indicates to the C program that <stddef.h> exists and should
1909 be included.
1910
1911i_stdlib (i_stdlib.U):
1912 This variable conditionally defines the I_STDLIB symbol, which
1913 indicates to the C program that <stdlib.h> exists and should
1914 be included.
1915
1916i_string (i_string.U):
1917 This variable conditionally defines the I_STRING symbol, which
1918 indicates that <string.h> should be included rather than <strings.h>.
1919
921b2963 1920i_sysaccess (i_sysaccess.U):
ccc7f9b3 1921 This variable conditionally defines the I_SYS_ACCESS symbol,
1922 and indicates whether a C program should include <sys/access.h>.
921b2963 1923
d7418ba7 1924i_sysdir (i_sysdir.U):
1925 This variable conditionally defines the I_SYS_DIR symbol, and indicates
1926 whether a C program should include <sys/dir.h>.
1927
1928i_sysfile (i_sysfile.U):
1929 This variable conditionally defines the I_SYS_FILE symbol, and indicates
1930 whether a C program should include <sys/file.h> to get R_OK and friends.
1931
dfe9444c 1932i_sysfilio (i_sysioctl.U):
1933 This variable conditionally defines the I_SYS_FILIO symbol, which
1934 indicates to the C program that <sys/filio.h> exists and should
1935 be included in preference to <sys/ioctl.h>.
1936
1937i_sysin (i_niin.U):
1938 This variable conditionally defines I_SYS_IN, which indicates
1939 to the C program that it should include <sys/in.h> instead of
1940 <netinet/in.h>.
1941
d7418ba7 1942i_sysioctl (i_sysioctl.U):
1943 This variable conditionally defines the I_SYS_IOCTL symbol, which
1944 indicates to the C program that <sys/ioctl.h> exists and should
1945 be included.
1946
732c9516 1947i_sysmman (i_sysmman.U):
1948 This variable conditionally defines the I_SYS_MMAN symbol, and
1949 indicates whether a C program should include <sys/mman.h>.
1950
1951i_sysmount (i_sysmount.U):
1952 This variable conditionally defines the I_SYSMOUNT symbol,
1953 and indicates whether a C program should include <sys/mount.h>.
1954
d7418ba7 1955i_sysndir (i_sysndir.U):
1956 This variable conditionally defines the I_SYS_NDIR symbol, and indicates
1957 whether a C program should include <sys/ndir.h>.
1958
1959i_sysparam (i_sysparam.U):
1960 This variable conditionally defines the I_SYS_PARAM symbol, and indicates
1961 whether a C program should include <sys/param.h>.
1962
1963i_sysresrc (i_sysresrc.U):
1964 This variable conditionally defines the I_SYS_RESOURCE symbol,
1965 and indicates whether a C program should include <sys/resource.h>.
1966
921b2963 1967i_syssecrt (i_syssecrt.U):
ccc7f9b3 1968 This variable conditionally defines the I_SYS_SECURITY symbol,
1969 and indicates whether a C program should include <sys/security.h>.
921b2963 1970
d7418ba7 1971i_sysselct (i_sysselct.U):
1972 This variable conditionally defines I_SYS_SELECT, which indicates
1973 to the C program that it should include <sys/select.h> in order to
1974 get the definition of struct timeval.
1975
dfe9444c 1976i_syssockio (i_sysioctl.U):
1977 This variable conditionally defines I_SYS_SOCKIO to indicate to the
1978 C program that socket ioctl codes may be found in <sys/sockio.h>
1979 instead of <sys/ioctl.h>.
1980
d7418ba7 1981i_sysstat (i_sysstat.U):
1982 This variable conditionally defines the I_SYS_STAT symbol,
1983 and indicates whether a C program should include <sys/stat.h>.
1984
732c9516 1985i_sysstatvfs (i_sysstatvfs.U):
1986 This variable conditionally defines the I_SYSSTATVFS symbol,
1987 and indicates whether a C program should include <sys/statvfs.h>.
1988
d7418ba7 1989i_systime (i_time.U):
1990 This variable conditionally defines I_SYS_TIME, which indicates
1991 to the C program that it should include <sys/time.h>.
1992
1993i_systimek (i_time.U):
1994 This variable conditionally defines I_SYS_TIME_KERNEL, which
1995 indicates to the C program that it should include <sys/time.h>
1996 with KERNEL defined.
1997
1998i_systimes (i_systimes.U):
1999 This variable conditionally defines the I_SYS_TIMES symbol, and indicates
2000 whether a C program should include <sys/times.h>.
2001
2002i_systypes (i_systypes.U):
2003 This variable conditionally defines the I_SYS_TYPES symbol,
2004 and indicates whether a C program should include <sys/types.h>.
2005
de4597cb 2006i_sysuio (i_sysuio.U):
2007 This variable conditionally defines the I_SYSUIO symbol, and indicates
2008 whether a C program should include <sys/uio.h>.
2009
d7418ba7 2010i_sysun (i_sysun.U):
2011 This variable conditionally defines I_SYS_UN, which indicates
2012 to the C program that it should include <sys/un.h> to get UNIX
2013 domain socket definitions.
2014
2015i_syswait (i_syswait.U):
2016 This variable conditionally defines I_SYS_WAIT, which indicates
2017 to the C program that it should include <sys/wait.h>.
2018
2019i_termio (i_termio.U):
2020 This variable conditionally defines the I_TERMIO symbol, which
2021 indicates to the C program that it should include <termio.h> rather
2022 than <sgtty.h>.
2023
2024i_termios (i_termio.U):
2025 This variable conditionally defines the I_TERMIOS symbol, which
2026 indicates to the C program that the POSIX <termios.h> file is
2027 to be included.
2028
2029i_time (i_time.U):
2030 This variable conditionally defines I_TIME, which indicates
2031 to the C program that it should include <time.h>.
2032
2033i_unistd (i_unistd.U):
2034 This variable conditionally defines the I_UNISTD symbol, and indicates
2035 whether a C program should include <unistd.h>.
2036
2037i_utime (i_utime.U):
2038 This variable conditionally defines the I_UTIME symbol, and indicates
2039 whether a C program should include <utime.h>.
2040
2041i_values (i_values.U):
2042 This variable conditionally defines the I_VALUES symbol, and indicates
2043 whether a C program may include <values.h> to get symbols like MAXLONG
2044 and friends.
2045
2046i_varargs (i_varhdr.U):
2047 This variable conditionally defines I_VARARGS, which indicates
2048 to the C program that it should include <varargs.h>.
2049
2050i_varhdr (i_varhdr.U):
2051 Contains the name of the header to be included to get va_dcl definition.
2052 Typically one of varargs.h or stdarg.h.
2053
2054i_vfork (i_vfork.U):
2055 This variable conditionally defines the I_VFORK symbol, and indicates
2056 whether a C program should include vfork.h.
2057
921b2963 2058ignore_versioned_solibs (libs.U):
2059 This variable should be non-empty if non-versioned shared
2060 libraries (libfoo.so.x.y) are to be ignored (because they
2061 cannot be linked against).
2062
dfe9444c 2063incpath (usrinc.U):
2064 This variable must preceed the normal include path to get hte
2065 right one, as in "$incpath/usr/include" or "$incpath/usr/lib".
2066 Value can be "" or "/bsd43" on mips.
2067
3a6175e1 2068inews (Loc.U):
2069 This variable is defined but not used by Configure.
2070 The value is a plain '' and is not useful.
2071
dfe9444c 2072installarchlib (archlib.U):
2073 This variable is really the same as archlibexp but may differ on
2074 those systems using AFS. For extra portability, only this variable
2075 should be used in makefiles.
2076
d7418ba7 2077installbin (bin.U):
2078 This variable is the same as binexp unless AFS is running in which case
2079 the user is explicitely prompted for it. This variable should always
2080 be used in your makefiles for maximum portability.
2081
dfe9444c 2082installman1dir (man1dir.U):
2083 This variable is really the same as man1direxp, unless you are using
2084 AFS in which case it points to the read/write location whereas
2085 man1direxp only points to the read-only access location. For extra
2086 portability, you should only use this variable within your makefiles.
2087
2088installman3dir (man3dir.U):
2089 This variable is really the same as man3direxp, unless you are using
2090 AFS in which case it points to the read/write location whereas
2091 man3direxp only points to the read-only access location. For extra
2092 portability, you should only use this variable within your makefiles.
2093
d7418ba7 2094installprivlib (privlib.U):
2095 This variable is really the same as privlibexp but may differ on
2096 those systems using AFS. For extra portability, only this variable
2097 should be used in makefiles.
2098
dfe9444c 2099installscript (scriptdir.U):
2100 This variable is usually the same as scriptdirexp, unless you are on
2101 a system running AFS, in which case they may differ slightly. You
2102 should always use this variable within your makefiles for portability.
2103
2104installsitearch (sitearch.U):
2105 This variable is really the same as sitearchexp but may differ on
2106 those systems using AFS. For extra portability, only this variable
2107 should be used in makefiles.
2108
2109installsitelib (sitelib.U):
2110 This variable is really the same as sitelibexp but may differ on
2111 those systems using AFS. For extra portability, only this variable
2112 should be used in makefiles.
2113
732c9516 2114installusrbinperl (instubperl.U):
2115 This variable tells whether Perl should be installed also as
2116 /usr/bin/perl in addition to
2117 $installbin/perl
2118
d7418ba7 2119intsize (intsize.U):
dfe9444c 2120 This variable contains the value of the INTSIZE symbol, which
2121 indicates to the C program how many bytes there are in an int.
2122
2123known_extensions (Extensions.U):
bfb7748a 2124 This variable holds a list of all XS extensions included in
dfe9444c 2125 the package.
d7418ba7 2126
3a6175e1 2127ksh (Loc.U):
2128 This variable is defined but not used by Configure.
2129 The value is a plain '' and is not useful.
2130
d7418ba7 2131large (models.U):
2132 This variable contains a flag which will tell the C compiler and loader
2133 to produce a program running with a large memory model. It is up to
2134 the Makefile to use this.
2135
2136ld (dlsrc.U):
2137 This variable indicates the program to be used to link
2138 libraries for dynamic loading. On some systems, it is 'ld'.
2139 On ELF systems, it should be $cc. Mostly, we'll try to respect
2140 the hint file setting.
2141
2142lddlflags (dlsrc.U):
2143 This variable contains any special flags that might need to be
2144 passed to $ld to create a shared library suitable for dynamic
2145 loading. It is up to the makefile to use it. For hpux, it
fb87c415 2146 should be '-b'. For sunos 4.1, it is empty.
d7418ba7 2147
2148ldflags (ccflags.U):
2149 This variable contains any additional C loader flags desired by
2150 the user. It is up to the Makefile to use this.
2151
3a6175e1 2152less (Loc.U):
2153 This variable is be used internally by Configure to determine the
2154 full pathname (if any) of the less program. After Configure runs,
2155 the value is reset to a plain "less" and is not useful.
2156
d7418ba7 2157lib_ext (Unix.U):
dfe9444c 2158 This is an old synonym for _a.
2159
2160libc (libc.U):
2161 This variable contains the location of the C library.
d7418ba7 2162
2163libperl (libperl.U):
2164 The perl executable is obtained by linking perlmain.c with
2165 libperl, any static extensions (usually just DynaLoader),
2166 and any other libraries needed on this system. libperl
2167 is usually libperl.a, but can also be libperl.so.xxx if
2168 the user wishes to build a perl executable with a shared
2169 library.
2170
dfe9444c 2171libpth (libpth.U):
732c9516 2172 This variable holds the general path (space-separated) used to find
2173 libraries. It is intended to be used by other units.
dfe9444c 2174
d7418ba7 2175libs (libs.U):
2176 This variable holds the additional libraries we want to use.
2177 It is up to the Makefile to deal with it.
2178
dfe9444c 2179libswanted (Myinit.U):
2180 This variable holds a list of all the libraries we want to
2181 search. The order is chosen to pick up the c library
2182 ahead of ucb or bsd libraries for SVR4.
2183
3a6175e1 2184line (Loc.U):
921b2963 2185 This variable is defined but not used by Configure.
2186 The value is a plain '' and is not useful.
3a6175e1 2187
2188lint (Loc.U):
2189 This variable is defined but not used by Configure.
2190 The value is a plain '' and is not useful.
2191
dfe9444c 2192lkflags (ccflags.U):
2193 This variable contains any additional C partial linker flags desired by
2194 the user. It is up to the Makefile to use this.
2195
3a6175e1 2196ln (Loc.U):
2197 This variable is be used internally by Configure to determine the
2198 full pathname (if any) of the ln program. After Configure runs,
2199 the value is reset to a plain "ln" and is not useful.
2200
d7418ba7 2201lns (lns.U):
2202 This variable holds the name of the command to make
2203 symbolic links (if they are supported). It can be used
2204 in the Makefile. It is either 'ln -s' or 'ln'
2205
dfe9444c 2206locincpth (ccflags.U):
2207 This variable contains a list of additional directories to be
fb87c415 2208 searched by the compiler. The appropriate '-I' directives will
dfe9444c 2209 be added to ccflags. This is intended to simplify setting
2210 local directories from the Configure command line.
2211 It's not much, but it parallels the loclibpth stuff in libpth.U.
2212
2213loclibpth (libpth.U):
732c9516 2214 This variable holds the paths (space-separated) used to find local
2215 libraries. It is prepended to libpth, and is intended to be easily
2216 set from the command line.
dfe9444c 2217
e5c9fcd0 2218longdblsize (d_longdbl.U):
2219 This variable contains the value of the LONG_DOUBLESIZE symbol, which
2220 indicates to the C program how many bytes there are in a long double,
2221 if this system supports long doubles.
2222
dc45a647 2223longlongsize (d_longlong.U):
2224 This variable contains the value of the LONGLONGSIZE symbol, which
2225 indicates to the C program how many bytes there are in a long long,
2226 if this system supports long long.
2227
4fdae800 2228longsize (intsize.U):
dfe9444c 2229 This variable contains the value of the LONGSIZE symbol, which
2230 indicates to the C program how many bytes there are in a long.
4fdae800 2231
3a6175e1 2232lp (Loc.U):
2233 This variable is defined but not used by Configure.
2234 The value is a plain '' and is not useful.
2235
2236lpr (Loc.U):
2237 This variable is defined but not used by Configure.
2238 The value is a plain '' and is not useful.
2239
2240ls (Loc.U):
2241 This variable is be used internally by Configure to determine the
2242 full pathname (if any) of the ls program. After Configure runs,
2243 the value is reset to a plain "ls" and is not useful.
2244
921b2963 2245lseeksize (lseektype.U):
2246 This variable defines lseektype to be something like off_t, long,
2247 or whatever type is used to declare lseek offset's type in the
2248 kernel (which also appears to be lseek's return type).
2249
d7418ba7 2250lseektype (lseektype.U):
2251 This variable defines lseektype to be something like off_t, long,
2252 or whatever type is used to declare lseek offset's type in the
2253 kernel (which also appears to be lseek's return type).
2254
3a6175e1 2255mail (Loc.U):
2256 This variable is defined but not used by Configure.
2257 The value is a plain '' and is not useful.
2258
2259mailx (Loc.U):
2260 This variable is defined but not used by Configure.
2261 The value is a plain '' and is not useful.
2262
2263make (Loc.U):
2264 This variable is be used internally by Configure to determine the
2265 full pathname (if any) of the make program. After Configure runs,
2266 the value is reset to a plain "make" and is not useful.
2267
d7418ba7 2268make_set_make (make.U):
2269 Some versions of 'make' set the variable MAKE. Others do not.
2270 This variable contains the string to be included in Makefile.SH
2271 so that MAKE is set if needed, and not if not needed.
2272 Possible values are:
dfe9444c 2273 make_set_make='#' # If your make program handles this for you,
2274 make_set_make="MAKE=$make" # if it doesn't.
d7418ba7 2275 I used a comment character so that we can distinguish a
af4c28eb 2276 'set' value (from a previous config.sh or Configure '-D' option)
d7418ba7 2277 from an uncomputed value.
2278
2279mallocobj (mallocsrc.U):
2280 This variable contains the name of the malloc.o that this package
2281 generates, if that malloc.o is preferred over the system malloc.
2282 Otherwise the value is null. This variable is intended for generating
2283 Makefiles. See mallocsrc.
2284
2285mallocsrc (mallocsrc.U):
2286 This variable contains the name of the malloc.c that comes with
2287 the package, if that malloc.c is preferred over the system malloc.
2288 Otherwise the value is null. This variable is intended for generating
2289 Makefiles.
2290
2291malloctype (mallocsrc.U):
2292 This variable contains the kind of ptr returned by malloc and realloc.
2293
2294man1dir (man1dir.U):
2295 This variable contains the name of the directory in which manual
2296 source pages are to be put. It is the responsibility of the
2297 Makefile.SH to get the value of this into the proper command.
2298 You must be prepared to do the ~name expansion yourself.
2299
dfe9444c 2300man1direxp (man1dir.U):
2301 This variable is the same as the man1dir variable, but is filename
2302 expanded at configuration time, for convenient use in makefiles.
2303
d7418ba7 2304man1ext (man1dir.U):
2305 This variable contains the extension that the manual page should
2306 have: one of 'n', 'l', or '1'. The Makefile must supply the '.'.
2307 See man1dir.
2308
2309man3dir (man3dir.U):
2310 This variable contains the name of the directory in which manual
2311 source pages are to be put. It is the responsibility of the
2312 Makefile.SH to get the value of this into the proper command.
2313 You must be prepared to do the ~name expansion yourself.
2314
dfe9444c 2315man3direxp (man3dir.U):
2316 This variable is the same as the man3dir variable, but is filename
2317 expanded at configuration time, for convenient use in makefiles.
2318
d7418ba7 2319man3ext (man3dir.U):
2320 This variable contains the extension that the manual page should
2321 have: one of 'n', 'l', or '3'. The Makefile must supply the '.'.
2322 See man3dir.
2323
a71cd7cd 2324Mcc (Loc.U):
2325 This variable is be used internally by Configure to determine the
2326 full pathname (if any) of the Mcc program. After Configure runs,
2327 the value is reset to a plain "Mcc" and is not useful.
2328
dfe9444c 2329medium (models.U):
2330 This variable contains a flag which will tell the C compiler and loader
2331 to produce a program running with a medium memory model. If the
2332 medium model is not supported, contains the flag to produce large
2333 model programs. It is up to the Makefile to use this.
2334
2335mips_type (usrinc.U):
2336 This variable holds the environment type for the mips system.
2337 Possible values are "BSD 4.3" and "System V".
2338
3a6175e1 2339mkdir (Loc.U):
2340 This variable is be used internally by Configure to determine the
2341 full pathname (if any) of the mkdir program. After Configure runs,
2342 the value is reset to a plain "mkdir" and is not useful.
2343
732c9516 2344mmaptype (d_mmap.U):
2345 This symbol contains the type of pointer returned by mmap()
2346 (and simultaneously the type of the first argument).
2347 It can be 'void *' or 'caddr_t'.
2348
dfe9444c 2349models (models.U):
2350 This variable contains the list of memory models supported by this
2351 system. Possible component values are none, split, unsplit, small,
2352 medium, large, and huge. The component values are space separated.
2353
d7418ba7 2354modetype (modetype.U):
2355 This variable defines modetype to be something like mode_t,
2356 int, unsigned short, or whatever type is used to declare file
2357 modes for system calls.
2358
3a6175e1 2359more (Loc.U):
2360 This variable is be used internally by Configure to determine the
2361 full pathname (if any) of the more program. After Configure runs,
2362 the value is reset to a plain "more" and is not useful.
2363
af4c28eb 2364multiarch (multiarch.U):
2365 This variable conditionally defines the MULTIARCH symbol
2366 which signifies the presence of multiplatform files.
2367 This is normally set by hints files.
2368
3a6175e1 2369mv (Loc.U):
2370 This variable is defined but not used by Configure.
2371 The value is a plain '' and is not useful.
2372
dfe9444c 2373myarchname (archname.U):
2374 This variable holds the architecture name computed by Configure in
2375 a previous run. It is not intended to be perused by any user and
2376 should never be set in a hint file.
2377
2378mydomain (myhostname.U):
2379 This variable contains the eventual value of the MYDOMAIN symbol,
2380 which is the domain of the host the program is going to run on.
2381 The domain must be appended to myhostname to form a complete host name.
2382 The dot comes with mydomain, and need not be supplied by the program.
2383
dc45a647 2384myhostname (myhostname.U):
2385 This variable contains the eventual value of the MYHOSTNAME symbol,
2386 which is the name of the host the program is going to run on.
2387 The domain is not kept with hostname, but must be gotten from mydomain.
2388 The dot comes with mydomain, and need not be supplied by the program.
2389
dfe9444c 2390myuname (Oldconfig.U):
2391 The output of 'uname -a' if available, otherwise the hostname. On Xenix,
2392 pseudo variables assignments in the output are stripped, thank you. The
2393 whole thing is then lower-cased.
2394
d7418ba7 2395n (n.U):
af4c28eb 2396 This variable contains the '-n' flag if that is what causes the echo
d7418ba7 2397 command to suppress newline. Otherwise it is null. Correct usage is
ccc7f9b3 2398 $echo $n "prompt for a question: $c".
d7418ba7 2399
dfe9444c 2400netdb_hlen_type (netdbtype.U):
2401 This variable holds the type used for the 2nd argument to
2402 gethostbyaddr(). Usually, this is int or size_t or unsigned.
2403 This is only useful if you have gethostbyaddr(), naturally.
2404
2405netdb_host_type (netdbtype.U):
2406 This variable holds the type used for the 1st argument to
2407 gethostbyaddr(). Usually, this is char * or void *, possibly
2408 with or without a const prefix.
2409 This is only useful if you have gethostbyaddr(), naturally.
2410
2411netdb_name_type (netdbtype.U):
2412 This variable holds the type used for the argument to
2413 gethostbyname(). Usually, this is char * or const char *.
2414 This is only useful if you have gethostbyname(), naturally.
2415
2416netdb_net_type (netdbtype.U):
2417 This variable holds the type used for the 1st argument to
2418 getnetbyaddr(). Usually, this is int or long.
2419 This is only useful if you have getnetbyaddr(), naturally.
2420
732c9516 2421nm (Loc.U):
2422 This variable is be used internally by Configure to determine the
2423 full pathname (if any) of the nm program. After Configure runs,
2424 the value is reset to a plain "nm" and is not useful.
2425
dfe9444c 2426nm_opt (usenm.U):
2427 This variable holds the options that may be necessary for nm.
2428
2429nm_so_opt (usenm.U):
2430 This variable holds the options that may be necessary for nm
2431 to work on a shared library but that can not be used on an
2432 archive library. Currently, this is only used by Linux, where
2433 nm --dynamic is *required* to get symbols from an ELF library which
2434 has been stripped, but nm --dynamic is *fatal* on an archive library.
2435 Maybe Linux should just always set usenm=false.
2436
bfb7748a 2437nonxs_ext (Extensions.U):
2438 This variable holds a list of all non-xs extensions included
2439 in the package. All of them will be built.
2440
3a6175e1 2441nroff (Loc.U):
2442 This variable is be used internally by Configure to determine the
2443 full pathname (if any) of the nroff program. After Configure runs,
2444 the value is reset to a plain "nroff" and is not useful.
2445
d7418ba7 2446o_nonblock (nblock_io.U):
2447 This variable bears the symbol value to be used during open() or fcntl()
2448 to turn on non-blocking I/O for a file descriptor. If you wish to switch
2449 between blocking and non-blocking, you may try ioctl(FIOSNBIO) instead,
2450 but that is only supported by some devices.
2451
dfe9444c 2452obj_ext (Unix.U):
2453 This is an old synonym for _o.
d7418ba7 2454
ef4af2be 2455old_pthread_create_joinable (d_pthrattrj.U):
2456 This variable defines the constant to use for creating joinable
2457 (aka undetached) pthreads. Unused if pthread.h defines
2458 PTHREAD_CREATE_JOINABLE. If used, possible values are
2459 PTHREAD_CREATE_UNDETACHED and __UNDETACHED.
2460
d7418ba7 2461optimize (ccflags.U):
2462 This variable contains any optimizer/debugger flag that should be used.
2463 It is up to the Makefile to use it.
2464
dfe9444c 2465orderlib (orderlib.U):
2466 This variable is "true" if the components of libraries must be ordered
2467 (with `lorder $* | tsort`) before placing them in an archive. Set to
2468 "false" if ranlib or ar can generate random libraries.
2469
d7418ba7 2470osname (Oldconfig.U):
2471 This variable contains the operating system name (e.g. sunos,
2472 solaris, hpux, etc.). It can be useful later on for setting
2473 defaults. Any spaces are replaced with underscores. It is set
2474 to a null string if we can't figure it out.
2475
dfe9444c 2476osvers (Oldconfig.U):
2477 This variable contains the operating system version (e.g.
2478 4.1.3, 5.2, etc.). It is primarily used for helping select
2479 an appropriate hints file, but might be useful elsewhere for
2480 setting defaults. It is set to '' if we can't figure it out.
2481 We try to be flexible about how much of the version number
2482 to keep, e.g. if 4.1.1, 4.1.2, and 4.1.3 are essentially the
2483 same for this package, hints files might just be os_4.0 or
2484 os_4.1, etc., not keeping separate files for each little release.
2485
2486package (package.U):
2487 This variable contains the name of the package being constructed.
2488 It is primarily intended for the use of later Configure units.
2489
d7418ba7 2490pager (pager.U):
2491 This variable contains the name of the preferred pager on the system.
2492 Usual values are (the full pathnames of) more, less, pg, or cat.
2493
dfe9444c 2494passcat (nis.U):
2495 This variable contains a command that produces the text of the
2496 /etc/passwd file. This is normally "cat /etc/passwd", but can be
2497 "ypcat passwd" when NIS is used.
2498
2499patchlevel (patchlevel.U):
2500 The patchlevel level of this package.
2501 The value of patchlevel comes from the patchlevel.h file.
2502
d7418ba7 2503path_sep (Unix.U):
dfe9444c 2504 This is an old synonym for p_ in Head.U, the character
2505 used to separate elements in the command shell search PATH.
d7418ba7 2506
3a6175e1 2507perl (Loc.U):
921b2963 2508 This variable is defined but not used by Configure.
2509 The value is a plain '' and is not useful.
3a6175e1 2510
d7418ba7 2511perladmin (perladmin.U):
2512 Electronic mail address of the perl5 administrator.
2513
7e1af8bc 2514perlpath (perlpath.U):
2515 This variable contains the eventual value of the PERLPATH symbol,
2516 which contains the name of the perl interpreter to be used in
2517 shell scripts and in the "eval 'exec'" idiom.
2518
3a6175e1 2519pg (Loc.U):
2520 This variable is be used internally by Configure to determine the
2521 full pathname (if any) of the pg program. After Configure runs,
2522 the value is reset to a plain "pg" and is not useful.
2523
dfe9444c 2524phostname (myhostname.U):
2525 This variable contains the eventual value of the PHOSTNAME symbol,
2526 which is a command that can be fed to popen() to get the host name.
2527 The program should probably not presume that the domain is or isn't
2528 there already.
2529
2530pidtype (pidtype.U):
2531 This variable defines PIDTYPE to be something like pid_t, int,
2532 ushort, or whatever type is used to declare process ids in the kernel.
2533
2534plibpth (libpth.U):
2535 Holds the private path used by Configure to find out the libraries.
2536 Its value is prepend to libpth. This variable takes care of special
2537 machines, like the mips. Usually, it should be empty.
2538
3a6175e1 2539pmake (Loc.U):
2540 This variable is defined but not used by Configure.
2541 The value is a plain '' and is not useful.
2542
2543pr (Loc.U):
2544 This variable is defined but not used by Configure.
2545 The value is a plain '' and is not useful.
2546
d7418ba7 2547prefix (prefix.U):
2548 This variable holds the name of the directory below which the
2549 user will install the package. Usually, this is /usr/local, and
2550 executables go in /usr/local/bin, library stuff in /usr/local/lib,
2551 man pages in /usr/local/man, etc. It is only used to set defaults
2552 for things in bin.U, mansrc.U, privlib.U, or scriptdir.U.
2553
dfe9444c 2554prefixexp (prefix.U):
2555 This variable holds the full absolute path of the directory below
2556 which the user will install the package. Derived from prefix.
2557
d7418ba7 2558privlib (privlib.U):
2559 This variable contains the eventual value of the PRIVLIB symbol,
2560 which is the name of the private library for this package. It may
2561 have a ~ on the front. It is up to the makefile to eventually create
2562 this directory while performing installation (with ~ substitution).
2563
2564privlibexp (privlib.U):
2565 This variable is the ~name expanded version of privlib, so that you
2566 may use it directly in Makefiles or shell scripts.
2567
2568prototype (prototype.U):
2569 This variable holds the eventual value of CAN_PROTOTYPE, which
2570 indicates the C compiler can handle funciton prototypes.
2571
693762b4 2572ptrsize (ptrsize.U):
2573 This variable contains the value of the PTRSIZE symbol, which
2574 indicates to the C program how many bytes there are in a pointer.
2575
921b2963 2576randbits (randfunc.U):
2577 Indicates how many bits are produced by the function used to
2578 generate normalized random numbers.
2579
2580randfunc (randfunc.U):
2581 Indicates the name of the random number function to use.
2582 Values include drand48, random, and rand. In C programs,
2583 the 'Drand01' macro is defined to generate uniformly distributed
2584 random numbers over the range [0., 1.[ (see drand01 and nrand).
2585
2586randseedtype (randfunc.U):
2587 Indicates the type of the argument of the seedfunc.
d7418ba7 2588
2589ranlib (orderlib.U):
2590 This variable is set to the pathname of the ranlib program, if it is
2591 needed to generate random libraries. Set to ":" if ar can generate
2592 random libraries or if random libraries are not supported
2593
2594rd_nodata (nblock_io.U):
2595 This variable holds the return code from read() when no data is
2596 present. It should be -1, but some systems return 0 when O_NDELAY is
2597 used, which is a shame because you cannot make the difference between
2598 no data and an EOF.. Sigh!
2599
3a6175e1 2600rm (Loc.U):
2601 This variable is be used internally by Configure to determine the
2602 full pathname (if any) of the rm program. After Configure runs,
2603 the value is reset to a plain "rm" and is not useful.
2604
2605rmail (Loc.U):
2606 This variable is defined but not used by Configure.
2607 The value is a plain '' and is not useful.
2608
dfe9444c 2609runnm (usenm.U):
2610 This variable contains 'true' or 'false' depending whether the
2611 nm extraction should be performed or not, according to the value
2612 of usenm and the flags on the Configure command line.
2613
921b2963 2614sched_yield (d_pthread_y.U):
2615 This variable defines the way to yield the execution
2616 of the current thread.
2617
d7418ba7 2618scriptdir (scriptdir.U):
2619 This variable holds the name of the directory in which the user wants
2620 to put publicly scripts for the package in question. It is either
2621 the same directory as for binaries, or a special one that can be
2622 mounted across different architectures, like /usr/share. Programs
2623 must be prepared to deal with ~name expansion.
2624
dfe9444c 2625scriptdirexp (scriptdir.U):
2626 This variable is the same as scriptdir, but is filename expanded
2627 at configuration time, for programs not wanting to bother with it.
2628
3a6175e1 2629sed (Loc.U):
2630 This variable is be used internally by Configure to determine the
2631 full pathname (if any) of the sed program. After Configure runs,
2632 the value is reset to a plain "sed" and is not useful.
2633
921b2963 2634seedfunc (randfunc.U):
2635 Indicates the random number generating seed function.
2636 Values include srand48, srandom, and srand.
2637
2638selectminbits (selectminbits.U):
2639 This variable holds the minimum number of bits operated by select.
2640 That is, if you do select(n, ...), how many bits at least will be
2641 cleared in the masks if some activity is detected. Usually this
2642 is either n or 32*ceil(n/32), especially many little-endians do
2643 the latter. This is only useful if you have select(), naturally.
2644
d7418ba7 2645selecttype (selecttype.U):
2646 This variable holds the type used for the 2nd, 3rd, and 4th
2647 arguments to select. Usually, this is 'fd_set *', if HAS_FD_SET
2648 is defined, and 'int *' otherwise. This is only useful if you
2649 have select(), naturally.
2650
3a6175e1 2651sendmail (Loc.U):
921b2963 2652 This variable is defined but not used by Configure.
2653 The value is a plain '' and is not useful.
3a6175e1 2654
d7418ba7 2655sh (sh.U):
2656 This variable contains the full pathname of the shell used
2657 on this system to execute Bourne shell scripts. Usually, this will be
2658 /bin/sh, though it's possible that some systems will have /bin/ksh,
bb14ff96 2659 /bin/pdksh, /bin/ash, /bin/bash, or even something such as
2660 D:/bin/sh.exe.
af4c28eb 2661 This unit comes before Options.U, so you can't set sh with a '-D'
d7418ba7 2662 option, though you can override this (and startsh)
af4c28eb 2663 with '-O -Dsh=/bin/whatever -Dstartsh=whatever'
d7418ba7 2664
3a6175e1 2665shar (Loc.U):
2666 This variable is defined but not used by Configure.
2667 The value is a plain '' and is not useful.
2668
dfe9444c 2669sharpbang (spitshell.U):
2670 This variable contains the string #! if this system supports that
2671 construct.
2672
d7418ba7 2673shmattype (d_shmat.U):
2674 This symbol contains the type of pointer returned by shmat().
2675 It can be 'void *' or 'char *'.
2676
4fdae800 2677shortsize (intsize.U):
dfe9444c 2678 This variable contains the value of the SHORTSIZE symbol which
2679 indicates to the C program how many bytes there are in a short.
4fdae800 2680
c43cd16b 2681shrpenv (libperl.U):
2682 If the user builds a shared libperl.so, then we need to tell the
2683 'perl' executable where it will be able to find the installed libperl.so.
2684 One way to do this on some systems is to set the environment variable
2685 LD_RUN_PATH to the directory that will be the final location of the
2686 shared libperl.so. The makefile can use this with something like
ccc7f9b3 2687 $shrpenv $(CC) -o perl perlmain.o $libperl $libs
c43cd16b 2688 Typical values are
ccc7f9b3 2689 shrpenv="env LD_RUN_PATH=$archlibexp/CORE"
c43cd16b 2690 or
ccc7f9b3 2691 shrpenv=''
c43cd16b 2692 See the main perl Makefile.SH for actual working usage.
2693 Alternatively, we might be able to use a command line option such
2694 as -R $archlibexp/CORE (Solaris, NetBSD) or -Wl,-rpath
2695 $archlibexp/CORE (Linux).
2696
dfe9444c 2697shsharp (spitshell.U):
2698 This variable tells further Configure units whether your sh can
2699 handle # comments.
2700
af4c28eb 2701sig_count (sig_name.U):
2702 This variable holds a number larger than the largest valid
2703 signal number. This is usually the same as the NSIG macro.
2704
d7418ba7 2705sig_name (sig_name.U):
2706 This variable holds the signal names, space separated. The leading
dfe9444c 2707 SIG in signal name is removed. A ZERO is prepended to the
2708 list. This is currently not used.
2709
2710sig_name_init (sig_name.U):
2711 This variable holds the signal names, enclosed in double quotes and
2712 separated by commas, suitable for use in the SIG_NAME definition
2713 below. A "ZERO" is prepended to the list, and the list is
2714 terminated with a plain 0. The leading SIG in signal names
2715 is removed. See sig_num.
d7418ba7 2716
2717sig_num (sig_name.U):
921b2963 2718 This variable holds the signal numbers, space separated. A ZERO is
dfe9444c 2719 prepended to the list (corresponding to the fake SIGZERO), and
2720 the list is terminated with a 0. Those numbers correspond to
2721 the value of the signal listed in the same place within the
2722 sig_name list.
d7418ba7 2723
921b2963 2724sig_num_init (sig_name.U):
2725 This variable holds the signal numbers, enclosed in double quotes and
2726 separated by commas, suitable for use in the SIG_NUM definition
2727 below. A "ZERO" is prepended to the list, and the list is
2728 terminated with a plain 0.
2729
d7418ba7 2730signal_t (d_voidsig.U):
2731 This variable holds the type of the signal handler (void or int).
2732
2733sitearch (sitearch.U):
2734 This variable contains the eventual value of the SITEARCH symbol,
2735 which is the name of the private library for this package. It may
2736 have a ~ on the front. It is up to the makefile to eventually create
2737 this directory while performing installation (with ~ substitution).
2738
2739sitearchexp (sitearch.U):
2740 This variable is the ~name expanded version of sitearch, so that you
2741 may use it directly in Makefiles or shell scripts.
2742
2743sitelib (sitelib.U):
2744 This variable contains the eventual value of the SITELIB symbol,
2745 which is the name of the private library for this package. It may
2746 have a ~ on the front. It is up to the makefile to eventually create
2747 this directory while performing installation (with ~ substitution).
2748
2749sitelibexp (sitelib.U):
2750 This variable is the ~name expanded version of sitelib, so that you
2751 may use it directly in Makefiles or shell scripts.
2752
2753sizetype (sizetype.U):
2754 This variable defines sizetype to be something like size_t,
2755 unsigned long, or whatever type is used to declare length
2756 parameters for string functions.
2757
3a6175e1 2758sleep (Loc.U):
2759 This variable is defined but not used by Configure.
2760 The value is a plain '' and is not useful.
2761
2762smail (Loc.U):
2763 This variable is defined but not used by Configure.
2764 The value is a plain '' and is not useful.
2765
d7418ba7 2766small (models.U):
2767 This variable contains a flag which will tell the C compiler and loader
2768 to produce a program running with a small memory model. It is up to
2769 the Makefile to use this.
2770
dfe9444c 2771so (so.U):
2772 This variable holds the extension used to identify shared libraries
2773 (also known as shared objects) on the system. Usually set to 'so'.
2774
2775sockethdr (d_socket.U):
fb87c415 2776 This variable has any cpp '-I' flags needed for socket support.
dfe9444c 2777
2778socketlib (d_socket.U):
2779 This variable has the names of any libraries needed for socket support.
2780
3a6175e1 2781sort (Loc.U):
2782 This variable is be used internally by Configure to determine the
2783 full pathname (if any) of the sort program. After Configure runs,
2784 the value is reset to a plain "sort" and is not useful.
2785
dfe9444c 2786spackage (package.U):
2787 This variable contains the name of the package being constructed,
2788 with the first letter uppercased, i.e. suitable for starting
2789 sentences.
2790
d7418ba7 2791spitshell (spitshell.U):
2792 This variable contains the command necessary to spit out a runnable
af4c28eb 2793 shell on this system. It is either cat or a grep '-v' for # comments.
d7418ba7 2794
2795split (models.U):
2796 This variable contains a flag which will tell the C compiler and loader
2797 to produce a program that will run in separate I and D space, for those
2798 machines that support separation of instruction and data space. It is
2799 up to the Makefile to use this.
2800
dc45a647 2801src (src.U):
2802 This variable holds the path to the package source. It is up to
2803 the Makefile to use this variable and set VPATH accordingly to
2804 find the sources remotely.
2805
d7418ba7 2806ssizetype (ssizetype.U):
2807 This variable defines ssizetype to be something like ssize_t,
2808 long or int. It is used by functions that return a count
2809 of bytes or an error condition. It must be a signed type.
2810 We will pick a type such that sizeof(SSize_t) == sizeof(Size_t).
2811
2812startperl (startperl.U):
2813 This variable contains the string to put on the front of a perl
2814 script to make sure (hopefully) that it runs with perl and not some
2815 shell. Of course, that leading line must be followed by the classical
2816 perl idiom:
ccc7f9b3 2817 eval 'exec perl -S $0 ${1+"$@"}'
2818 if $running_under_some_shell;
d7418ba7 2819 to guarantee perl startup should the shell execute the script. Note
2820 that this magic incatation is not understood by csh.
2821
2822startsh (startsh.U):
2823 This variable contains the string to put on the front of a shell
2824 script to make sure (hopefully) that it runs with sh and not some
2825 other shell.
2826
2827static_ext (Extensions.U):
bfb7748a 2828 This variable holds a list of XS extension files we want to
d7418ba7 2829 link statically into the package. It is used by Makefile.
2830
2831stdchar (stdchar.U):
2832 This variable conditionally defines STDCHAR to be the type of char
2833 used in stdio.h. It has the values "unsigned char" or "char".
2834
dfe9444c 2835stdio_base (d_stdstdio.U):
2836 This variable defines how, given a FILE pointer, fp, to access the
2837 _base field (or equivalent) of stdio.h's FILE structure. This will
2838 be used to define the macro FILE_base(fp).
2839
2840stdio_bufsiz (d_stdstdio.U):
2841 This variable defines how, given a FILE pointer, fp, to determine
2842 the number of bytes store in the I/O buffer pointer to by the
2843 _base field (or equivalent) of stdio.h's FILE structure. This will
2844 be used to define the macro FILE_bufsiz(fp).
2845
2846stdio_cnt (d_stdstdio.U):
2847 This variable defines how, given a FILE pointer, fp, to access the
2848 _cnt field (or equivalent) of stdio.h's FILE structure. This will
2849 be used to define the macro FILE_cnt(fp).
2850
2851stdio_filbuf (d_stdstdio.U):
2852 This variable defines how, given a FILE pointer, fp, to tell
2853 stdio to refill it's internal buffers (?). This will
2854 be used to define the macro FILE_filbuf(fp).
2855
2856stdio_ptr (d_stdstdio.U):
2857 This variable defines how, given a FILE pointer, fp, to access the
2858 _ptr field (or equivalent) of stdio.h's FILE structure. This will
2859 be used to define the macro FILE_ptr(fp).
2860
a71cd7cd 2861stdio_stream_array (stdio_streams.U):
2862 This variable tells the name of the array holding the stdio streams.
2863 Usual values include _iob, __iob, and __sF.
2864
dfe9444c 2865strings (i_string.U):
2866 This variable holds the full path of the string header that will be
2867 used. Typically /usr/include/string.h or /usr/include/strings.h.
2868
3a6175e1 2869submit (Loc.U):
2870 This variable is defined but not used by Configure.
2871 The value is a plain '' and is not useful.
2872
dfe9444c 2873subversion (patchlevel.U):
2874 The subversion level of this package.
2875 The value of subversion comes from the patchlevel.h file.
2876 This is unique to perl.
2877
2878sysman (sysman.U):
2879 This variable holds the place where the manual is located on this
2880 system. It is not the place where the user wants to put his manual
2881 pages. Rather it is the place where Configure may look to find manual
2882 for unix commands (section 1 of the manual usually). See mansrc.
2883
3a6175e1 2884tail (Loc.U):
2885 This variable is defined but not used by Configure.
2886 The value is a plain '' and is not useful.
2887
2888tar (Loc.U):
2889 This variable is defined but not used by Configure.
2890 The value is a plain '' and is not useful.
2891
2892tbl (Loc.U):
2893 This variable is defined but not used by Configure.
2894 The value is a plain '' and is not useful.
2895
732c9516 2896tee (Loc.U):
af4c28eb 2897 This variable is defined but not used by Configure.
2898 The value is a plain '' and is not useful.
732c9516 2899
3a6175e1 2900test (Loc.U):
2901 This variable is be used internally by Configure to determine the
2902 full pathname (if any) of the test program. After Configure runs,
2903 the value is reset to a plain "test" and is not useful.
2904
dfe9444c 2905timeincl (i_time.U):
2906 This variable holds the full path of the included time header(s).
2907
d7418ba7 2908timetype (d_time.U):
2909 This variable holds the type returned by time(). It can be long,
2910 or time_t on BSD sites (in which case <sys/types.h> should be
2911 included). Anyway, the type Time_t should be used.
2912
3a6175e1 2913touch (Loc.U):
2914 This variable is be used internally by Configure to determine the
2915 full pathname (if any) of the touch program. After Configure runs,
2916 the value is reset to a plain "touch" and is not useful.
2917
2918tr (Loc.U):
2919 This variable is be used internally by Configure to determine the
2920 full pathname (if any) of the tr program. After Configure runs,
2921 the value is reset to a plain "tr" and is not useful.
2922
93341792 2923trnl (trnl.U):
2924 This variable contains the value to be passed to the tr(1)
2925 command to transliterate a newline. Typical values are
2926 '\012' and '\n'. This is needed for EBCDIC systems where
2927 newline is not necessarily '\012'.
2928
3a6175e1 2929troff (Loc.U):
2930 This variable is defined but not used by Configure.
2931 The value is a plain '' and is not useful.
2932
d7418ba7 2933uidtype (uidtype.U):
2934 This variable defines Uid_t to be something like uid_t, int,
2935 ushort, or whatever type is used to declare user ids in the kernel.
2936
3a6175e1 2937uname (Loc.U):
2938 This variable is be used internally by Configure to determine the
2939 full pathname (if any) of the uname program. After Configure runs,
2940 the value is reset to a plain "uname" and is not useful.
2941
2942uniq (Loc.U):
2943 This variable is be used internally by Configure to determine the
2944 full pathname (if any) of the uniq program. After Configure runs,
2945 the value is reset to a plain "uniq" and is not useful.
2946
921b2963 2947use64bits (use64bits.U):
2948 This variable conditionally defines the USE_64_BITS symbol,
2949 and indicates that explicit 64-bit interfaces should be used
2950 when available.
2951
dfe9444c 2952usedl (dlsrc.U):
2953 This variable indicates if the the system supports dynamic
2954 loading of some sort. See also dlsrc and dlobj.
2955
921b2963 2956usemultiplicity (usemultiplicity.U):
2957 This variable conditionally defines the MULTIPLICITY symbol,
2958 and indicates that Perl should be built to use multiplicity.
2959
dfe9444c 2960usemymalloc (mallocsrc.U):
2961 This variable contains y if the malloc that comes with this package
2962 is desired over the system's version of malloc. People often include
2963 special versions of malloc for effiency, but such versions are often
2964 less portable. See also mallocsrc and mallocobj.
2965 If this is 'y', then -lmalloc is removed from $libs.
2966
2967usenm (usenm.U):
2968 This variable contains 'true' or 'false' depending whether the
2969 nm extraction is wanted or not.
2970
2971useopcode (Extensions.U):
2972 This variable holds either 'true' or 'false' to indicate
2973 whether the Opcode extension should be used. The sole
2974 use for this currently is to allow an easy mechanism
2975 for users to skip the Opcode extension from the Configure
2976 command line.
2977
d7418ba7 2978useperlio (useperlio.U):
2979 This variable conditionally defines the USE_PERLIO symbol,
2980 and indicates that the PerlIO abstraction should be
2981 used throughout.
2982
dfe9444c 2983useposix (Extensions.U):
2984 This variable holds either 'true' or 'false' to indicate
2985 whether the POSIX extension should be used. The sole
2986 use for this currently is to allow an easy mechanism
2987 for hints files to indicate that POSIX will not compile
2988 on a particular system.
2989
2990usesfio (d_sfio.U):
2991 This variable is set to true when the user agrees to use sfio.
2992 It is set to false when sfio is not available or when the user
2993 explicitely requests not to use sfio. It is here primarily so
2994 that command-line settings can override the auto-detection of
2995 d_sfio without running into a "WHOA THERE".
2996
d7418ba7 2997useshrplib (libperl.U):
2998 This variable is set to 'yes' if the user wishes
2999 to build a shared libperl, and 'no' otherwise.
3000
dfe9444c 3001usethreads (usethreads.U):
3002 This variable conditionally defines the USE_THREADS symbol,
3003 and indicates that Perl should be built to use threads.
3004
3005usevfork (d_vfork.U):
3006 This variable is set to true when the user accepts to use vfork.
3007 It is set to false when no vfork is available or when the user
3008 explicitely requests not to use vfork.
3009
3010usrinc (usrinc.U):
3011 This variable holds the path of the include files, which is
3012 usually /usr/include. It is mainly used by other Configure units.
3013
3a6175e1 3014uuname (Loc.U):
3015 This variable is defined but not used by Configure.
3016 The value is a plain '' and is not useful.
3017
bfb7748a 3018version (patchlevel.U):
3019 The full version number of this package. This combines
3020 baserev, patchlevel, and subversion to get the full
3021 version number, including any possible subversions. Care
3022 is taken to use the C locale in order to get something
3023 like 5.004 instead of 5,004. This is unique to perl.
3024
3a6175e1 3025vi (Loc.U):
3026 This variable is defined but not used by Configure.
3027 The value is a plain '' and is not useful.
3028
d7418ba7 3029voidflags (voidflags.U):
3030 This variable contains the eventual value of the VOIDFLAGS symbol,
3031 which indicates how much support of the void type is given by this
3032 compiler. See VOIDFLAGS for more info.
3033
732c9516 3034xlibpth (libpth.U):
3035 This variable holds extra path (space-separated) used to find
3036 libraries on this platform, for example CPU-specific libraries
3037 (on multi-CPU platforms) may be listed here.
3038
3a6175e1 3039zcat (Loc.U):
3040 This variable is defined but not used by Configure.
3041 The value is a plain '' and is not useful.
3042
3043zip (Loc.U):
3044 This variable is be used internally by Configure to determine the
3045 full pathname (if any) of the zip program. After Configure runs,
3046 the value is reset to a plain "zip" and is not useful.
3047