Remove Garbage Collection support.

GC support was never enabled by default and nobody in the current
development team seems to care about it.
This commit is contained in:
Alexander Færøy 2015-09-20 20:54:29 +02:00
commit 29cf546ee4
No known key found for this signature in database
GPG key ID: E15081D5D3C3DB53
5 changed files with 2 additions and 62 deletions

View file

@ -56,10 +56,6 @@
#define g_strcmp0(a, b) (!a ? -(a != b) : (!b ? (a != b) : strcmp(a, b)))
#endif
#ifdef USE_GC
# define g_free(x) G_STMT_START { (x) = NULL; } G_STMT_END
#endif
#if defined (UOFF_T_INT)
typedef unsigned int uoff_t;
#elif defined (UOFF_T_LONG)