summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEmmanuele Bassi <ebassi@gnome.org>2020-10-28 16:26:44 +0000
committerEmmanuele Bassi <ebassi@gnome.org>2020-10-28 16:26:44 +0000
commitb679cb0641bda58860fb783465f1600dbf576172 (patch)
tree26c510788928717485a20139b1eed98282f881b0
parenta52a23cc834cb4e32a1725e0c5b153524c4b46fa (diff)
downloadgtk-doc-b679cb0641bda58860fb783465f1600dbf576172.tar.gz
Ignore deprecation warnings when scanning typesignore-gobject-deprecations
We annotate deprecated types, which means we get compiler warnings when scanning them. This, coupled to -Werror or similar mechanisms, breaks the build when generating the documentation.
-rw-r--r--gtkdoc/scangobj.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/gtkdoc/scangobj.py b/gtkdoc/scangobj.py
index bf4e1ea..0156734 100644
--- a/gtkdoc/scangobj.py
+++ b/gtkdoc/scangobj.py
@@ -40,6 +40,12 @@ COMMON_INCLUDES = """
#include <stdio.h>
#include <errno.h>
#include <glib-object.h>
+
+#ifndef G_GNUC_BEGIN_IGNORE_DEPRECATIONS
+# define G_GNUC_BEGIN_IGNORE_DEPRECATIONS
+# define G_GNUC_END_IGNORE_DEPRECATIONS
+#endif
+
"""
QUERY_CHILD_PROPS_PROTOTYPE = "extern GParamSpec** %s (gpointer class, guint *n_properties);"
@@ -67,6 +73,8 @@ get_object_types (void)
gpointer g_object_class;
gint i = 0;
+G_GNUC_BEGIN_IGNORE_DEPRECATIONS
+
${get_types}
object_types[i] = G_TYPE_INVALID;
@@ -86,6 +94,8 @@ ${get_types}
g_type_class_unref (g_object_class);
+G_GNUC_END_IGNORE_DEPRECATIONS
+
return object_types;
}