]> sjero.net Git - wget/blob - src/config.h.in
[svn] Initial revision
[wget] / src / config.h.in
1 /* Configuration header file.
2    Copyright (C) 1995, 1996, 1997, 1998 Free Software Foundation, Inc.
3
4 This file is part of Wget.
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
19
20 #ifndef CONFIG_H
21 #define CONFIG_H
22
23 /* Define if you have the <alloca.h> header file.  */
24 #undef HAVE_ALLOCA_H
25
26 /* AIX requires this to be the first thing in the file.  */
27 #ifdef __GNUC__
28 # define alloca __builtin_alloca
29 #else
30 # if HAVE_ALLOCA_H
31 #  include <alloca.h>
32 # else
33 #  ifdef _AIX
34  #pragma alloca
35 #  else
36 #   ifndef alloca /* predefined by HP cc +Olibcalls */
37 char *alloca ();
38 #   endif
39 #  endif
40 # endif
41 #endif
42
43 /* Define if on AIX 3.
44    System headers sometimes define this.
45    We just want to avoid a redefinition error message.  */
46 #ifndef _ALL_SOURCE
47 #undef _ALL_SOURCE
48 #endif
49
50 /* Define to empty if the keyword does not work.  */
51 #undef const
52
53 /* Define to `unsigned' if <sys/types.h> doesn't define.  */
54 #undef size_t
55
56 /* Define to `int' if <sys/types.h> doesn't define.  */
57 #undef pid_t
58
59 /* Define if you have the ANSI C header files.  */
60 #undef STDC_HEADERS
61
62 /* Define as the return type of signal handlers (int or void).  */
63 #undef RETSIGTYPE
64
65 /* Define if your architecture is big endian (with the most
66    significant byte first).  */
67 #undef WORDS_BIGENDIAN
68
69 /* Define this if you want the NLS support.  */
70 #undef HAVE_NLS
71
72 /* Define if you want the FTP support for Opie compiled in.  */
73 #undef USE_OPIE
74
75 /* Define if you want the HTTP Digest Authorization compiled in.  */
76 #undef USE_DIGEST
77
78 /* Define if you want the debug output support compiled in.  */
79 #undef DEBUG
80
81 /* Define if you have sys/time.h header.  */
82 #undef HAVE_SYS_TIME_H
83
84 /* Define if you can safely include both <sys/time.h> and <time.h>.  */
85 #undef TIME_WITH_SYS_TIME
86
87 /* Define if you have struct utimbuf.  */
88 #undef HAVE_STRUCT_UTIMBUF
89
90 /* Define if you have the uname function.  */
91 #undef HAVE_UNAME
92
93 /* Define if you have the gethostname function.  */
94 #undef HAVE_GETHOSTNAME
95
96 /* Define if you have the select function.  */
97 #undef HAVE_SELECT
98
99 /* Define if you have the gettimeofday function.  */
100 #undef HAVE_GETTIMEOFDAY
101
102 /* Define if you have the strdup function.  */
103 #undef HAVE_STRDUP
104
105 /* Define if you have the sys/utsname.h header.  */
106 #undef HAVE_SYS_UTSNAME_H
107
108 /* Define if you have the strerror function.  */
109 #undef HAVE_STRERROR
110
111 /* Define if you have the vsnprintf function.  */
112 #undef HAVE_VSNPRINTF
113
114 /* Define if you have the strstr function.  */
115 #undef HAVE_STRSTR
116
117 /* Define if you have the strcasecmp function.  */
118 #undef HAVE_STRCASECMP
119
120 /* Define if you have the strncasecmp function.  */
121 #undef HAVE_STRNCASECMP
122
123 /* Define if you have the strptime function.  */
124 #undef HAVE_STRPTIME
125
126 /* Define if you have the mktime function.  */
127 #undef HAVE_MKTIME
128
129 /* Define if you have the symlink function.  */
130 #undef HAVE_SYMLINK
131
132 /* Define if you have the access function.  */
133 #undef HAVE_ACCESS
134
135 /* Define if you have the isatty function.  */
136 #undef HAVE_ISATTY
137
138 /* Define if you have the signal function.  */
139 #undef HAVE_SIGNAL
140
141 /* Define if you have the gettext function.  */
142 #undef HAVE_GETTEXT
143
144 /* Define if you have the <string.h> header file.  */
145 #undef HAVE_STRING_H
146
147 /* Define if you have the <stdarg.h> header file.  */
148 #undef HAVE_STDARG_H
149
150 /* Define if you have the <unistd.h> header file.  */
151 #undef HAVE_UNISTD_H
152
153 /* Define if you have the <utime.h> header file.  */
154 #undef HAVE_UTIME_H
155
156 /* Define if you have the <sys/utime.h> header file.  */
157 #undef HAVE_SYS_UTIME_H
158
159 /* Define if you have the <sys/select.h> header file.  */
160 #undef HAVE_SYS_SELECT_H
161
162 /* Define if you have the <pwd.h> header file.  */
163 #undef HAVE_PWD_H
164
165 /* Define if you have the <signal.h> header file.  */
166 #undef HAVE_SIGNAL_H
167
168 /* Define if you have the <libintl.h> header file.  */
169 #undef HAVE_LIBINTL_H
170
171 /* Define if you have the <locale.h> header file.  */
172 #undef HAVE_LOCALE_H
173
174 /* Define to be the name of the operating system.  */
175 #undef OS_TYPE
176
177 /* Define if you wish to compile with socks support.  */
178 #undef HAVE_SOCKS
179
180 /* Define to 1 if ANSI function prototypes are usable.  */
181 #undef PROTOTYPES
182
183 #endif /* CONFIG_H */