~ubuntu-branches/ubuntu/saucy/openvpn/saucy

« back to all changes in this revision

Viewing changes to config.h.in

  • Committer: Bazaar Package Importer
  • Author(s): Alberto Gonzalez Iniesta
  • Date: 2005-01-05 19:03:11 UTC
  • mto: (1.4.1) (10.1.1 lenny)
  • mto: This revision was merged to the branch mainline in revision 3.
  • Revision ID: james.westby@ubuntu.com-20050105190311-d0uioiqtor5xbzre
Tags: upstream-1.99+2.rc6
ImportĀ upstreamĀ versionĀ 1.99+2.rc6

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
/* Use dmalloc memory debugging library */
10
10
#undef DMALLOC
11
11
 
12
 
/* Enable dynamic MTU capability */
13
 
#undef FRAGMENT_ENABLE
 
12
/* Dimension to use for empty array declaration */
 
13
#undef EMPTY_ARRAY_SIZE
 
14
 
 
15
/* Enable client capability only */
 
16
#undef ENABLE_CLIENT_ONLY
 
17
 
 
18
/* Enable client/server capability */
 
19
#undef ENABLE_CLIENT_SERVER
 
20
 
 
21
/* Enable debugging support */
 
22
#undef ENABLE_DEBUG
 
23
 
 
24
/* Enable internal fragmentation support */
 
25
#undef ENABLE_FRAGMENT
 
26
 
 
27
/* Enable HTTP proxy support */
 
28
#undef ENABLE_HTTP_PROXY
 
29
 
 
30
/* Enable management server capability */
 
31
#undef ENABLE_MANAGEMENT
 
32
 
 
33
/* Allow --askpass and --auth-user-pass passwords to be read from a file */
 
34
#undef ENABLE_PASSWORD_SAVE
 
35
 
 
36
/* Enable smaller executable size */
 
37
#undef ENABLE_SMALL
 
38
 
 
39
/* Enable Socks proxy support */
 
40
#undef ENABLE_SOCKS
14
41
 
15
42
/* Define to 1 if you have the `accept' function. */
16
43
#undef HAVE_ACCEPT
27
54
/* Define to 1 if you have the `chroot' function. */
28
55
#undef HAVE_CHROOT
29
56
 
 
57
/* Define to 1 if you have the `chsize' function. */
 
58
#undef HAVE_CHSIZE
 
59
 
30
60
/* struct cmsghdr needed for extended socket error support */
31
61
#undef HAVE_CMSGHDR
32
62
 
54
84
/* Define to 1 if you have the `dup2' function. */
55
85
#undef HAVE_DUP2
56
86
 
 
87
/* Define to 1 if you have the `ENGINE_cleanup' function. */
 
88
#undef HAVE_ENGINE_CLEANUP
 
89
 
 
90
/* Define to 1 if you have the `ENGINE_load_builtin_engines' function. */
 
91
#undef HAVE_ENGINE_LOAD_BUILTIN_ENGINES
 
92
 
 
93
/* Define to 1 if you have the `ENGINE_register_all_complete' function. */
 
94
#undef HAVE_ENGINE_REGISTER_ALL_COMPLETE
 
95
 
 
96
/* Define to 1 if you have the `epoll_create' function. */
 
97
#undef HAVE_EPOLL_CREATE
 
98
 
57
99
/* Define to 1 if you have the <errno.h> header file. */
58
100
#undef HAVE_ERRNO_H
59
101
 
69
111
/* Define to 1 if you have the `fork' function. */
70
112
#undef HAVE_FORK
71
113
 
 
114
/* Define to 1 if you have the `ftruncate' function. */
 
115
#undef HAVE_FTRUNCATE
 
116
 
72
117
/* Define to 1 if you have the `getgrnam' function. */
73
118
#undef HAVE_GETGRNAM
74
119
 
96
141
/* Define to 1 if you have the <grp.h> header file. */
97
142
#undef HAVE_GRP_H
98
143
 
99
 
/* Define to 1 if you have the `inet_aton' function. */
100
 
#undef HAVE_INET_ATON
101
 
 
102
144
/* Define to 1 if you have the `inet_ntoa' function. */
103
145
#undef HAVE_INET_NTOA
104
146
 
168
210
/* Define to 1 if you have the `openlog' function. */
169
211
#undef HAVE_OPENLOG
170
212
 
 
213
/* Define to 1 if you have the <openssl/engine.h> header file. */
 
214
#undef HAVE_OPENSSL_ENGINE_H
 
215
 
 
216
/* Define to 1 if you have the `poll' function. */
 
217
#undef HAVE_POLL
 
218
 
171
219
/* Define if you have POSIX threads libraries and header files. */
172
220
#undef HAVE_PTHREAD
173
221
 
258
306
/* Define to 1 if you have the `system' function. */
259
307
#undef HAVE_SYSTEM
260
308
 
 
309
/* Define to 1 if you have the <sys/epoll.h> header file. */
 
310
#undef HAVE_SYS_EPOLL_H
 
311
 
261
312
/* Define to 1 if you have the <sys/file.h> header file. */
262
313
#undef HAVE_SYS_FILE_H
263
314
 
267
318
/* Define to 1 if you have the <sys/mman.h> header file. */
268
319
#undef HAVE_SYS_MMAN_H
269
320
 
 
321
/* Define to 1 if you have the <sys/poll.h> header file. */
 
322
#undef HAVE_SYS_POLL_H
 
323
 
270
324
/* Define to 1 if you have the <sys/socket.h> header file. */
271
325
#undef HAVE_SYS_SOCKET_H
272
326
 
297
351
/* Define to 1 if you have the <unistd.h> header file. */
298
352
#undef HAVE_UNISTD_H
299
353
 
 
354
/* Define to 1 if you have the `unlink' function. */
 
355
#undef HAVE_UNLINK
 
356
 
300
357
/* Define to 1 if you have the `vfork' function. */
301
358
#undef HAVE_VFORK
302
359
 
388
445
/* Use OpenSSL crypto library */
389
446
#undef USE_CRYPTO
390
447
 
 
448
/* Use libdl for dynamic library loading */
 
449
#undef USE_LIBDL
 
450
 
391
451
/* Use LZO compression library */
392
452
#undef USE_LZO
393
453
 
397
457
/* Use OpenSSL SSL library */
398
458
#undef USE_SSL
399
459
 
 
460
/* Use valgrind memory debugging library */
 
461
#undef USE_VALGRIND
 
462
 
400
463
/* Version number of package */
401
464
#undef VERSION
402
465
 
409
472
/* Some systems don't define in_addr_t */
410
473
#undef in_addr_t
411
474
 
412
 
/* Define as `__inline' if that's what the C compiler calls it, or to nothing
413
 
   if it is not supported. */
 
475
/* Define to `__inline__' or `__inline' if that's what the C compiler
 
476
   calls it, or to nothing if 'inline' is not supported under any name.  */
 
477
#ifndef __cplusplus
414
478
#undef inline
 
479
#endif
415
480
 
416
481
/* Define to `long' if <sys/types.h> does not define. */
417
482
#undef off_t