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