Thu, 31 May 2012 17:16:24 +0000
propagate from branch 'im.pidgin.pidgin' (head e92100ad6739ab2cd86a23490c11c4fd3142a94e)
to branch 'im.pidgin.soc.2012.gg' (head a3b7aa1b6f342964b1d666013e576b5e6031eeff)
| 11360 | 1 | /* Local libgadu configuration. */ |
| 2 | ||
| 3 | #ifndef __GG_LIBGADU_CONFIG_H | |
| 4 | #define __GG_LIBGADU_CONFIG_H | |
| 5 | ||
|
33288
eddaed171bb7
Libgadu configuration file cleanup and update
Tomasz Wasilczyk <tomkiewicz@cpw.pidgin.im>
parents:
33285
diff
changeset
|
6 | /* libpurple's config */ |
|
eddaed171bb7
Libgadu configuration file cleanup and update
Tomasz Wasilczyk <tomkiewicz@cpw.pidgin.im>
parents:
33285
diff
changeset
|
7 | #include <config.h> |
|
eddaed171bb7
Libgadu configuration file cleanup and update
Tomasz Wasilczyk <tomkiewicz@cpw.pidgin.im>
parents:
33285
diff
changeset
|
8 | |
| 11360 | 9 | /* Defined if libgadu was compiled for bigendian machine. */ |
|
33288
eddaed171bb7
Libgadu configuration file cleanup and update
Tomasz Wasilczyk <tomkiewicz@cpw.pidgin.im>
parents:
33285
diff
changeset
|
10 | #undef GG_CONFIG_BIGENDIAN |
| 11360 | 11 | #ifdef WORDS_BIGENDIAN |
|
33288
eddaed171bb7
Libgadu configuration file cleanup and update
Tomasz Wasilczyk <tomkiewicz@cpw.pidgin.im>
parents:
33285
diff
changeset
|
12 | # define GG_CONFIG_BIGENDIAN |
|
32688
9e137d441acd
Gadu-Gadu: synchronize internal libgadu with upstream - second encounter. Refs #343
Tomasz Wasilczyk <tomkiewicz@cpw.pidgin.im>
parents:
32675
diff
changeset
|
13 | #endif |
|
9e137d441acd
Gadu-Gadu: synchronize internal libgadu with upstream - second encounter. Refs #343
Tomasz Wasilczyk <tomkiewicz@cpw.pidgin.im>
parents:
32675
diff
changeset
|
14 | |
|
9e137d441acd
Gadu-Gadu: synchronize internal libgadu with upstream - second encounter. Refs #343
Tomasz Wasilczyk <tomkiewicz@cpw.pidgin.im>
parents:
32675
diff
changeset
|
15 | /* Defined if this machine has gethostbyname_r(). */ |
|
9e137d441acd
Gadu-Gadu: synchronize internal libgadu with upstream - second encounter. Refs #343
Tomasz Wasilczyk <tomkiewicz@cpw.pidgin.im>
parents:
32675
diff
changeset
|
16 | #undef GG_CONFIG_HAVE_GETHOSTBYNAME_R |
|
9e137d441acd
Gadu-Gadu: synchronize internal libgadu with upstream - second encounter. Refs #343
Tomasz Wasilczyk <tomkiewicz@cpw.pidgin.im>
parents:
32675
diff
changeset
|
17 | |
|
33289
a3b7aa1b6f34
We should use _exit, not exit with fork
Tomasz Wasilczyk <tomkiewicz@cpw.pidgin.im>
parents:
33288
diff
changeset
|
18 | /* Define to 1 if you have the `_exit' function. */ |
|
a3b7aa1b6f34
We should use _exit, not exit with fork
Tomasz Wasilczyk <tomkiewicz@cpw.pidgin.im>
parents:
33288
diff
changeset
|
19 | #define HAVE__EXIT 1 |
|
a3b7aa1b6f34
We should use _exit, not exit with fork
Tomasz Wasilczyk <tomkiewicz@cpw.pidgin.im>
parents:
33288
diff
changeset
|
20 | |
|
32688
9e137d441acd
Gadu-Gadu: synchronize internal libgadu with upstream - second encounter. Refs #343
Tomasz Wasilczyk <tomkiewicz@cpw.pidgin.im>
parents:
32675
diff
changeset
|
21 | /* Defined if libgadu was compiled and linked with fork support. */ |
|
9e137d441acd
Gadu-Gadu: synchronize internal libgadu with upstream - second encounter. Refs #343
Tomasz Wasilczyk <tomkiewicz@cpw.pidgin.im>
parents:
32675
diff
changeset
|
22 | #undef GG_CONFIG_HAVE_FORK |
|
9e137d441acd
Gadu-Gadu: synchronize internal libgadu with upstream - second encounter. Refs #343
Tomasz Wasilczyk <tomkiewicz@cpw.pidgin.im>
parents:
32675
diff
changeset
|
23 | #ifndef _WIN32 |
|
9e137d441acd
Gadu-Gadu: synchronize internal libgadu with upstream - second encounter. Refs #343
Tomasz Wasilczyk <tomkiewicz@cpw.pidgin.im>
parents:
32675
diff
changeset
|
24 | # define GG_CONFIG_HAVE_FORK |
|
9e137d441acd
Gadu-Gadu: synchronize internal libgadu with upstream - second encounter. Refs #343
Tomasz Wasilczyk <tomkiewicz@cpw.pidgin.im>
parents:
32675
diff
changeset
|
25 | #endif |
|
9e137d441acd
Gadu-Gadu: synchronize internal libgadu with upstream - second encounter. Refs #343
Tomasz Wasilczyk <tomkiewicz@cpw.pidgin.im>
parents:
32675
diff
changeset
|
26 | |
|
9e137d441acd
Gadu-Gadu: synchronize internal libgadu with upstream - second encounter. Refs #343
Tomasz Wasilczyk <tomkiewicz@cpw.pidgin.im>
parents:
32675
diff
changeset
|
27 | /* Defined if libgadu was compiled and linked with pthread support. */ |
|
33289
a3b7aa1b6f34
We should use _exit, not exit with fork
Tomasz Wasilczyk <tomkiewicz@cpw.pidgin.im>
parents:
33288
diff
changeset
|
28 | /* We don't use pthreads - they may not be safe. */ |
|
33288
eddaed171bb7
Libgadu configuration file cleanup and update
Tomasz Wasilczyk <tomkiewicz@cpw.pidgin.im>
parents:
33285
diff
changeset
|
29 | #undef GG_CONFIG_HAVE_PTHREAD |
|
32688
9e137d441acd
Gadu-Gadu: synchronize internal libgadu with upstream - second encounter. Refs #343
Tomasz Wasilczyk <tomkiewicz@cpw.pidgin.im>
parents:
32675
diff
changeset
|
30 | |
|
9e137d441acd
Gadu-Gadu: synchronize internal libgadu with upstream - second encounter. Refs #343
Tomasz Wasilczyk <tomkiewicz@cpw.pidgin.im>
parents:
32675
diff
changeset
|
31 | /* Defined if this machine has C99-compiliant vsnprintf(). */ |
|
33288
eddaed171bb7
Libgadu configuration file cleanup and update
Tomasz Wasilczyk <tomkiewicz@cpw.pidgin.im>
parents:
33285
diff
changeset
|
32 | #undef HAVE_C99_VSNPRINTF |
|
32688
9e137d441acd
Gadu-Gadu: synchronize internal libgadu with upstream - second encounter. Refs #343
Tomasz Wasilczyk <tomkiewicz@cpw.pidgin.im>
parents:
32675
diff
changeset
|
33 | #ifndef _WIN32 |
|
33288
eddaed171bb7
Libgadu configuration file cleanup and update
Tomasz Wasilczyk <tomkiewicz@cpw.pidgin.im>
parents:
33285
diff
changeset
|
34 | # define HAVE_C99_VSNPRINTF |
|
32688
9e137d441acd
Gadu-Gadu: synchronize internal libgadu with upstream - second encounter. Refs #343
Tomasz Wasilczyk <tomkiewicz@cpw.pidgin.im>
parents:
32675
diff
changeset
|
35 | #endif |
| 11360 | 36 | |
| 37 | /* Defined if this machine has va_copy(). */ | |
|
33288
eddaed171bb7
Libgadu configuration file cleanup and update
Tomasz Wasilczyk <tomkiewicz@cpw.pidgin.im>
parents:
33285
diff
changeset
|
38 | #define GG_CONFIG_HAVE_VA_COPY |
| 11360 | 39 | |
| 40 | /* Defined if this machine has __va_copy(). */ | |
|
33288
eddaed171bb7
Libgadu configuration file cleanup and update
Tomasz Wasilczyk <tomkiewicz@cpw.pidgin.im>
parents:
33285
diff
changeset
|
41 | #define GG_CONFIG_HAVE___VA_COPY |
| 11360 | 42 | |
| 43 | /* Defined if this machine supports long long. */ | |
|
33288
eddaed171bb7
Libgadu configuration file cleanup and update
Tomasz Wasilczyk <tomkiewicz@cpw.pidgin.im>
parents:
33285
diff
changeset
|
44 | #undef GG_CONFIG_HAVE_LONG_LONG |
| 11360 | 45 | #ifdef HAVE_LONG_LONG |
|
33288
eddaed171bb7
Libgadu configuration file cleanup and update
Tomasz Wasilczyk <tomkiewicz@cpw.pidgin.im>
parents:
33285
diff
changeset
|
46 | # define GG_CONFIG_HAVE_LONG_LONG |
|
32688
9e137d441acd
Gadu-Gadu: synchronize internal libgadu with upstream - second encounter. Refs #343
Tomasz Wasilczyk <tomkiewicz@cpw.pidgin.im>
parents:
32675
diff
changeset
|
47 | #endif |
| 11360 | 48 | |
|
32688
9e137d441acd
Gadu-Gadu: synchronize internal libgadu with upstream - second encounter. Refs #343
Tomasz Wasilczyk <tomkiewicz@cpw.pidgin.im>
parents:
32675
diff
changeset
|
49 | /* Defined if libgadu was compiled and linked with GnuTLS support. */ |
|
9e137d441acd
Gadu-Gadu: synchronize internal libgadu with upstream - second encounter. Refs #343
Tomasz Wasilczyk <tomkiewicz@cpw.pidgin.im>
parents:
32675
diff
changeset
|
50 | #undef GG_CONFIG_HAVE_GNUTLS |
|
31826
0f6ab56fbf9d
Update libgadu to 0.11.0 plus local changes; thanks to Tomasz Wasilczyk.
Ethan Blanton <elb@pidgin.im>
parents:
15884
diff
changeset
|
51 | #ifdef HAVE_GNUTLS |
|
0f6ab56fbf9d
Update libgadu to 0.11.0 plus local changes; thanks to Tomasz Wasilczyk.
Ethan Blanton <elb@pidgin.im>
parents:
15884
diff
changeset
|
52 | # define GG_CONFIG_HAVE_GNUTLS |
|
0f6ab56fbf9d
Update libgadu to 0.11.0 plus local changes; thanks to Tomasz Wasilczyk.
Ethan Blanton <elb@pidgin.im>
parents:
15884
diff
changeset
|
53 | #endif |
|
0f6ab56fbf9d
Update libgadu to 0.11.0 plus local changes; thanks to Tomasz Wasilczyk.
Ethan Blanton <elb@pidgin.im>
parents:
15884
diff
changeset
|
54 | |
|
32688
9e137d441acd
Gadu-Gadu: synchronize internal libgadu with upstream - second encounter. Refs #343
Tomasz Wasilczyk <tomkiewicz@cpw.pidgin.im>
parents:
32675
diff
changeset
|
55 | /* Defined if libgadu was compiled and linked with OpenSSL support. */ |
|
33288
eddaed171bb7
Libgadu configuration file cleanup and update
Tomasz Wasilczyk <tomkiewicz@cpw.pidgin.im>
parents:
33285
diff
changeset
|
56 | /* OpenSSL cannot be used with libpurple due to licence type. */ |
|
eddaed171bb7
Libgadu configuration file cleanup and update
Tomasz Wasilczyk <tomkiewicz@cpw.pidgin.im>
parents:
33285
diff
changeset
|
57 | #undef GG_CONFIG_HAVE_OPENSSL |
| 11360 | 58 | |
|
32688
9e137d441acd
Gadu-Gadu: synchronize internal libgadu with upstream - second encounter. Refs #343
Tomasz Wasilczyk <tomkiewicz@cpw.pidgin.im>
parents:
32675
diff
changeset
|
59 | /* Defined if libgadu was compiled and linked with zlib support. */ |
|
9e137d441acd
Gadu-Gadu: synchronize internal libgadu with upstream - second encounter. Refs #343
Tomasz Wasilczyk <tomkiewicz@cpw.pidgin.im>
parents:
32675
diff
changeset
|
60 | #undef GG_CONFIG_HAVE_ZLIB |
|
9e137d441acd
Gadu-Gadu: synchronize internal libgadu with upstream - second encounter. Refs #343
Tomasz Wasilczyk <tomkiewicz@cpw.pidgin.im>
parents:
32675
diff
changeset
|
61 | |
|
9e137d441acd
Gadu-Gadu: synchronize internal libgadu with upstream - second encounter. Refs #343
Tomasz Wasilczyk <tomkiewicz@cpw.pidgin.im>
parents:
32675
diff
changeset
|
62 | /* Defined if uintX_t types are defined in <stdint.h>. */ |
|
9e137d441acd
Gadu-Gadu: synchronize internal libgadu with upstream - second encounter. Refs #343
Tomasz Wasilczyk <tomkiewicz@cpw.pidgin.im>
parents:
32675
diff
changeset
|
63 | #undef GG_CONFIG_HAVE_STDINT_H |
|
33288
eddaed171bb7
Libgadu configuration file cleanup and update
Tomasz Wasilczyk <tomkiewicz@cpw.pidgin.im>
parents:
33285
diff
changeset
|
64 | #ifdef HAVE_STDINT_H |
|
32688
9e137d441acd
Gadu-Gadu: synchronize internal libgadu with upstream - second encounter. Refs #343
Tomasz Wasilczyk <tomkiewicz@cpw.pidgin.im>
parents:
32675
diff
changeset
|
65 | # define GG_CONFIG_HAVE_STDINT_H |
|
12561
c81871bffd54
[gaim-migrate @ 14880]
Richard Laager <rlaager@pidgin.im>
parents:
11546
diff
changeset
|
66 | #endif |
| 11360 | 67 | |
|
33288
eddaed171bb7
Libgadu configuration file cleanup and update
Tomasz Wasilczyk <tomkiewicz@cpw.pidgin.im>
parents:
33285
diff
changeset
|
68 | /* Defined if uintX_t types are defined in <inttypes.h>. */ |
|
eddaed171bb7
Libgadu configuration file cleanup and update
Tomasz Wasilczyk <tomkiewicz@cpw.pidgin.im>
parents:
33285
diff
changeset
|
69 | #undef GG_CONFIG_HAVE_INTTYPES_H |
|
eddaed171bb7
Libgadu configuration file cleanup and update
Tomasz Wasilczyk <tomkiewicz@cpw.pidgin.im>
parents:
33285
diff
changeset
|
70 | #ifdef HAVE_INTTYPES_H |
|
eddaed171bb7
Libgadu configuration file cleanup and update
Tomasz Wasilczyk <tomkiewicz@cpw.pidgin.im>
parents:
33285
diff
changeset
|
71 | # define GG_CONFIG_HAVE_INTTYPES_H |
|
eddaed171bb7
Libgadu configuration file cleanup and update
Tomasz Wasilczyk <tomkiewicz@cpw.pidgin.im>
parents:
33285
diff
changeset
|
72 | #endif |
|
eddaed171bb7
Libgadu configuration file cleanup and update
Tomasz Wasilczyk <tomkiewicz@cpw.pidgin.im>
parents:
33285
diff
changeset
|
73 | |
|
eddaed171bb7
Libgadu configuration file cleanup and update
Tomasz Wasilczyk <tomkiewicz@cpw.pidgin.im>
parents:
33285
diff
changeset
|
74 | /* Defined if uintX_t types are defined in <sys/types.h>. */ |
|
eddaed171bb7
Libgadu configuration file cleanup and update
Tomasz Wasilczyk <tomkiewicz@cpw.pidgin.im>
parents:
33285
diff
changeset
|
75 | #undef GG_CONFIG_HAVE_SYS_TYPES_H |
|
eddaed171bb7
Libgadu configuration file cleanup and update
Tomasz Wasilczyk <tomkiewicz@cpw.pidgin.im>
parents:
33285
diff
changeset
|
76 | #ifdef HAVE_SYS_TYPES_H |
|
eddaed171bb7
Libgadu configuration file cleanup and update
Tomasz Wasilczyk <tomkiewicz@cpw.pidgin.im>
parents:
33285
diff
changeset
|
77 | # define GG_CONFIG_HAVE_SYS_TYPES_H |
|
eddaed171bb7
Libgadu configuration file cleanup and update
Tomasz Wasilczyk <tomkiewicz@cpw.pidgin.im>
parents:
33285
diff
changeset
|
78 | #endif |
|
eddaed171bb7
Libgadu configuration file cleanup and update
Tomasz Wasilczyk <tomkiewicz@cpw.pidgin.im>
parents:
33285
diff
changeset
|
79 | |
| 11360 | 80 | |
| 81 | #define vnsprintf g_vnsprintf | |
| 82 | ||
|
11546
acb5676e57bb
[gaim-migrate @ 13801]
Daniel Atallah <datallah@pidgin.im>
parents:
11360
diff
changeset
|
83 | #endif |