diff options
Diffstat (limited to 'meta-gnome/recipes-support/tracker/tracker-0.14.2/0005-Fix-missing-gobject-introspection-checks.patch')
-rw-r--r-- | meta-gnome/recipes-support/tracker/tracker-0.14.2/0005-Fix-missing-gobject-introspection-checks.patch | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/meta-gnome/recipes-support/tracker/tracker-0.14.2/0005-Fix-missing-gobject-introspection-checks.patch b/meta-gnome/recipes-support/tracker/tracker-0.14.2/0005-Fix-missing-gobject-introspection-checks.patch new file mode 100644 index 000000000..8701f5854 --- /dev/null +++ b/meta-gnome/recipes-support/tracker/tracker-0.14.2/0005-Fix-missing-gobject-introspection-checks.patch | |||
@@ -0,0 +1,17 @@ | |||
1 | diff -Naur ../tracker-0.10.8/configure.ac tracker-0.10.8//configure.ac | ||
2 | --- ../tracker-0.10.8/configure.ac 2011-04-08 15:03:30.000000000 +0300 | ||
3 | +++ tracker-0.10.8//configure.ac 2011-04-11 13:47:16.625914002 +0300 | ||
4 | @@ -218,7 +218,12 @@ | ||
5 | |||
6 | # Needed to generate .gir files, | ||
7 | # see http://live.gnome.org/GnomeGoals/AddGObjectIntrospectionSupport | ||
8 | -GOBJECT_INTROSPECTION_CHECK([0.9.5]) | ||
9 | +#GOBJECT_INTROSPECTION_CHECK([0.9.5]) | ||
10 | +# Satisfy missing introspection foo | ||
11 | +AM_CONDITIONAL(HAVE_INTROSPECTION, test "0" == "1") | ||
12 | + | ||
13 | +INTROSPECTION_CFLAGS="" | ||
14 | +AC_SUBST(INTROSPECTION_CFLAGS) | ||
15 | |||
16 | # NOTE: dbus and dbus-glib-1 are only used now for libtracker-client | ||
17 | # which is deprecated and tracker-writeback which will be refactored | ||