This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Remove spurious LINT: directives
[metaconfig.git] / U / threads / d_srandom_r.U
1 ?RCS: $Id: d_srandom_r.U,v 0RCS:
2 ?RCS: Copyright (c) 2002,2003 Jarkko Hietaniemi
3 ?RCS:
4 ?RCS: You may distribute under the terms of either the GNU General Public
5 ?RCS: License or the Artistic License, as specified in the README file.
6 ?RCS:
7 ?RCS: Generated by the reentr.pl from the Perl 5.8 distribution.
8 ?RCS:
9 ?MAKE:d_srandom_r srandom_r_proto: Inlibc Protochk Hasproto i_systypes usethreads i_stdlib
10 ?MAKE:  -pick add $@ %<
11 ?S:d_srandom_r:
12 ?S:     This variable conditionally defines the HAS_SRANDOM_R symbol,
13 ?S:     which indicates to the C program that the srandom_r()
14 ?S:     routine is available.
15 ?S:.
16 ?S:srandom_r_proto:
17 ?S:     This variable encodes the prototype of srandom_r.
18 ?S:     It is zero if d_srandom_r is undef, and one of the
19 ?S:     REENTRANT_PROTO_T_ABC macros of reentr.h if d_srandom_r
20 ?S:     is defined.
21 ?S:.
22 ?C:HAS_SRANDOM_R:
23 ?C:     This symbol, if defined, indicates that the srandom_r routine
24 ?C:     is available to srandom re-entrantly.
25 ?C:.
26 ?C:SRANDOM_R_PROTO:
27 ?C:     This symbol encodes the prototype of srandom_r.
28 ?C:     It is zero if d_srandom_r is undef, and one of the
29 ?C:     REENTRANT_PROTO_T_ABC macros of reentr.h if d_srandom_r
30 ?C:     is defined.
31 ?C:.
32 ?H:#$d_srandom_r HAS_SRANDOM_R     /**/
33 ?H:#define SRANDOM_R_PROTO $srandom_r_proto        /**/
34 ?H:.
35 ?T:try hdrs d_srandom_r_proto
36 : see if srandom_r exists
37 set srandom_r d_srandom_r
38 eval $inlibc
39 case "$d_srandom_r" in
40 "$define")
41         hdrs="$i_systypes sys/types.h define stdio.h $i_stdlib stdlib.h"
42         case "$d_srandom_r_proto:$usethreads" in
43         ":define")      d_srandom_r_proto=define
44                 set d_srandom_r_proto srandom_r $hdrs
45                 eval $hasproto ;;
46         *)      ;;
47         esac
48         case "$d_srandom_r_proto" in
49         define)
50         case "$srandom_r_proto" in
51         ''|0) try='int srandom_r(unsigned int, struct random_data*);'
52         ./protochk "extern $try" $hdrs && srandom_r_proto=I_TS ;;
53         esac
54         case "$srandom_r_proto" in
55         ''|0)   d_srandom_r=undef
56                 srandom_r_proto=0
57                 echo "Disabling srandom_r, cannot determine prototype." >&4 ;;
58         * )     case "$srandom_r_proto" in
59                 REENTRANT_PROTO*) ;;
60                 *) srandom_r_proto="REENTRANT_PROTO_$srandom_r_proto" ;;
61                 esac
62                 echo "Prototype: $try" ;;
63         esac
64         ;;
65         *)      case "$usethreads" in
66                 define) echo "srandom_r has no prototype, not using it." >&4 ;;
67                 esac
68                 d_srandom_r=undef
69                 srandom_r_proto=0
70                 ;;
71         esac
72         ;;
73 *)      srandom_r_proto=0
74         ;;
75 esac
76