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_gethostbyaddr_r.U
CommitLineData
f2dee704 1?MAKE:d_gethostbyaddr_r gethostbyaddr_r_proto: Inlibc Protochk i_systypes i_netdb
eed88ce0 2?MAKE: -pick add $@ %<
46953654 3?S:d_gethostbyaddr_r:
eed88ce0
JH
4?S: This variable conditionally defines the HAS_GETHOSTBYADDR_R symbol,
5?S: which indicates to the C program that the gethostbyaddr_r()
6?S: routine is available.
46953654
JH
7?S:.
8?S:gethostbyaddr_r_proto:
eed88ce0 9?S: This variable encodes the prototype of gethostbyaddr_r.
46953654
JH
10?S:.
11?C:HAS_GETHOSTBYADDR_R:
eed88ce0
JH
12?C: This symbol, if defined, indicates that the gethostbyaddr_r routine
13?C: is available to gethostbyaddr re-entrantly.
46953654
JH
14?C:.
15?C:GETHOSTBYADDR_R_PROTO:
eed88ce0 16?C: This symbol encodes the prototype of gethostbyaddr_r.
46953654 17?C:.
eed88ce0
JH
18?H:#$d_gethostbyaddr_r HAS_GETHOSTBYADDR_R /**/
19?H:#define GETHOSTBYADDR_R_PROTO $gethostbyaddr_r_proto /**/
46953654
JH
20?H:.
21?T:try hdrs
22?LINT:set d_gethostbyaddr_r
23?LINT:set gethostbyaddr_r_proto
24: see if gethostbyaddr_r exists
25set gethostbyaddr_r d_gethostbyaddr_r
26eval $inlibc
27case "$d_gethostbyaddr_r" in
28"$define")
f2dee704 29 hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
46953654 30 case "$gethostbyaddr_r_proto" in
f2dee704
JH
31 '') try='int gethostbyaddr_r(const char*, size_t, int, struct hostent*, char*, size_t, struct hostent**, int*);'
32 ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=I_CWISBWRE ;;
46953654
JH
33 esac
34 case "$gethostbyaddr_r_proto" in
f2dee704
JH
35 '') try='struct hostent* gethostbyaddr_r(const char*, size_t, int, struct hostent*, char*, size_t, int, int*);'
36 ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=S_CWISBWIE ;;
46953654
JH
37 esac
38 case "$gethostbyaddr_r_proto" in
f2dee704
JH
39 '') try='struct hostent* gethostbyaddr_r(const char*, int, int, struct hostent*, char*, int, int*);'
40 ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=S_CIISBIE ;;
46953654
JH
41 esac
42 case "$gethostbyaddr_r_proto" in
f2dee704
JH
43 '') try='int gethostbyaddr_r(const char*, size_t, int, struct hostent*, struct hostent_data*);'
44 ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=I_CWISD ;;
46953654
JH
45 esac
46 case "$gethostbyaddr_r_proto" in
f2dee704
JH
47 '') try='int gethostbyaddr_r(const char*, int, int, struct hostent*, struct hostent_data*);'
48 ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=I_CIISD ;;
46953654
JH
49 esac
50 case "$gethostbyaddr_r_proto" in
f2dee704
JH
51 '') try='int gethostbyaddr_r(const char*, int, int);'
52 ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=I_CII ;;
46953654
JH
53 esac
54 case "$gethostbyaddr_r_proto" in
f2dee704
JH
55 '') d_gethostbyaddr_r=undef
56 echo "Disabling gethostbyaddr_r, cannot determine prototype." ;;
57 * ) case "$gethostbyaddr_r_proto" in
58 REENTRANT_PROTO*) ;;
59 *) gethostbyaddr_r_proto="REENTRANT_PROTO_$gethostbyaddr_r_proto" ;;
60 esac
61 echo "Prototype: $try" ;;
46953654
JH
62 esac
63 ;;
64esac
65