~ubuntu-branches/ubuntu/vivid/curl/vivid

« back to all changes in this revision

Viewing changes to packages/vms/config-vms.h

  • Committer: Bazaar Package Importer
  • Author(s): Andreas Schuldei
  • Date: 2009-04-02 23:35:45 UTC
  • mto: (1.2.1 upstream) (3.2.3 sid)
  • mto: This revision was merged to the branch mainline in revision 38.
  • Revision ID: james.westby@ubuntu.com-20090402233545-geixkwhe3izccjt7
Tags: upstream-7.19.4
ImportĀ upstreamĀ versionĀ 7.19.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* MSK, 02/05/04, Hand edited for trail build on Alpha V7.3, DEC C 6.5-003 */
2
2
/* MSK, 03/09/04, Seems to work for all platforms I've built on so far.    */
3
 
/*      Added HAVE_SYS_IOCTL_H, IOCTL_3_ARGS and SIZEOF_CURL_OFF_T defines */
4
 
/* MSK, 06/04/04, Added HAVE_INET_NTOP                                     */
 
3
/*      Added HAVE_SYS_IOCTL_H define                                      */
5
4
/* TES, 10/06/04, Added MAX_INITIAL_POST_SIZE, HAVE_BASENAME               */
6
5
/* MSK, 02/02/05, Changed HAVE_TERMIOS_H to an undef since the change in   */
7
6
/*                getpass.c no longer undef'd it during compile.           */
35
34
/* The number of bytes in a long long.  */
36
35
#define SIZEOF_LONG_LONG 8
37
36
 
 
37
/* Define if you have the alarm function.  */
 
38
#define HAVE_ALARM 1
 
39
 
38
40
/* Define if you have the geteuid function.  */
39
41
#define HAVE_GETEUID 1
40
42
 
59
61
/* Define if you have the inet_addr function.  */
60
62
#define HAVE_INET_ADDR 1
61
63
 
62
 
/* Define if you have the inet_ntoa function.  */
63
 
#define HAVE_INET_NTOA 1
 
64
/* Define if you have the ioctl function. */
 
65
#define HAVE_IOCTL 1
 
66
 
 
67
/* Define if you have a working ioctl FIONBIO function. */
 
68
#define HAVE_IOCTL_FIONBIO 1
 
69
 
 
70
/* Define if you have a working ioctl SIOCGIFADDR function. */
 
71
#define HAVE_IOCTL_SIOCGIFADDR 1
64
72
 
65
73
/* Define if you have the perror function.  */
66
74
#define HAVE_PERROR 1
248
256
/* Define if you have the <memory.h> header file. */
249
257
#define HAVE_MEMORY_H   1
250
258
 
251
 
#define HAVE_FIONBIO    1
252
 
 
253
259
/* Define if you have the `sigsetjmp' function. */
254
260
#define HAVE_SIGSETJMP 1
255
261
 
262
268
/* Define to 1 if you have the <sys/ioctl.h> header file. */
263
269
#define HAVE_SYS_IOCTL_H 1
264
270
 
265
 
/* IOCTL_3_ARGS defined to match the ioctl function in stropts.h */
266
 
#define IOCTL_3_ARGS 1
267
 
 
268
 
/* Seems with versions of cURL after 7.11.0 you need to define */
269
 
/* SIZEOF_CURL_OFF_T to something to get it to compile.        */
270
 
#if defined( __VAX) || (__32BITS == 1)
271
 
#define SIZEOF_CURL_OFF_T 4
272
 
#else
273
 
#define SIZEOF_CURL_OFF_T 8
274
 
#endif
275
 
 
276
 
/* Somewhere around 7.12.0 HAVE_INET_NTOP was introduced. */
277
 
#define HAVE_INET_NTOP 1
 
271
/* Define to 1 if you have the <stropts.h> header file. */
 
272
#define HAVE_STROPTS_H 1
278
273
 
279
274
/* to disable LDAP */
280
275
#define CURL_DISABLE_LDAP 1
315
310
/* Define to the function return type for recv. */
316
311
#define RECV_TYPE_RETV int
317
312
 
 
313
/* Define if you have the recvfrom function. */
 
314
#define HAVE_RECVFROM 1
 
315
 
 
316
/* Define to the type of arg 1 for recvfrom. */
 
317
#define RECVFROM_TYPE_ARG1 int
 
318
 
 
319
/* Define to the type pointed by arg 2 for recvfrom. */
 
320
#define RECVFROM_TYPE_ARG2 void
 
321
 
 
322
/* Define if the type pointed by arg 2 for recvfrom is void. */
 
323
#define RECVFROM_TYPE_ARG2_IS_VOID 1
 
324
 
 
325
/* Define to the type of arg 3 for recvfrom. */
 
326
#define RECVFROM_TYPE_ARG3 int
 
327
 
 
328
/* Define to the type of arg 4 for recvfrom. */
 
329
#define RECVFROM_TYPE_ARG4 int
 
330
 
 
331
/* Define to the type pointed by arg 5 for recvfrom. */
 
332
#define RECVFROM_TYPE_ARG5 struct sockaddr
 
333
 
 
334
/* Define to the type pointed by arg 6 for recvfrom. */
 
335
#define RECVFROM_TYPE_ARG6 int
 
336
 
 
337
/* Define to the function return type for recvfrom. */
 
338
#define RECVFROM_TYPE_RETV int
 
339
 
318
340
/* Define if you have the send function. */
319
341
#define HAVE_SEND 1
320
342
 
336
358
/* Define to the function return type for send. */
337
359
#define SEND_TYPE_RETV int
338
360
 
 
361
/* Define to hide dollar sign from compilers in strict ansi mode. */
 
362
#define decc_translate_vms(__s) decc$translate_vms(__s)
 
363