summaryrefslogtreecommitdiff
path: root/cogl/cogl-context.h
diff options
context:
space:
mode:
authorNeil Roberts <neil@linux.intel.com>2012-11-22 18:01:10 +0000
committerRobert Bragg <robert@linux.intel.com>2013-01-20 18:38:25 +0000
commit13a1433a7e991268f695a9926a74dcb7f2c74525 (patch)
tree308c786fadd2f54a8e33bc7d634359967a1e838a /cogl/cogl-context.h
parent8625c36844bf9dc66d4d479487407aefb9386d0b (diff)
downloadcogl-13a1433a7e991268f695a9926a74dcb7f2c74525.tar.gz
Fixes for --disable-glib
This fixes some problems which were stopping --disable-glib from working properly: • A lot of the public headers were including glib.h. This shouldn't be necessary because the API doesn't expose any glib types. Otherwise any apps would require glib in order to get the header. • The public headers were using G_BEGIN_DECLS. There is now a replacement macro called COGL_BEGIN_DECLS which is defined in cogl-types.h. • A similar fix has been done for G_GNUC_NULL_TERMINATED and G_GNUC_DEPRECATED. • The CFLAGS were not including $(builddir)/deps/glib which was preventing it finding the generated glibconfig.h when building out of tree. Reviewed-by: Robert Bragg <robert@linux.intel.com> (cherry picked from commit 4138b3141c2f39cddaea3d72bfc04342ed5092d0)
Diffstat (limited to 'cogl/cogl-context.h')
-rw-r--r--cogl/cogl-context.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/cogl/cogl-context.h b/cogl/cogl-context.h
index 791d2d3d..639fae53 100644
--- a/cogl/cogl-context.h
+++ b/cogl/cogl-context.h
@@ -43,7 +43,7 @@ typedef struct _CoglContext CoglContext;
#include <android/native_window.h>
#endif
-G_BEGIN_DECLS
+COGL_BEGIN_DECLS
/**
* SECTION:cogl-context
@@ -318,7 +318,7 @@ cogl_foreach_feature (CoglContext *context,
#endif /* COGL_ENABLE_EXPERIMENTAL_API */
-G_END_DECLS
+COGL_END_DECLS
#endif /* __COGL_CONTEXT_H__ */