This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
metaconfig: new round of the _r units.
[metaconfig.git] / U / threads / d_gethostent_r.U
CommitLineData
f2dee704 1?MAKE:d_gethostent_r gethostent_r_proto: Inlibc Protochk i_systypes i_netdb
eed88ce0 2?MAKE: -pick add $@ %<
46953654 3?S:d_gethostent_r:
eed88ce0
JH
4?S: This variable conditionally defines the HAS_GETHOSTENT_R symbol,
5?S: which indicates to the C program that the gethostent_r()
6?S: routine is available.
46953654
JH
7?S:.
8?S:gethostent_r_proto:
eed88ce0 9?S: This variable encodes the prototype of gethostent_r.
46953654
JH
10?S:.
11?C:HAS_GETHOSTENT_R:
eed88ce0
JH
12?C: This symbol, if defined, indicates that the gethostent_r routine
13?C: is available to gethostent re-entrantly.
46953654
JH
14?C:.
15?C:GETHOSTENT_R_PROTO:
eed88ce0 16?C: This symbol encodes the prototype of gethostent_r.
46953654 17?C:.
eed88ce0
JH
18?H:#$d_gethostent_r HAS_GETHOSTENT_R /**/
19?H:#define GETHOSTENT_R_PROTO $gethostent_r_proto /**/
46953654
JH
20?H:.
21?T:try hdrs
22?LINT:set d_gethostent_r
23?LINT:set gethostent_r_proto
24: see if gethostent_r exists
25set gethostent_r d_gethostent_r
26eval $inlibc
27case "$d_gethostent_r" in
28"$define")
f2dee704 29 hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
46953654 30 case "$gethostent_r_proto" in
f2dee704
JH
31 '') try='int gethostent_r(struct hostent*, char*, size_t, struct hostent**, int*);'
32 ./protochk "extern $try" $hdrs && gethostent_r_proto=I_SBWRE ;;
46953654
JH
33 esac
34 case "$gethostent_r_proto" in
f2dee704
JH
35 '') try='int gethostent_r(struct hostent*, char*, int, int*);'
36 ./protochk "extern $try" $hdrs && gethostent_r_proto=I_SBIE ;;
46953654
JH
37 esac
38 case "$gethostent_r_proto" in
f2dee704
JH
39 '') try='struct hostent* gethostent_r(struct hostent*, char*, int, int*);'
40 ./protochk "extern $try" $hdrs && gethostent_r_proto=S_SBIE ;;
46953654
JH
41 esac
42 case "$gethostent_r_proto" in
f2dee704
JH
43 '') try='int gethostent_r(struct hostent*, char*, int);'
44 ./protochk "extern $try" $hdrs && gethostent_r_proto=I_SBI ;;
45 esac
46 case "$gethostent_r_proto" in
47 '') try='int gethostent_r(struct hostent*, struct hostent_data*);'
48 ./protochk "extern $try" $hdrs && gethostent_r_proto=I_SD ;;
46953654
JH
49 esac
50 case "$gethostent_r_proto" in
f2dee704
JH
51 '') d_gethostent_r=undef
52 echo "Disabling gethostent_r, cannot determine prototype." ;;
53 * ) case "$gethostent_r_proto" in
54 REENTRANT_PROTO*) ;;
55 *) gethostent_r_proto="REENTRANT_PROTO_$gethostent_r_proto" ;;
56 esac
57 echo "Prototype: $try" ;;
46953654
JH
58 esac
59 ;;
60esac
61