Fri, 08 Jun 2012 16:47:57 +0000
Makefile cleanup, fix building with external libgadu, little synchronization of internal libgadu with upstream. Refs #343
|
33292
0ad1dc71f5c7
Makefile cleanup, fix building with external libgadu, little synchronization of internal libgadu with upstream. Refs #343
Tomasz Wasilczyk <tomkiewicz@cpw.pidgin.im>
parents:
33290
diff
changeset
|
1 | /* Local libgadu configuration file. */ |
| 11360 | 2 | |
|
33288
eddaed171bb7
Libgadu configuration file cleanup and update
Tomasz Wasilczyk <tomkiewicz@cpw.pidgin.im>
parents:
33285
diff
changeset
|
3 | /* libpurple's config */ |
|
eddaed171bb7
Libgadu configuration file cleanup and update
Tomasz Wasilczyk <tomkiewicz@cpw.pidgin.im>
parents:
33285
diff
changeset
|
4 | #include <config.h> |
|
eddaed171bb7
Libgadu configuration file cleanup and update
Tomasz Wasilczyk <tomkiewicz@cpw.pidgin.im>
parents:
33285
diff
changeset
|
5 | |
|
33292
0ad1dc71f5c7
Makefile cleanup, fix building with external libgadu, little synchronization of internal libgadu with upstream. Refs #343
Tomasz Wasilczyk <tomkiewicz@cpw.pidgin.im>
parents:
33290
diff
changeset
|
6 | #define GG_LIBGADU_VERSION "1.11.1" |
|
0ad1dc71f5c7
Makefile cleanup, fix building with external libgadu, little synchronization of internal libgadu with upstream. Refs #343
Tomasz Wasilczyk <tomkiewicz@cpw.pidgin.im>
parents:
33290
diff
changeset
|
7 | |
| 11360 | 8 | /* 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
|
9 | #undef GG_CONFIG_BIGENDIAN |
| 11360 | 10 | #ifdef WORDS_BIGENDIAN |
|
33288
eddaed171bb7
Libgadu configuration file cleanup and update
Tomasz Wasilczyk <tomkiewicz@cpw.pidgin.im>
parents:
33285
diff
changeset
|
11 | # 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
|
12 | #endif |
|
9e137d441acd
Gadu-Gadu: synchronize internal libgadu with upstream - second encounter. Refs #343
Tomasz Wasilczyk <tomkiewicz@cpw.pidgin.im>
parents:
32675
diff
changeset
|
13 | |
|
9e137d441acd
Gadu-Gadu: synchronize internal libgadu with upstream - second encounter. Refs #343
Tomasz Wasilczyk <tomkiewicz@cpw.pidgin.im>
parents:
32675
diff
changeset
|
14 | /* 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
|
15 | #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
|
16 | |
|
33289
a3b7aa1b6f34
We should use _exit, not exit with fork
Tomasz Wasilczyk <tomkiewicz@cpw.pidgin.im>
parents:
33288
diff
changeset
|
17 | /* 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
|
18 | #define HAVE__EXIT 1 |
|
a3b7aa1b6f34
We should use _exit, not exit with fork
Tomasz Wasilczyk <tomkiewicz@cpw.pidgin.im>
parents:
33288
diff
changeset
|
19 | |
|
32688
9e137d441acd
Gadu-Gadu: synchronize internal libgadu with upstream - second encounter. Refs #343
Tomasz Wasilczyk <tomkiewicz@cpw.pidgin.im>
parents:
32675
diff
changeset
|
20 | /* 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
|
21 | #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
|
22 | #ifndef _WIN32 |
|
9e137d441acd
Gadu-Gadu: synchronize internal libgadu with upstream - second encounter. Refs #343
Tomasz Wasilczyk <tomkiewicz@cpw.pidgin.im>
parents:
32675
diff
changeset
|
23 | # 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
|
24 | #endif |
|
9e137d441acd
Gadu-Gadu: synchronize internal libgadu with upstream - second encounter. Refs #343
Tomasz Wasilczyk <tomkiewicz@cpw.pidgin.im>
parents:
32675
diff
changeset
|
25 | |
|
9e137d441acd
Gadu-Gadu: synchronize internal libgadu with upstream - second encounter. Refs #343
Tomasz Wasilczyk <tomkiewicz@cpw.pidgin.im>
parents:
32675
diff
changeset
|
26 | /* 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
|
27 | /* 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
|
28 | #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
|
29 | |
|
9e137d441acd
Gadu-Gadu: synchronize internal libgadu with upstream - second encounter. Refs #343
Tomasz Wasilczyk <tomkiewicz@cpw.pidgin.im>
parents:
32675
diff
changeset
|
30 | /* 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
|
31 | #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
|
32 | #ifndef _WIN32 |
|
33288
eddaed171bb7
Libgadu configuration file cleanup and update
Tomasz Wasilczyk <tomkiewicz@cpw.pidgin.im>
parents:
33285
diff
changeset
|
33 | # 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
|
34 | #endif |
| 11360 | 35 | |
| 36 | /* 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
|
37 | #define GG_CONFIG_HAVE_VA_COPY |
| 11360 | 38 | |
| 39 | /* 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
|
40 | #define GG_CONFIG_HAVE___VA_COPY |
| 11360 | 41 | |
| 42 | /* 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
|
43 | #undef GG_CONFIG_HAVE_LONG_LONG |
| 11360 | 44 | #ifdef HAVE_LONG_LONG |
|
33288
eddaed171bb7
Libgadu configuration file cleanup and update
Tomasz Wasilczyk <tomkiewicz@cpw.pidgin.im>
parents:
33285
diff
changeset
|
45 | # 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
|
46 | #endif |
| 11360 | 47 | |
|
32688
9e137d441acd
Gadu-Gadu: synchronize internal libgadu with upstream - second encounter. Refs #343
Tomasz Wasilczyk <tomkiewicz@cpw.pidgin.im>
parents:
32675
diff
changeset
|
48 | /* 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
|
49 | #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
|
50 | #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
|
51 | # 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
|
52 | #endif |
|
0f6ab56fbf9d
Update libgadu to 0.11.0 plus local changes; thanks to Tomasz Wasilczyk.
Ethan Blanton <elb@pidgin.im>
parents:
15884
diff
changeset
|
53 | |
|
32688
9e137d441acd
Gadu-Gadu: synchronize internal libgadu with upstream - second encounter. Refs #343
Tomasz Wasilczyk <tomkiewicz@cpw.pidgin.im>
parents:
32675
diff
changeset
|
54 | /* 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
|
55 | /* 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
|
56 | #undef GG_CONFIG_HAVE_OPENSSL |
| 11360 | 57 | |
|
32688
9e137d441acd
Gadu-Gadu: synchronize internal libgadu with upstream - second encounter. Refs #343
Tomasz Wasilczyk <tomkiewicz@cpw.pidgin.im>
parents:
32675
diff
changeset
|
58 | /* 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
|
59 | #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
|
60 | |
|
9e137d441acd
Gadu-Gadu: synchronize internal libgadu with upstream - second encounter. Refs #343
Tomasz Wasilczyk <tomkiewicz@cpw.pidgin.im>
parents:
32675
diff
changeset
|
61 | /* 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
|
62 | #undef GG_CONFIG_HAVE_STDINT_H |
|
33288
eddaed171bb7
Libgadu configuration file cleanup and update
Tomasz Wasilczyk <tomkiewicz@cpw.pidgin.im>
parents:
33285
diff
changeset
|
63 | #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
|
64 | # define GG_CONFIG_HAVE_STDINT_H |
|
12561
c81871bffd54
[gaim-migrate @ 14880]
Richard Laager <rlaager@pidgin.im>
parents:
11546
diff
changeset
|
65 | #endif |
| 11360 | 66 | |
|
33288
eddaed171bb7
Libgadu configuration file cleanup and update
Tomasz Wasilczyk <tomkiewicz@cpw.pidgin.im>
parents:
33285
diff
changeset
|
67 | /* 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
|
68 | #undef GG_CONFIG_HAVE_INTTYPES_H |
|
eddaed171bb7
Libgadu configuration file cleanup and update
Tomasz Wasilczyk <tomkiewicz@cpw.pidgin.im>
parents:
33285
diff
changeset
|
69 | #ifdef HAVE_INTTYPES_H |
|
eddaed171bb7
Libgadu configuration file cleanup and update
Tomasz Wasilczyk <tomkiewicz@cpw.pidgin.im>
parents:
33285
diff
changeset
|
70 | # define GG_CONFIG_HAVE_INTTYPES_H |
|
eddaed171bb7
Libgadu configuration file cleanup and update
Tomasz Wasilczyk <tomkiewicz@cpw.pidgin.im>
parents:
33285
diff
changeset
|
71 | #endif |
|
eddaed171bb7
Libgadu configuration file cleanup and update
Tomasz Wasilczyk <tomkiewicz@cpw.pidgin.im>
parents:
33285
diff
changeset
|
72 | |
|
eddaed171bb7
Libgadu configuration file cleanup and update
Tomasz Wasilczyk <tomkiewicz@cpw.pidgin.im>
parents:
33285
diff
changeset
|
73 | /* 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
|
74 | #undef GG_CONFIG_HAVE_SYS_TYPES_H |
|
eddaed171bb7
Libgadu configuration file cleanup and update
Tomasz Wasilczyk <tomkiewicz@cpw.pidgin.im>
parents:
33285
diff
changeset
|
75 | #ifdef HAVE_SYS_TYPES_H |
|
eddaed171bb7
Libgadu configuration file cleanup and update
Tomasz Wasilczyk <tomkiewicz@cpw.pidgin.im>
parents:
33285
diff
changeset
|
76 | # define GG_CONFIG_HAVE_SYS_TYPES_H |
|
eddaed171bb7
Libgadu configuration file cleanup and update
Tomasz Wasilczyk <tomkiewicz@cpw.pidgin.im>
parents:
33285
diff
changeset
|
77 | #endif |