~ubuntu-branches/ubuntu/natty/curl/natty-proposed

« back to all changes in this revision

Viewing changes to lib/config-riscos.h

  • Committer: Bazaar Package Importer
  • Author(s): Andreas Schuldei
  • Date: 2009-05-24 21:12:19 UTC
  • mfrom: (1.1.12 upstream)
  • mto: (3.3.1 squeeze)
  • mto: This revision was merged to the branch mainline in revision 39.
  • Revision ID: james.westby@ubuntu.com-20090524211219-7jgcwuhl04ixuqsm
Tags: upstream-7.19.5
ImportĀ upstreamĀ versionĀ 7.19.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
/* Define if you have the gethostbyname_r() function with 6 arguments */
30
30
#undef HAVE_GETHOSTBYNAME_R_6
31
31
 
32
 
/* Define if you have the inet_ntoa_r function declared. */
33
 
#undef HAVE_INET_NTOA_R_DECL
34
 
 
35
32
/* Define if you need the _REENTRANT define for some functions */
36
33
#undef NEED_REENTRANT
37
34
 
41
38
/* Define if you want to enable IPv6 support */
42
39
#undef ENABLE_IPV6
43
40
 
 
41
/* Define if struct sockaddr_in6 has the sin6_scope_id member */
 
42
#define HAVE_SOCKADDR_IN6_SIN6_SCOPE_ID 1
 
43
 
44
44
/* Define this to 'int' if ssize_t is not an available typedefed type */
45
45
#undef ssize_t
46
46
 
47
 
/* Type to use in place of socklen_t when system does not provide it. */
48
 
#undef socklen_t
49
 
 
50
47
/* Define this as a suitable file to read random data from */
51
48
#undef RANDOM_FILE
52
49
 
59
56
/* Define if you want to enable IPv6 support */
60
57
#undef ENABLE_IPV6
61
58
 
 
59
/* Define to 1 if you have the alarm function. */
 
60
#define HAVE_ALARM 1
 
61
 
62
62
/* Define if you have the <alloca.h> header file. */
63
63
#define HAVE_ALLOCA_H
64
64
 
119
119
/* Define if you have the `inet_addr' function. */
120
120
#undef HAVE_INET_ADDR
121
121
 
122
 
/* Define if you have the `inet_ntoa' function. */
123
 
#undef HAVE_INET_NTOA
124
 
 
125
 
/* Define if you have the `inet_ntoa_r' function. */
126
 
#undef HAVE_INET_NTOA_R
127
 
 
128
122
/* Define if you have the <inttypes.h> header file. */
129
123
#define HAVE_INTTYPES_H
130
124
 
384
378
/* Define to `int' if <sys/types.h> does not define. */
385
379
#undef ssize_t
386
380
 
387
 
/* this is a quick hack.  I hope it's correct. */
388
 
#define ifr_dstaddr ifr_addr
389
 
 
390
 
#define IOCTL_3_ARGS
391
 
 
392
 
#define HAVE_FIONBIO
 
381
/* Define if you have the ioctl function. */
 
382
#define HAVE_IOCTL
 
383
 
 
384
/* Define if you have a working ioctl FIONBIO function. */
 
385
#define HAVE_IOCTL_FIONBIO
393
386
 
394
387
/* to disable LDAP */
395
388
#define CURL_DISABLE_LDAP
430
423
/* Define to the function return type for recv. */
431
424
#define RECV_TYPE_RETV ssize_t
432
425
 
 
426
/* Define 1 if you have the recvfrom function. */
 
427
#define HAVE_RECVFROM 1
 
428
 
 
429
/* Define to the type of arg 1 for recvfrom. */
 
430
#define RECVFROM_TYPE_ARG1 int
 
431
 
 
432
/* Define to the type pointed by arg 2 for recvfrom. */
 
433
#define RECVFROM_TYPE_ARG2 void
 
434
 
 
435
/* Define to 1 if the type pointed by arg 2 for recvfrom is void. */
 
436
#define RECVFROM_TYPE_ARG2_IS_VOID 1
 
437
 
 
438
/* Define to the type of arg 3 for recvfrom. */
 
439
#define RECVFROM_TYPE_ARG3 size_t
 
440
 
 
441
/* Define to the type of arg 4 for recvfrom. */
 
442
#define RECVFROM_TYPE_ARG4 int
 
443
 
 
444
/* Define to the type pointed by arg 5 for recvfrom. */
 
445
#define RECVFROM_TYPE_ARG5 struct sockaddr
 
446
 
 
447
/* Define to the type pointed by arg 6 for recvfrom. */
 
448
#define RECVFROM_TYPE_ARG6 int
 
449
 
 
450
/* Define to the function return type for recvfrom. */
 
451
#define RECVFROM_TYPE_RETV ssize_t
 
452
 
433
453
/* Define if you have the send function. */
434
454
#define HAVE_SEND 1
435
455