~ubuntu-branches/ubuntu/vivid/indicator-appmenu/vivid-proposed

« back to all changes in this revision

Viewing changes to src/Makefile.am

  • Committer: Package Import Robot
  • Author(s): Ubuntu daily release, Charles Kerr, Sebastien Bacher, Lars Uebernickel, Ubuntu daily release
  • Date: 2013-11-25 03:55:37 UTC
  • mfrom: (1.1.47)
  • Revision ID: package-import@ubuntu.com-20131125035537-rm8pa89m9ii3zs49
Tags: 13.01.0+14.04.20131125-0ubuntu1
[ Charles Kerr ]
* If we can't get the bus, exit instead of stacking g_bus_own_name()
  calls on top of each other, leaking GSources. (LP: #1244250)

[ Sebastien Bacher ]
* Build with -Wno-error=deprecated-declarations.

[ Lars Uebernickel ]
* Call gtk_widget_destroy() to break potential ref cycles Calling
  g_object_unref() is not enough for many of gtk's widgets.
* window-menu-model: disconnect entry signal handlers by func instead
  of id entry_object_free disconnected signal handlers by id. This
  throws warnings when entry_object_free is called when disposing an
  object, because signals are already disconnected at that point. This
  patch uses g_signal_handlers_disconnect_by_func(), which works both
  when the entry is alive and being disposed.
* WindowMenuModel: insert action groups on the toplevel menus
  Inserting them on the menu items was a workaround for the long-fixed
  cloaking-bug in libindicator. It's not supported in gtk 3.10
  anymore, because the menu tracker in gtk doesn't allow action groups
  on menu items. That's for good reasons: it's more efficient and
  consumers of that api should not modify the created menu hierarchy.

[ Ubuntu daily release ]
* Automatic snapshot from revision 251

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
libappmenu_la_CFLAGS = \
32
32
        $(INDICATOR_CFLAGS) \
33
33
        $(COVERAGE_CFLAGS) \
34
 
        -Wall -Wl,-Bsymbolic-functions -Wl,-z,defs -Wl,--as-needed -Werror -DG_LOG_DOMAIN=\"Indicator-Appmenu\"
 
34
        -Wall -Wl,-Bsymbolic-functions -Wl,-z,defs -Wl,--as-needed -Werror -Wno-error=deprecated-declarations -DG_LOG_DOMAIN=\"Indicator-Appmenu\"
35
35
libappmenu_la_LIBADD = $(INDICATOR_LIBS) -lX11
36
36
libappmenu_la_LDFLAGS = \
37
37
        $(COVERAGE_LDFLAGS) \