summaryrefslogtreecommitdiff
path: root/win32
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2000-03-16 01:50:13 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2000-03-16 01:50:13 +0000
commita13ea748a87ffd2f0f8caa997bddc292033a30e1 (patch)
tree14346f4dcc4db2ab3f38f97dc09e6e22d9db732d /win32
parent879501902ac32f49423b30e9d6dcf0a0dd751b82 (diff)
downloadperl-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 'win32')
-rw-r--r--win32/config.bc1
-rw-r--r--win32/config.gc1
-rw-r--r--win32/config.vc1
-rw-r--r--win32/config_H.bc5
-rw-r--r--win32/config_H.gc5
-rw-r--r--win32/config_H.vc5
6 files changed, 18 insertions, 0 deletions
diff --git a/win32/config.bc b/win32/config.bc
index 32fb9d82b7..1b984bb08d 100644
--- a/win32/config.bc
+++ b/win32/config.bc
@@ -673,6 +673,7 @@ sitelib_stem=''
sitelibexp='~INST_TOP~\site~INST_VER~\lib'
siteprefix='~INST_TOP~\site~INST_VER~'
siteprefixexp='~INST_TOP~\site~INST_VER~'
+sizesize='4'
sizetype='size_t'
sleep=''
smail=''
diff --git a/win32/config.gc b/win32/config.gc
index 950a3d7df8..762e792464 100644
--- a/win32/config.gc
+++ b/win32/config.gc
@@ -673,6 +673,7 @@ sitelib_stem=''
sitelibexp='~INST_TOP~\site~INST_VER~\lib'
siteprefix='~INST_TOP~\site~INST_VER~'
siteprefixexp='~INST_TOP~\site~INST_VER~'
+sizesize='4'
sizetype='size_t'
sleep=''
smail=''
diff --git a/win32/config.vc b/win32/config.vc
index 007834e838..f3dff460ca 100644
--- a/win32/config.vc
+++ b/win32/config.vc
@@ -673,6 +673,7 @@ sitelib_stem=''
sitelibexp='~INST_TOP~\site~INST_VER~\lib'
siteprefix='~INST_TOP~\site~INST_VER~'
siteprefixexp='~INST_TOP~\site~INST_VER~'
+sizesize='4'
sizetype='size_t'
sleep=''
smail=''
diff --git a/win32/config_H.bc b/win32/config_H.bc
index 9e89accd58..41e3a3cf23 100644
--- a/win32/config_H.bc
+++ b/win32/config_H.bc
@@ -2814,6 +2814,11 @@
#define SITELIB_EXP (win32_get_sitelib("5.6.0")) /**/
#define SITELIB_STEM "" /**/
+/* 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
diff --git a/win32/config_H.gc b/win32/config_H.gc
index 062e7ec78c..baf02fe5a8 100644
--- a/win32/config_H.gc
+++ b/win32/config_H.gc
@@ -2814,6 +2814,11 @@
#define SITELIB_EXP (win32_get_sitelib("5.6.0")) /**/
#define SITELIB_STEM "" /**/
+/* 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
diff --git a/win32/config_H.vc b/win32/config_H.vc
index 2f278d9609..028914d38a 100644
--- a/win32/config_H.vc
+++ b/win32/config_H.vc
@@ -2814,6 +2814,11 @@
#define SITELIB_EXP (win32_get_sitelib("5.6.0")) /**/
#define SITELIB_STEM "" /**/
+/* 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