diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 1999-10-02 23:12:54 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 1999-10-02 23:12:54 +0000 |
commit | 2d228ff30cfbbcfa9eeed02d1bf3ed270f2ff75a (patch) | |
tree | d83538302225bea03a0cd66f9c9c492692226689 /Porting | |
parent | 57def98fcb6c98601beaf31e3c48ad681bfdc2a3 (diff) | |
download | perl-2d228ff30cfbbcfa9eeed02d1bf3ed270f2ff75a.tar.gz |
Regen Porting stuff.
p4raw-id: //depot/cfgperl@4289
Diffstat (limited to 'Porting')
-rw-r--r-- | Porting/Glossary | 4 | ||||
-rw-r--r-- | Porting/config.sh | 5 | ||||
-rw-r--r-- | Porting/config_H | 8 |
3 files changed, 14 insertions, 3 deletions
diff --git a/Porting/Glossary b/Porting/Glossary index 861d4be3bc..4f97fab701 100644 --- a/Porting/Glossary +++ b/Porting/Glossary @@ -3025,6 +3025,10 @@ troff (Loc.U): This variable is defined but not used by Configure. The value is a plain '' and is not useful. +uidsign (uidsign.U): + This variable contains the signedness of a uidtype. + 1 for unsigned, -1 for signed. + uidtype (uidtype.U): This variable defines Uid_t to be something like uid_t, int, ushort, or whatever type is used to declare user ids in the kernel. diff --git a/Porting/config.sh b/Porting/config.sh index 0b426e2f6a..b156c87348 100644 --- a/Porting/config.sh +++ b/Porting/config.sh @@ -8,7 +8,7 @@ # Package name : perl5 # Source directory : . -# Configuration time: Sat Oct 2 13:09:30 EET DST 1999 +# Configuration time: Sun Oct 3 02:17:38 EET DST 1999 # Configured by : jhi # Target system : osf1 alpha.hut.fi v4.0 878 alpha @@ -56,7 +56,7 @@ ccflags='-pthread -std -DLANGUAGE_C' ccsymbols='__LANGUAGE_C__=1 _LONGLONG=1 LANGUAGE_C=1 SYSTYPE_BSD=1' cf_by='jhi' cf_email='yourname@yourhost.yourplace.com' -cf_time='Sat Oct 2 13:09:30 EET DST 1999' +cf_time='Sun Oct 3 02:17:38 EET DST 1999' chgrp='' chmod='' chown='' @@ -663,6 +663,7 @@ touch='touch' tr='tr' trnl='\n' troff='' +uidsign='1' uidtype='uid_t' uname='uname' uniq='uniq' diff --git a/Porting/config_H b/Porting/config_H index b16ae56211..3321c5a029 100644 --- a/Porting/config_H +++ b/Porting/config_H @@ -17,7 +17,7 @@ /* * Package name : perl5 * Source directory : . - * Configuration time: Sat Oct 2 13:09:30 EET DST 1999 + * Configuration time: Sun Oct 3 02:17:38 EET DST 1999 * Configured by : jhi * Target system : osf1 alpha.hut.fi v4.0 878 alpha */ @@ -2721,6 +2721,12 @@ */ #define Size_t size_t /* length paramater for string functions */ +/* Uid_t_SIGN: + * This symbol holds the signedess of a Uid_t. + * 1 for unsigned, -1 for signed. + */ +#define Uid_t_SIGN 1 /* UID sign */ + /* 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 |