This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
s/d_nvpresuv/d_nv_preserves_uv/;
authorJarkko Hietaniemi <jhi@iki.fi>
Wed, 26 Jan 2000 07:59:05 +0000 (07:59 +0000)
committerJarkko Hietaniemi <jhi@iki.fi>
Wed, 26 Jan 2000 07:59:05 +0000 (07:59 +0000)
plus cosmetic change for #4899.

p4raw-id: //depot/metaconfig@4900

U/modified/Cppsym.U
U/perl/perlxv.U

index ffc9fea..1c18473 100644 (file)
 ?F:!ccsym.own
 : get C preprocessor symbols handy
 echo " "
-$echo $n "Guessing which symbols your C compiler and preprocessor define... $c" >&4 
+$echo "Guessing which symbols your C compiler and preprocessor define..." >&4 
 ?X: The following used to be tr '[ - ]' ... but this was rejected by AIX 3.2
 ?X: since the endpoints where the same (from patch 12u8 to patch).
 echo $al $osname | $tr ' ' $trnl >Cppsym.know
index 03f024a..62b5c83 100644 (file)
@@ -8,7 +8,7 @@
 ?MAKE:ivtype uvtype nvtype ivsize uvsize nvsize \
        i8type u8type i16type u16type i32type u32type i64type u64type \
        i8size u8size i16size u16size i32size u32size i64size u64size \
-       d_nvpresuv: \
+       d_nv_preserves_uv: \
        echo rm use64bits d_quad quadtype uquadtype \
        d_longdbl uselongdouble longdblsize doublesize \
        charsize shortsize intsize longsize \
@@ -80,7 +80,7 @@
 ?S:nvsize:
 ?S:    This variable is the size of an NV in bytes.
 ?S:.
-?S:d_nvpresuv:
+?S:d_nv_preserves_uv:
 ?S:    This variable indicates whether a variable of type nvtype
 ?S:    can preserve all the bits a variable of type uvtype.
 ?S:.
 ?H:?%<:#define U64SIZE         $u64size        /**/
 ?H:?%<:#endif
 ?H:#define     NVSIZE          $nvsize         /**/
-?H:#$d_nvpresuv        NV_PRESERVES_UV
+?H:#$d_nv_preserves_uv NV_PRESERVES_UV
 ?H:.
 ?F:!try
 
@@ -378,13 +378,13 @@ EOP
 set try
 if eval $compile; then
        case "`./try$exe_ext`" in
-       preserve) d_nvpresuv="$define" ;;
+       preserve) d_nv_preserves_uv="$define" ;;
        esac
 fi     
-case "$d_nvpresuv" in
+case "$d_nv_preserves_uv" in
 $define) $echo "Yes, they can."  2>&1 ;;
 *)      $echo "No, they can't." 2>&1
-        d_nvpresuv="$undef"
+        d_nv_preserves_uv="$undef"
         ;;
 esac