1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
|
/* Autogenerated by build_info.pl - DO NOT EDIT */
/* This stores global variables that are initialized with
preprocessor declarations for output with the --version flag.
Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003,
2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc. */
#include "wget.h"
#include <stdio.h>
#include "version.h"
const char *compiled_features[] =
{
#if defined ENABLE_DIGEST
"+digest",
#else
"-digest",
#endif
#if defined HAVE_GPGME
"+gpgme",
#else
"-gpgme",
#endif
#if defined HAVE_SSL
"+https",
#else
"-https",
#endif
#if defined ENABLE_IPV6
"+ipv6",
#else
"-ipv6",
#endif
#if defined ENABLE_IRI
"+iri",
#else
"-iri",
#endif
#if SIZEOF_OFF_T >= 8 || defined WINDOWS
"+large-file",
#else
"-large-file",
#endif
#if defined HAVE_METALINK
"+metalink",
#else
"-metalink",
#endif
#if defined ENABLE_NLS
"+nls",
#else
"-nls",
#endif
#if defined ENABLE_NTLM
"+ntlm",
#else
"-ntlm",
#endif
#if defined ENABLE_OPIE
"+opie",
#else
"-opie",
#endif
#if defined HAVE_LIBPSL
"+psl",
#else
"-psl",
#endif
#if defined HAVE_LIBSSL || defined HAVE_LIBSSL32
"+ssl/openssl",
#elif defined HAVE_LIBGNUTLS
"+ssl/gnutls",
#else
"-ssl",
#endif
/* sentinel value */
NULL
};
|