Merge lp:~mterry/gnome-applets/dbus-glib-ftbfs into lp:~ubuntu-desktop/gnome-applets/ubuntu
Proposed by
Michael Terry
on 2010-09-28
| Status: | Merged | ||||
|---|---|---|---|---|---|
| Merged at revision: | 52 | ||||
| Proposed branch: | lp:~mterry/gnome-applets/dbus-glib-ftbfs | ||||
| Merge into: | lp:~ubuntu-desktop/gnome-applets/ubuntu | ||||
| Diff against target: |
97 lines (+76/-0) 3 files modified
debian/changelog (+7/-0) debian/patches/89_fix_dbus_glib_ftbfs.patch (+68/-0) debian/patches/series (+1/-0) |
||||
| To merge this branch: | bzr merge lp:~mterry/gnome-applets/dbus-glib-ftbfs | ||||
| Related bugs: |
|
| Reviewer | Review Type | Date Requested | Status |
|---|---|---|---|
| Ubuntu Desktop | 2010-09-28 | Pending | |
|
Review via email:
|
|||
Description of the Change
This fixes an FTBFS due to dbus-glib headers not being included.
To post a comment you must log in.
| John S. Gruber (jsjgruber) wrote : | # |
| Sebastien Bacher (seb128) wrote : | # |
> but isn't the Makefile.in file created from the Makefile.am, making that part of the patch unnecessary?
it is in this case because autoreconf is ran at build time but doesn't hurt either

I'm certainly far from being an expert, but isn't the Makefile.in file created from the Makefile.am, making that part of the patch unnecessary?
I believe a change to gconf2's package-config file early this month may have triggered this problem.
As support, a similar upstream patch is at git://git. gnome.org/ gnome-applets commit eb187f06
From eb187f06a2ad466 0e9e6d7f08a4332 707eb4de75 Mon Sep 17 00:00:00 2001
From: Kjartan Maraas <email address hidden>
Date: Mon, 23 Aug 2010 23:57:29 +0200
Subject: [PATCH] Add dbus-glib to CFLAGS and LDADD to make this compile
--- src/Makefile. am | 6 ++++--
cpufreq/
1 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/cpufreq/ src/Makefile. am b/cpufreq/ src/Makefile. am src/Makefile. am src/Makefile. am MENU_UI_ DIR=\"" $(datadir) /gnome- 2.0/ui" \" \ APPLETS3_ CFLAGS) \
index 2f94de7..0fb2983 100644
--- a/cpufreq/
+++ b/cpufreq/
@@ -7,7 +7,8 @@ SUBDIRS = $(selector_SUBDIR)
INCLUDES = \
-DCPUFREQ_
$(GNOME_
- $(LIBGLADE_CFLAGS)
+ $(LIBGLADE_CFLAGS) \
+ $(DBUS_CFLAGS)
libexec_PROGRAMS = cpufreq-applet
@@ -31,7 +32,8 @@ cpufreq_ applet_ SOURCES = \ applet_ LDADD = \ APPLETS3_ LIBS) \
cpufreq_
$(GNOME_
$(LIBGLADE_LIBS) \
- $(LIBCPUFREQ_LIBS)
+ $(LIBCPUFREQ_LIBS) \
+ $(DBUS_LIBS)
--
1.7.1