Thu, 22 Sep 2005 22:20:21 +0000
[gaim-migrate @ 13831]
Default type of the outgoing messages is CHAT.
| 11360 | 1 | /* Local libgadu configuration. */ |
| 2 | ||
|
11546
acb5676e57bb
[gaim-migrate @ 13801]
Daniel Atallah <datallah@pidgin.im>
parents:
11360
diff
changeset
|
3 | /* #include "../../../config.h" */ |
| 11360 | 4 | |
| 5 | #ifndef __GG_LIBGADU_CONFIG_H | |
| 6 | #define __GG_LIBGADU_CONFIG_H | |
| 7 | ||
| 8 | /* Defined if libgadu was compiled for bigendian machine. */ | |
| 9 | #undef __GG_LIBGADU_BIGENDIAN | |
| 10 | #ifdef WORDS_BIGENDIAN | |
| 11 | #define __GG_LIBGADU_BIGENDIAN | |
| 12 | #endif /* WORDS_BIGENDIAN */ | |
| 13 | ||
| 14 | /* Defined if this machine has va_copy(). */ | |
| 15 | #define __GG_LIBGADU_HAVE_VA_COPY | |
| 16 | ||
| 17 | /* Defined if this machine has __va_copy(). */ | |
| 18 | #define __GG_LIBGADU_HAVE___VA_COPY | |
| 19 | ||
| 20 | /* Defined if this machine supports long long. */ | |
| 21 | #undef __GG_LIBGADU_HAVE_LONG_LONG | |
| 22 | #ifdef HAVE_LONG_LONG | |
| 23 | #define __GG_LIBGADU_HAVE_LONG_LONG | |
| 24 | #endif /* HAVE_LONG_LONG */ | |
| 25 | ||
| 26 | /* Defined if libgadu was compiled and linked with pthread support. */ | |
| 27 | /* We don't like pthreads. */ | |
| 28 | #undef __GG_LIBGADU_HAVE_PTHREAD | |
| 29 | ||
| 30 | /* Defined if libgadu was compiled and linked with TLS support. */ | |
| 31 | /* Always undefined in Gaim. */ | |
| 32 | #undef __GG_LIBGADU_HAVE_OPENSSL | |
| 33 | ||
| 34 | /* Include file containing uintXX_t declarations. */ | |
| 35 | #include <stdint.h> | |
| 36 | ||
| 37 | /* Defined if this machine has C99-compiliant vsnprintf(). */ | |
|
11546
acb5676e57bb
[gaim-migrate @ 13801]
Daniel Atallah <datallah@pidgin.im>
parents:
11360
diff
changeset
|
38 | #ifndef _WIN32 |
| 11360 | 39 | #define __GG_LIBGADU_HAVE_C99_VSNPRINTF |
|
11546
acb5676e57bb
[gaim-migrate @ 13801]
Daniel Atallah <datallah@pidgin.im>
parents:
11360
diff
changeset
|
40 | #else |
|
acb5676e57bb
[gaim-migrate @ 13801]
Daniel Atallah <datallah@pidgin.im>
parents:
11360
diff
changeset
|
41 | #undef __GG_LIBGADU_HAVE_C99_VSNPRINTF |
|
acb5676e57bb
[gaim-migrate @ 13801]
Daniel Atallah <datallah@pidgin.im>
parents:
11360
diff
changeset
|
42 | #endif |
| 11360 | 43 | |
| 44 | #define vnsprintf g_vnsprintf | |
| 45 | ||
|
11546
acb5676e57bb
[gaim-migrate @ 13801]
Daniel Atallah <datallah@pidgin.im>
parents:
11360
diff
changeset
|
46 | #ifdef _WIN32 |
|
acb5676e57bb
[gaim-migrate @ 13801]
Daniel Atallah <datallah@pidgin.im>
parents:
11360
diff
changeset
|
47 | #define random (long) rand |
|
acb5676e57bb
[gaim-migrate @ 13801]
Daniel Atallah <datallah@pidgin.im>
parents:
11360
diff
changeset
|
48 | #endif |
|
acb5676e57bb
[gaim-migrate @ 13801]
Daniel Atallah <datallah@pidgin.im>
parents:
11360
diff
changeset
|
49 | |
| 11360 | 50 | #endif /* __GG_LIBGADU_CONFIG_H */ |