diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2000-03-16 01:50:13 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2000-03-16 01:50:13 +0000 |
commit | a13ea748a87ffd2f0f8caa997bddc292033a30e1 (patch) | |
tree | 14346f4dcc4db2ab3f38f97dc09e6e22d9db732d /Porting | |
parent | 879501902ac32f49423b30e9d6dcf0a0dd751b82 (diff) | |
download | perl-a13ea748a87ffd2f0f8caa997bddc292033a30e1.tar.gz |
Fix pp_send() sizes (pass a Size_t, not an Off_t, and
return a SSize_t, not an Off_t); add a note about a slightly
similar situation in pp_truncate(); introduce $sizesize
for Configure; update EPOC, VOS, Win32, and VMS for the
sizesize; minor updates on the EPOC config file; reword
socklen_t message slightly; fix fpossize (though unused currently)
p4raw-id: //depot/cfgperl@5760
Diffstat (limited to 'Porting')
-rw-r--r-- | Porting/Glossary | 3 | ||||
-rw-r--r-- | Porting/config.sh | 5 | ||||
-rw-r--r-- | Porting/config_H | 7 |
3 files changed, 12 insertions, 3 deletions
diff --git a/Porting/Glossary b/Porting/Glossary index e54cc9aeda..2c948b8689 100644 --- a/Porting/Glossary +++ b/Porting/Glossary @@ -3097,6 +3097,9 @@ siteprefixexp (siteprefix.U): This variable holds the full absolute path of the directory below which the user will install add-on packages. Derived from siteprefix. +sizesize (sizesize.U): + This variable contains the size of a sizetype in bytes. + sizetype (sizetype.U): This variable defines sizetype to be something like size_t, unsigned long, or whatever type is used to declare length diff --git a/Porting/config.sh b/Porting/config.sh index 924c7ae33c..c88698768d 100644 --- a/Porting/config.sh +++ b/Porting/config.sh @@ -8,7 +8,7 @@ # Package name : perl5 # Source directory : . -# Configuration time: Thu Mar 16 01:18:36 EET 2000 +# Configuration time: Thu Mar 16 03:30:28 EET 2000 # Configured by : jhi # Target system : osf1 alpha.hut.fi v4.0 878 alpha @@ -59,7 +59,7 @@ ccflags='-pthread -std -DLANGUAGE_C' ccsymbols='__alpha=1 __LANGUAGE_C__=1 __osf__=1 __unix__=1 _LONGLONG=1 _SYSTYPE_BSD=1 SYSTYPE_BSD=1 unix=1' cf_by='jhi' cf_email='yourname@yourhost.yourplace.com' -cf_time='Thu Mar 16 01:18:36 EET 2000' +cf_time='Thu Mar 16 03:30:28 EET 2000' charsize='1' chgrp='' chmod='' @@ -682,6 +682,7 @@ sitelib_stem='/opt/perl/lib/site_perl' sitelibexp='/opt/perl/lib/site_perl/5.6.0' siteprefix='/opt/perl' siteprefixexp='/opt/perl' +sizesize='8' sizetype='size_t' sleep='' smail='' diff --git a/Porting/config_H b/Porting/config_H index 88884c9929..70bf2c09c1 100644 --- a/Porting/config_H +++ b/Porting/config_H @@ -17,7 +17,7 @@ /* * Package name : perl5 * Source directory : . - * Configuration time: Thu Mar 16 01:18:36 EET 2000 + * Configuration time: Thu Mar 16 03:30:28 EET 2000 * Configured by : jhi * Target system : osf1 alpha.hut.fi v4.0 878 alpha */ @@ -2812,6 +2812,11 @@ #define SITELIB_EXP "/opt/perl/lib/site_perl/5.6.0" /**/ #define SITELIB_STEM "/opt/perl/lib/site_perl" /**/ +/* Size_t_size: + * This symbol holds the size of a Size_t in bytes. + */ +#define Size_t_size 8 /* */ + /* Size_t: * This symbol holds the type used to declare length parameters * for string functions. It is usually size_t, but may be |