14192
|
1 /* Local libgadu configuration. */
|
|
2
|
|
3 #include "config.h"
|
|
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 #if HAVE_STDINT_H
|
|
36 #include <stdint.h>
|
|
37 #endif
|
|
38
|
|
39 /* Defined if this machine has C99-compiliant vsnprintf(). */
|
|
40 #ifndef _WIN32
|
|
41 #define __GG_LIBGADU_HAVE_C99_VSNPRINTF
|
|
42 #else
|
|
43 #undef __GG_LIBGADU_HAVE_C99_VSNPRINTF
|
|
44 #endif
|
|
45
|
|
46 #define vnsprintf g_vnsprintf
|
|
47
|
|
48 #ifdef _WIN32
|
|
49 #define random (long) rand
|
|
50 #endif
|
|
51
|
|
52 #endif /* __GG_LIBGADU_CONFIG_H */
|