summaryrefslogtreecommitdiffstats
path: root/meta/recipes-core/glib-2.0/glib-2.0/nodbus.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-core/glib-2.0/glib-2.0/nodbus.patch')
-rw-r--r--meta/recipes-core/glib-2.0/glib-2.0/nodbus.patch23
1 files changed, 23 insertions, 0 deletions
diff --git a/meta/recipes-core/glib-2.0/glib-2.0/nodbus.patch b/meta/recipes-core/glib-2.0/glib-2.0/nodbus.patch
new file mode 100644
index 0000000000..1486203cf5
--- /dev/null
+++ b/meta/recipes-core/glib-2.0/glib-2.0/nodbus.patch
@@ -0,0 +1,23 @@
1Disable dbus dependency. Autodetecting isn't deterministic, we don't have the DEPENDS
2and we don't want to built this piece so hardcode it off.
3
4RP 2012/2/25
5
6Index: glib-2.30.2/configure.ac
7===================================================================
8--- glib-2.30.2.orig/configure.ac 2012-02-25 14:50:07.444242397 +0000
9+++ glib-2.30.2/configure.ac 2012-02-25 14:51:28.096240485 +0000
10@@ -3769,10 +3769,9 @@
11 # Check for libdbus1 - Optional - is only used in the GDBus test cases
12 #
13 # 1.2.14 required for dbus_message_set_serial
14-PKG_CHECK_MODULES(DBUS1,
15- dbus-1 >= 1.2.14,
16- [AC_DEFINE(HAVE_DBUS1, 1, [Define if dbus-1 is available]) have_dbus1=yes],
17- have_dbus1=no)
18+DBUS1_CFLAGS=
19+DBUS1_LIBS=
20+$have_dbus1=no
21 AC_SUBST(DBUS1_CFLAGS)
22 AC_SUBST(DBUS1_LIBS)
23 AM_CONDITIONAL(HAVE_DBUS1, [test "x$have_dbus1" = "xyes"])