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