diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 1999-11-11 19:41:56 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 1999-11-11 19:41:56 +0000 |
commit | 887d29384f0bc4b6197573ce19ff42abfe67fa51 (patch) | |
tree | af67277bfc344fb20b46f6174528654d2c9ff5c2 /config_h.SH | |
parent | 7d9816167178f34fbf6a461f535912586fae6223 (diff) | |
download | perl-887d29384f0bc4b6197573ce19ff42abfe67fa51.tar.gz |
Try to do something if st_size, st_uid, st_gid are too big for an IV;
regen Configure.
p4raw-id: //depot/cfgperl@4548
Diffstat (limited to 'config_h.SH')
-rw-r--r-- | config_h.SH | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/config_h.SH b/config_h.SH index 8e7115de72..9d8deecd54 100644 --- a/config_h.SH +++ b/config_h.SH @@ -2809,6 +2809,11 @@ sed <<!GROK!THIS! >config.h -e 's!^#undef\(.*/\)\*!/\*#define\1 \*!' -e 's!^#un- */ #define Gid_t_f $gidformat /**/ +/* Gid_t_size: + * This symbol holds the size of a Gid_t in bytes. + */ +#define Gid_t_size $gidsize /* GID size */ + /* Gid_t: * This symbol holds the return type of getgid() and the type of * argument to setrgid() and related functions. Typically, @@ -2844,6 +2849,11 @@ sed <<!GROK!THIS! >config.h -e 's!^#undef\(.*/\)\*!/\*#define\1 \*!' -e 's!^#un- */ #define Pid_t $pidtype /* PID type */ +/* Size_t_size: + * This symbol holds the size of a Size_t in bytes. + */ +#define Size_t_size $sizesize /* */ + /* Size_t: * This symbol holds the type used to declare length parameters * for string functions. It is usually size_t, but may be @@ -2857,6 +2867,11 @@ sed <<!GROK!THIS! >config.h -e 's!^#undef\(.*/\)\*!/\*#define\1 \*!' -e 's!^#un- */ #define Uid_t_f $uidformat /**/ +/* Uid_t_size: + * This symbol holds the size of a Uid_t in bytes. + */ +#define Uid_t_size $uidsize /* UID size */ + /* Uid_t: * This symbol holds the type used to declare user ids in the kernel. * It can be int, ushort, uid_t, etc... It may be necessary to include |