SoupDirectoryInputStream: Remove deprecated use of GTimeVal
[platform/upstream/libsoup.git] / config.h.win32.in
1 /* config.h.in.  Generated from configure.ac by autoheader.  */
2
3 /* Apache httpd */
4 /* #undef APACHE_HTTPD */
5
6 /* The gettext domain name */
7 #define GETTEXT_PACKAGE "libsoup"
8
9 /* Whether or not apache can be used for tests */
10 /* #undef HAVE_APACHE */
11
12 /* Apache is 2.2.x */
13 /* #undef HAVE_APACHE_2_2 */
14
15 /* Apache is 2.4.x */
16 /* #undef HAVE_APACHE_2_4 */
17
18 /* Whether or not curl can be used for tests */
19 #define HAVE_CURL 1
20
21 /* Define to 1 if you have the <dlfcn.h> header file. */
22 /* #undef HAVE_DLFCN_H */
23
24 /* Define to 1 if you have the `gmtime_r' function. */
25 /* #undef HAVE_GMTIME_R */
26
27 /* Defined if GNOME support is enabled */
28 #define HAVE_GNOME 1
29
30 /* Define to 1 if you have the <inttypes.h> header file. */
31 #if !defined (_MSC_VER) || (_MSC_VER >= 1800)
32 #define HAVE_INTTYPES_H 1
33 #endif
34
35 /* Define to 1 if you have the <memory.h> header file. */
36 #define HAVE_MEMORY_H 1
37
38 /* Have php-xmlrpc */
39 /* #undef HAVE_PHP_XMLRPC */
40
41 /* Define to 1 if you have the <stdint.h> header file. */
42 #if !defined (_MSC_VER) || (_MSC_VER >= 1600)
43 #define HAVE_STDINT_H 1
44 #endif
45
46 /* Define to 1 if you have the <stdlib.h> header file. */
47 #define HAVE_STDLIB_H 1
48
49 /* Define to 1 if you have the <strings.h> header file. */
50 #ifndef _MSC_VER
51 #define HAVE_STRINGS_H 1
52 #endif
53
54 /* Define to 1 if you have the <string.h> header file. */
55 #define HAVE_STRING_H 1
56
57 /* Define to 1 if you have the <sys/stat.h> header file. */
58 #define HAVE_SYS_STAT_H 1
59
60 /* Define to 1 if you have the <sys/types.h> header file. */
61 #define HAVE_SYS_TYPES_H 1
62
63 /* Define to 1 if you have the <unistd.h> header file. */
64 #ifndef _MSC_VER
65 #defin HAVE_UNISTD_H 1
66 #endif
67
68 /* Whether or not GSSAPI libs are available */
69 /* Note: This is activated in the projects when the appropriate config is selected */
70 /* #undef LIBSOUP_HAVE_GSSAPI */
71
72 /* Define to the sub-directory in which libtool stores uninstalled libraries.
73    */
74 #define LT_OBJDIR ".libs/"
75
76 /* Samba's 'winbind' daemon helper 'ntlm_auth' which can be used for NTLM
77    single-sign-on */
78 /* #undef NTLM_AUTH */
79
80 /* Name of package */
81 #define PACKAGE "@PACKAGE@"
82
83 /* Define to the address where bug reports for this package should be sent. */
84 #define PACKAGE_BUGREPORT "@PACKAGE_BUGREPORT@"
85
86 /* Define to the full name of this package. */
87 #define PACKAGE_NAME "@PACKAGE_NAME@"
88
89 /* Define to the full name and version of this package. */
90 #define PACKAGE_STRING "@PACKAGE_NAME@ @PACKAGE_VERSION@"
91
92 /* Define to the one symbol short name of this package. */
93 #define PACKAGE_TARNAME "@PACKAGE_TARNAME@"
94
95 /* Define to the home page for this package. */
96 #define PACKAGE_URL ""
97
98 /* Define to the version of this package. */
99 #define PACKAGE_VERSION "@PACKAGE_VERSION@"
100
101 /* Define to 1 if you have the ANSI C header files. */
102 #define STDC_HEADERS 1
103
104 /* Whether or not use Samba's 'winbind' daemon helper 'ntlm_auth' for NTLM
105    single-sign-on */
106 /* #undef USE_NTLM_AUTH */
107
108 /* Version number of package */
109 #define VERSION "@PACKAGE_VERSION"
110
111 /* defines how to decorate public symbols while building */
112 #ifdef _MSC_VER
113 #define _SOUP_EXTERN __declspec (dllexport) extern
114 #else
115 #define _SOUP_EXTERN __attribute__((visibility("default"))) __declspec (dllexport) extern
116 #endif