Change 24949 by [EMAIL PROTECTED] on 2005/06/23 09:32:55 Add handling of NV_ZERO_IS_ALLBITS_ZERO for Netware and epoc
Affected files ... ... //depot/perl/NetWare/config.wc#25 edit ... //depot/perl/NetWare/config_H.wc#33 edit ... //depot/perl/epoc/config.sh#86 edit Differences ... ==== //depot/perl/NetWare/config.wc#25 (text) ==== Index: perl/NetWare/config.wc --- perl/NetWare/config.wc#24~24508~ Fri May 20 00:53:46 2005 +++ perl/NetWare/config.wc Thu Jun 23 02:32:55 2005 @@ -291,6 +291,7 @@ d_nice='undef' d_nl_langinfo='undef' d_nv_preserves_uv='define' +d_nv_zero_is_allbits_zero='undef' d_off64_t='undef' d_old_pthread_create_joinable='undef' d_oldpthreads='undef' ==== //depot/perl/NetWare/config_H.wc#33 (text) ==== Index: perl/NetWare/config_H.wc --- perl/NetWare/config_H.wc#32~24149~ Mon Apr 4 10:14:37 2005 +++ perl/NetWare/config_H.wc Thu Jun 23 02:32:55 2005 @@ -2840,6 +2840,10 @@ * This symbol contains the number of bits a variable of type NVTYPE * can preserve of a variable of type UVTYPE. */ +/* NV_ZERO_IS_ALLBITS_ZERO: + * This symbol, if defined, indicates that a variable of type NVTYPE + * stores 0.0 in memory as all bits zero. + */ #define IVTYPE long /**/ #define UVTYPE unsigned long /**/ #define I8TYPE char /**/ @@ -2868,6 +2872,7 @@ #define NVSIZE 8 /**/ #define NV_PRESERVES_UV #define NV_PRESERVES_UV_BITS undef +#undef NV_ZERO_IS_ALLBITS_ZERO /* IVdf: * This symbol defines the format string used for printing a Perl IV ==== //depot/perl/epoc/config.sh#86 (text) ==== Index: perl/epoc/config.sh --- perl/epoc/config.sh#85~24508~ Fri May 20 00:53:46 2005 +++ perl/epoc/config.sh Thu Jun 23 02:32:55 2005 @@ -1075,6 +1075,7 @@ d_strtoll='undef' d_strtouq='undef' d_nv_preserves_uv='define' +d_nv_zero_is_allbits_zero='undef' use5005threads='undef' useithreads='undef' inc_version_list=' ' End of Patch.