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