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