diff options
author | Tudor Florea <tudor.florea@enea.com> | 2014-10-10 03:20:04 +0200 |
---|---|---|
committer | Tudor Florea <tudor.florea@enea.com> | 2014-10-10 03:20:04 +0200 |
commit | 1b8dfe266937a37a4c642f96ceb2347bf4c00a17 (patch) | |
tree | 0c6aab146bb3c82efd9c7846a9a4e70dcb0ec84f /meta-oe/recipes-support/tracker/tracker-0.14.2/0005-Fix-missing-gobject-introspection-checks.patch | |
download | meta-openembedded-daisy-140929.tar.gz |
initial commit for Enea Linux 4.0-140929daisy-140929
Migrated from the internal git server on the daisy-enea-point-release branch
Signed-off-by: Tudor Florea <tudor.florea@enea.com>
Diffstat (limited to 'meta-oe/recipes-support/tracker/tracker-0.14.2/0005-Fix-missing-gobject-introspection-checks.patch')
-rw-r--r-- | meta-oe/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-oe/recipes-support/tracker/tracker-0.14.2/0005-Fix-missing-gobject-introspection-checks.patch b/meta-oe/recipes-support/tracker/tracker-0.14.2/0005-Fix-missing-gobject-introspection-checks.patch new file mode 100644 index 0000000000..8701f58547 --- /dev/null +++ b/meta-oe/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 | ||