This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
BYTEORDER fix.
[metaconfig.git] / U / compline / floatsize.U
1 ?RCS: $Id: floatsize.U,v 3.0.1.1 1994/10/29 16:17:09 ram Exp $
2 ?RCS:
3 ?RCS: Copyright (c) 1991-1993, Raphael Manfredi
4 ?RCS: 
5 ?RCS: You may redistribute only under the terms of the Artistic Licence,
6 ?RCS: as specified in the README file that comes with the distribution.
7 ?RCS: You may reuse parts of this distribution only within the terms of
8 ?RCS: that same Artistic Licence; a copy of which may be found at the root
9 ?RCS: of the source tree for dist 3.0.
10 ?RCS:
11 ?RCS: $Log: floatsize.U,v $
12 ?RCS: Revision 3.0.1.1  1994/10/29  16:17:09  ram
13 ?RCS: patch36: added ?F: line for metalint file checking
14 ?RCS:
15 ?RCS: Revision 3.0  1993/08/18  12:08:09  ram
16 ?RCS: Baseline for dist 3.0 netwide release.
17 ?RCS:
18 ?MAKE:floatsize: cat rm Myread Compile
19 ?MAKE:  -pick add $@ %<
20 ?S:floatsize:
21 ?S:     This variable contains the value of the FLOATSIZE symbol, which
22 ?S:     indicates to the C program how many bytes there are in a float.
23 ?S:.
24 ?C:FLOATSIZE:
25 ?C:     This symbol contains the size of a float, so that the C preprocessor
26 ?C:     can make decisions based on it.
27 ?C:.
28 ?H:#define FLOATSIZE $floatsize         /**/
29 ?H:.
30 ?F:!try
31 : check for length of float
32 echo " "
33 case "$floatsize" in
34 '')
35         echo "Checking to see how big your floating point numbers are..." >&4
36         $cat >try.c <<'EOCP'
37 #include <stdio.h>
38 int main()
39 {
40         printf("%d\n", sizeof(float));
41         exit(0);
42 }
43 EOCP
44         set try
45         if eval $compile_ok; then
46                 floatsize=`./try`
47         else
48                 dflt='4'
49                 echo "(I can't seem to compile the test program.  Guessing...)"
50                 rp="What is the size of a floating point number (in bytes)?"
51                 . ./myread
52                 floatsize="$ans"
53         fi
54         ;;
55 esac
56 $rm -f try.c try
57