This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Tidy up the 64-bit (and socklen_t) type probing.
[metaconfig.git] / U / modified / d_longdbl.U
index b4b9cfd..2f4749f 100644 (file)
 ?F:!try
 : check for long doubles
 echo " "
-$echo $n "Checking to see if your system supports long double..." $c >&4
+echo "Checking to see if you have long double..." >&4
 echo 'int main() { long double x = 7.0; }' > try.c
 set try
 if eval $compile; then
        val="$define"
-       echo " " >&4
        echo "You have long double."
 else
        val="$undef"
-       echo " " >&4
        echo "You do not have long double."
 fi
 $rm try.*