diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2001-06-01 15:34:24 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-06-01 15:34:24 +0000 |
commit | 640374d0dfc3428416b596d67c06b3c817f44bd8 (patch) | |
tree | 0125d04838ec2165b6a564b01c53e815f9d81d20 /Porting/Glossary | |
parent | 592f596992fbcfa7e7c135f9212d2ec2def553a6 (diff) | |
download | perl-640374d0dfc3428416b596d67c06b3c817f44bd8.tar.gz |
Configure tweaks; record the Berkeley DB version,
probe for realpath(), for setresuid() and setresgid()
prototypes; use realpath() (try to be paranoid enough),
use the setres[ug]id prototypes because glibc has the functions
but not their prototypes; add -Wall -ansi to gcc ccflags;
regen toc.
p4raw-id: //depot/perl@10372
Diffstat (limited to 'Porting/Glossary')
-rw-r--r-- | Porting/Glossary | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/Porting/Glossary b/Porting/Glossary index 4f7aa8e346..d903a74e5d 100644 --- a/Porting/Glossary +++ b/Porting/Glossary @@ -1244,6 +1244,10 @@ d_readv (d_readv.U): This variable conditionally defines the HAS_READV symbol, which indicates to the C program that the readv() routine is available. +d_realpath (d_realpath.U): + This variable conditionally defines the HAS_REALPATH symbol, which + indicates to the C program that the realpath() routine is available. + d_recvmsg (d_recvmsg.U): This variable conditionally defines the HAS_RECVMSG symbol, which indicates to the C program that the recvmsg() routine is available. @@ -1513,6 +1517,12 @@ d_sqrtl (d_sqrtl.U): This variable conditionally defines the HAS_SQRTL symbol, which indicates to the C program that the sqrtl() routine is available. +d_sresuproto (d_sresuproto.U): + This variable conditionally defines the HAS_SETRESUID_PROTO symbol, + which indicates to the C program that the system provides + a prototype for the setresuid() function. Otherwise, it is + up to the program to supply one. + d_statblks (d_statblks.U): This variable conditionally defines USE_STAT_BLOCKS if this system has a stat structure declaring @@ -1806,6 +1816,20 @@ db_prefixtype (i_db.U): in the <db.h> header file. In older versions of DB, it was int, while in newer ones it is size_t. +db_version_major (i_db.U): + This variable contains the major version number of + Berkeley DB found in the <db.h> header file. + +db_version_minor (i_db.U): + This variable contains the minor version number of + Berkeley DB found in the <db.h> header file. + For DB version 1 this is always 0. + +db_version_patch (i_db.U): + This variable contains the patch version number of + Berkeley DB found in the <db.h> header file. + For DB version 1 this is always 0. + defvoidused (voidflags.U): This variable contains the default value of the VOIDUSED symbol (15). |