diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2001-06-04 02:19:58 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-06-04 02:19:58 +0000 |
commit | eef837ea0c553e009f33fedc28b7eec6c571999c (patch) | |
tree | 1eb29f11f97e123402be15dba81f3522663c29ec /Porting/config_H | |
parent | 520db9bffffad34af43925feedc35ce81e0fcf13 (diff) | |
download | perl-eef837ea0c553e009f33fedc28b7eec6c571999c.tar.gz |
Missed HAS_SETRESGID_PROTO. No serious harm done since
often this prototype goes with HAS_SETRESUID_PROTO.
p4raw-id: //depot/perl@10420
Diffstat (limited to 'Porting/config_H')
-rw-r--r-- | Porting/config_H | 27 |
1 files changed, 26 insertions, 1 deletions
diff --git a/Porting/config_H b/Porting/config_H index da74ef0c4c..85c4f3f13a 100644 --- a/Porting/config_H +++ b/Porting/config_H @@ -17,7 +17,7 @@ /* * Package name : perl5 * Source directory : . - * Configuration time: Fri Jun 1 18:23:33 EET DST 2001 + * Configuration time: Mon Jun 4 06:13:47 EET DST 2001 * Configured by : jhi * Target system : osf1 alpha.hut.fi v4.0 878 alpha */ @@ -2411,8 +2411,25 @@ * 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_CFG: + * This symbol, if defined, defines the major version number of + * Berkeley DB found in the <db.h> header when Perl was configured. + */ +/* DB_VERSION_MINOR_CFG: + * This symbol, if defined, defines the minor version number of + * Berkeley DB found in the <db.h> header when Perl was configured. + * For DB version 1 this is always 0. + */ +/* DB_VERSION_PATCH_CFG: + * This symbol, if defined, defines the patch version number of + * Berkeley DB found in the <db.h> header when Perl was configured. + * For DB version 1 this is always 0. + */ #define DB_Hash_t u_int32_t /**/ #define DB_Prefix_t size_t /**/ +#define DB_VERSION_MAJOR_CFG 1 /**/ +#define DB_VERSION_MINOR_CFG 0 /**/ +#define DB_VERSION_PATCH_CFG 0 /**/ /* I_GRP: * This symbol, if defined, indicates to the C program that it should @@ -3338,6 +3355,14 @@ */ /*#define HAS_SOCKATMARK / **/ +/* HAS_SETRESGID_PROTO: + * This symbol, if defined, indicates that the system provides + * a prototype for the setresgid() function. Otherwise, it is up + * to the program to supply one. Good guesses are + * extern int setresgid(uid_t ruid, uid_t euid, uid_t suid); + */ +/*#define HAS_SETRESGID_PROTO / **/ + /* HAS_SETRESUID_PROTO: * This symbol, if defined, indicates that the system provides * a prototype for the setresuid() function. Otherwise, it is up |