diff options
author | Dominic Dunlop <domo@computer.org> | 2000-11-20 19:55:29 +0100 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2000-11-21 18:54:41 +0000 |
commit | 2cc61e15d3dcd28f355bee01f2fb06b42ba7309f (patch) | |
tree | 4d0343022362710db62a1bb35c8b420cb55fc3ad /vos | |
parent | f2b2c1a7ed42395a69ab0bb3b739cdbd8d214137 (diff) | |
download | perl-2cc61e15d3dcd28f355bee01f2fb06b42ba7309f.tar.gz |
Re: Not OK: perl5.7.0 +DEVEL7706 +Duseperlio on AIX4.[23]
Message-Id: <p04320403b63b2c750dce@[192.168.1.4]>
va_copy() and the need of it.
See <http://wwwold.dkuug.dk/JTC1/SC22/WG14/www/docs/n907.ps>.
p4raw-id: //depot/perl@7793
Diffstat (limited to 'vos')
-rw-r--r-- | vos/config.alpha.def | 1 | ||||
-rw-r--r-- | vos/config.alpha.h | 11 | ||||
-rw-r--r-- | vos/config.ga.def | 1 | ||||
-rw-r--r-- | vos/config.ga.h | 11 |
4 files changed, 24 insertions, 0 deletions
diff --git a/vos/config.alpha.def b/vos/config.alpha.def index 5a88cb811b..92ac45796c 100644 --- a/vos/config.alpha.def +++ b/vos/config.alpha.def @@ -398,6 +398,7 @@ $mmaptype='void *' $modetype='mode_t' $multiarch='undef' $myuname='VOS' +$need_va_copy='undef' $netdb_hlen_type='int' $netdb_host_type='char *' $netdb_name_type='char *' diff --git a/vos/config.alpha.h b/vos/config.alpha.h index f4d8392938..634466880c 100644 --- a/vos/config.alpha.h +++ b/vos/config.alpha.h @@ -3216,4 +3216,15 @@ /*#define HAS_SETPGRP /**/ /*#define USE_BSD_SETPGRP /**/ +/* NEED_VA_COPY: + * This symbol, if defined, indicates that the system stores + * the variable argument list datatype, va_list, in a format + * that cannot be copied by simple assignment, so that some + * other means must be used when copying is required. + * As such systems vary in their provision (or non-provision) + * of copying mechanisms, handy.h defines a platform- + * independent macro, Perl_va_copy(src, dst), to do the job. + */ +/*#define NEED_VA_COPY / **/ + #endif diff --git a/vos/config.ga.def b/vos/config.ga.def index c041b5c686..f6949775d5 100644 --- a/vos/config.ga.def +++ b/vos/config.ga.def @@ -398,6 +398,7 @@ $mmaptype='void *' $modetype='mode_t' $multiarch='undef' $myuname='VOS' +$need_va_copy='undef' $netdb_hlen_type='int' $netdb_host_type='char *' $netdb_name_type='char *' diff --git a/vos/config.ga.h b/vos/config.ga.h index 2fdc4a806d..834764a78e 100644 --- a/vos/config.ga.h +++ b/vos/config.ga.h @@ -3216,4 +3216,15 @@ /*#define HAS_SETPGRP /**/ /*#define USE_BSD_SETPGRP /**/ +/* NEED_VA_COPY: + * This symbol, if defined, indicates that the system stores + * the variable argument list datatype, va_list, in a format + * that cannot be copied by simple assignment, so that some + * other means must be used when copying is required. + * As such systems vary in their provision (or non-provision) + * of copying mechanisms, handy.h defines a platform- + * independent macro, Perl_va_copy(src, dst), to do the job. + */ +/*#define NEED_VA_COPY / **/ + #endif |