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