soc.2012.gg: 86ff13bb: Libgadu configuration file cleanup and u...
tomkiewicz at cpw.pidgin.im
tomkiewicz at cpw.pidgin.im
Fri May 25 17:41:45 EDT 2012
----------------------------------------------------------------------
Revision: 86ff13bbe87f89af715123867fd41d4798f58272
Parent: a679029bf30ee766841e5d910dc56cf39dacfac3
Author: tomkiewicz at cpw.pidgin.im
Date: 05/25/12 17:35:32
Branch: im.pidgin.soc.2012.gg
URL: http://d.pidgin.im/viewmtn/revision/info/86ff13bbe87f89af715123867fd41d4798f58272
Changelog:
Libgadu configuration file cleanup and update
Changes against parent a679029bf30ee766841e5d910dc56cf39dacfac3
patched libpurple/protocols/gg/lib/config.h
-------------- next part --------------
============================================================
--- libpurple/protocols/gg/lib/config.h ad2b6feca386b32e4e9d179ac97da5eb7142c473
+++ libpurple/protocols/gg/lib/config.h c2274e808795ecd3a845a3fa7c927ae9bf23cdf4
@@ -1,23 +1,20 @@
/* Local libgadu configuration. */
+#ifndef __GG_LIBGADU_CONFIG_H
+#define __GG_LIBGADU_CONFIG_H
+
/* libpurple's config */
#include <config.h>
-#ifndef __GG_LIBGADU_CONFIG_H
-#define __GG_LIBGADU_CONFIG_H
-
/* Defined if libgadu was compiled for bigendian machine. */
-#undef __GG_LIBGADU_BIGENDIAN
+#undef GG_CONFIG_BIGENDIAN
#ifdef WORDS_BIGENDIAN
-# define __GG_LIBGADU_BIGENDIAN
+# define GG_CONFIG_BIGENDIAN
#endif
/* Defined if this machine has gethostbyname_r(). */
#undef GG_CONFIG_HAVE_GETHOSTBYNAME_R
-/* Defined if this machine has _exit(). */
-#define GG_CONFIG_HAVE__EXIT
-
/* Defined if libgadu was compiled and linked with fork support. */
#undef GG_CONFIG_HAVE_FORK
#ifndef _WIN32
@@ -25,25 +22,25 @@
#endif
/* Defined if libgadu was compiled and linked with pthread support. */
-/* We don't like pthreads. */
-#undef __GG_LIBGADU_HAVE_PTHREAD
+/* We don't use pthreads due to stability issues. */
+#undef GG_CONFIG_HAVE_PTHREAD
/* Defined if this machine has C99-compiliant vsnprintf(). */
-#undef __GG_LIBGADU_HAVE_C99_VSNPRINTF
+#undef HAVE_C99_VSNPRINTF
#ifndef _WIN32
-# define __GG_LIBGADU_HAVE_C99_VSNPRINTF
+# define HAVE_C99_VSNPRINTF
#endif
/* Defined if this machine has va_copy(). */
-#define __GG_LIBGADU_HAVE_VA_COPY
+#define GG_CONFIG_HAVE_VA_COPY
/* Defined if this machine has __va_copy(). */
-#define __GG_LIBGADU_HAVE___VA_COPY
+#define GG_CONFIG_HAVE___VA_COPY
/* Defined if this machine supports long long. */
-#undef __GG_LIBGADU_HAVE_LONG_LONG
+#undef GG_CONFIG_HAVE_LONG_LONG
#ifdef HAVE_LONG_LONG
-# define __GG_LIBGADU_HAVE_LONG_LONG
+# define GG_CONFIG_HAVE_LONG_LONG
#endif
/* Defined if libgadu was compiled and linked with GnuTLS support. */
@@ -53,19 +50,31 @@
#endif
/* Defined if libgadu was compiled and linked with OpenSSL support. */
-/* Always undefined in Purple. */
-#undef __GG_LIBGADU_HAVE_OPENSSL
+/* OpenSSL cannot be used with libpurple due to licence type. */
+#undef GG_CONFIG_HAVE_OPENSSL
/* Defined if libgadu was compiled and linked with zlib support. */
#undef GG_CONFIG_HAVE_ZLIB
/* Defined if uintX_t types are defined in <stdint.h>. */
#undef GG_CONFIG_HAVE_STDINT_H
-#if HAVE_STDINT_H
+#ifdef HAVE_STDINT_H
# define GG_CONFIG_HAVE_STDINT_H
#endif
+/* Defined if uintX_t types are defined in <inttypes.h>. */
+#undef GG_CONFIG_HAVE_INTTYPES_H
+#ifdef HAVE_INTTYPES_H
+# define GG_CONFIG_HAVE_INTTYPES_H
+#endif
+/* Defined if uintX_t types are defined in <sys/types.h>. */
+#undef GG_CONFIG_HAVE_SYS_TYPES_H
+#ifdef HAVE_SYS_TYPES_H
+# define GG_CONFIG_HAVE_SYS_TYPES_H
+#endif
+
+
#define vnsprintf g_vnsprintf
#endif
More information about the Commits
mailing list