Merge lp:~dbusmenu-team/ubuntu/precise/libdbusmenu/upstream into lp:~ubuntu-desktop/libdbusmenu/ubuntu

Proposed by Ted Gould
Status: Merged
Merged at revision: 173
Proposed branch: lp:~dbusmenu-team/ubuntu/precise/libdbusmenu/upstream
Merge into: lp:~ubuntu-desktop/libdbusmenu/ubuntu
Diff against target: 4071 lines (+1084/-683)
37 files modified
AUTHORS (+2/-0)
ChangeLog (+162/-0)
Makefile.in (+58/-35)
aclocal.m4 (+86/-36)
configure (+54/-22)
configure.ac (+3/-3)
debian/changelog (+23/-0)
docs/Makefile.in (+16/-11)
docs/libdbusmenu-glib/Makefile.in (+16/-11)
docs/libdbusmenu-glib/reference/Makefile.in (+24/-17)
docs/libdbusmenu-glib/reference/html/libdbusmenu-glib-DbusmenuClient.html (+2/-2)
docs/libdbusmenu-glib/reference/tmpl/client.sgml (+0/-2)
docs/libdbusmenu-glib/reference/tmpl/menuitem-proxy.sgml (+0/-2)
docs/libdbusmenu-glib/reference/tmpl/menuitem.sgml (+0/-2)
docs/libdbusmenu-glib/reference/tmpl/server.sgml (+0/-2)
docs/libdbusmenu-glib/reference/tmpl/types.sgml (+0/-2)
docs/libdbusmenu-glib/reference/version.xml (+1/-1)
docs/libdbusmenu-glib/reference/xml/client.xml (+2/-2)
docs/libdbusmenu-gtk/Makefile.in (+16/-11)
docs/libdbusmenu-gtk/reference/Makefile.in (+24/-17)
docs/libdbusmenu-gtk/reference/version.xml (+1/-1)
libdbusmenu-glib/Makefile.in (+63/-75)
libdbusmenu-glib/client.c (+3/-3)
libdbusmenu-glib/client.h (+1/-1)
libdbusmenu-glib/menuitem.c (+1/-1)
libdbusmenu-glib/server.c (+21/-8)
libdbusmenu-glib/server.h (+1/-1)
libdbusmenu-gtk/Makefile.am (+3/-2)
libdbusmenu-gtk/Makefile.in (+75/-86)
libdbusmenu-gtk/client.c (+27/-8)
libdbusmenu-gtk/genericmenuitem.c (+13/-19)
libdbusmenu-gtk/parser.c (+66/-3)
tests/Makefile.am (+36/-1)
tests/Makefile.in (+209/-224)
tests/test-gtk-submenu-server.c (+1/-0)
tools/Makefile.in (+41/-39)
tools/testapp/Makefile.in (+33/-33)
To merge this branch: bzr merge lp:~dbusmenu-team/ubuntu/precise/libdbusmenu/upstream
Reviewer Review Type Date Requested Status
Sebastien Bacher Pending
Review via email: mp+93262@code.launchpad.net

Description of the change

0.5.91

To post a comment you must log in.
391. By Ted Gould

* New upstream release.
  * Fix label leak and make it not have disposition (LP: #937829)

392. By Ted Gould

releasing version 0.5.92-0ubuntu1~ppa1

Revision history for this message
Ted Gould (ted) wrote :

Okay, this has 0.5.92 in it as well now.

Revision history for this message
Sebastien Bacher (seb128) wrote :

sorry ted, I had merge 0.5.91 but bzr push did push to lp:~dbusmenu-team/dbusmenu/ubuntu rather than ~ubuntu-desktop for some reason so that didn't get closed

doing the 0.5.92 update as well now ;-)

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'AUTHORS'
2--- AUTHORS 2012-01-31 05:20:48 +0000
3+++ AUTHORS 2012-02-23 06:13:18 +0000
4@@ -1,5 +1,6 @@
5 # Generated by Makefile. Do not edit.
6
7+ Alberto Mardegan
8 Alex Launi
9 Ara Pulido
10 Aurelien Gateau
11@@ -17,6 +18,7 @@
12 Martin Pitt
13 Mathieu Trudel-Lapierre
14 Michael Terry
15+ Michal Hruby
16 Mikkel Kamstrup Erlandsen
17 Oleg Shparber
18 Robert Collins
19
20=== modified file 'ChangeLog'
21--- ChangeLog 2012-01-31 05:20:48 +0000
22+++ ChangeLog 2012-02-23 06:13:18 +0000
23@@ -1,5 +1,167 @@
24 # Generated by Makefile. Do not edit.
25
26+2012-02-22 Ted Gould <ted@gould.cx>
27+
28+ 0.5.92
29+
30+2012-02-22 Ted Gould <ted@gould.cx>
31+
32+ Removing this test as it doesn't work properly with GTK currently
33+
34+2012-02-22 Ted Gould <ted@gould.cx>
35+
36+ Ensure labels don't leak and don't contain disposition markup
37+
38+2012-02-22 Alberto Mardegan <alberto.mardegan@canonical.com>
39+
40+ Do not leak the label text
41+
42+ Also, fix the indentation from the previous commit.
43+
44+2012-02-22 Alberto Mardegan <alberto.mardegan@canonical.com>
45+
46+ Do not read the label text from the label widget
47+
48+ The label text stored in the widget might have been modified with markup.
49+ Instead of reading it back from the widget, return the text as set by the
50+ client, unmodified.
51+
52+ Alter the test-gtk-submenu so that the correct behaviour is checked for.
53+
54+2012-02-15 Ted Gould <ted@gould.cx>
55+
56+ 0.5.91
57+
58+2012-02-15 Ted Gould <ted@gould.cx>
59+
60+ Use defines instead of strings
61+
62+2012-02-12 Ted Gould <ted@gould.cx>
63+
64+ Making sure our strings come from defines to avoid typos
65+
66+2012-02-15 Ted Gould <ted@gould.cx>
67+
68+ Remove unused const on GStrv's
69+
70+2012-02-10 Ted Gould <ted@gould.cx>
71+
72+ Removing useless const on dbusmenu_client_get_icon_paths()
73+
74+2012-02-10 Ted Gould <ted@gould.cx>
75+
76+ Removing useless const on dbusmenu_server_get_icon_paths()
77+
78+2012-02-15 Ted Gould <ted@gould.cx>
79+
80+ Only free when there is data to free
81+
82+2012-02-10 Ted Gould <ted@gould.cx>
83+
84+ Actually checking the NULL case properly
85+
86+2012-02-15 Ted Gould <ted@gould.cx>
87+
88+ Ensure that we only return once even with error
89+
90+2012-02-09 Ted Gould <ted@gould.cx>
91+
92+ Ensure that we only return the invocation one way
93+
94+2012-02-15 Ted Gould <ted@gould.cx>
95+
96+ Fix an error on a failure to send properties
97+
98+2012-02-09 Ted Gould <ted@gould.cx>
99+
100+ Making it so that we ref_sink() the variants so that when we unref them later we're not in a race condition with the gdbus thread
101+
102+2012-02-15 Ted Gould <ted@gould.cx>
103+
104+ Ensure the hash variant isn't NULL in the comparison
105+
106+2012-02-09 Ted Gould <ted@gould.cx>
107+
108+ Because of the change of inhash above we could have hash_variant be NULL here
109+
110+2012-02-15 Ted Gould <ted@gould.cx>
111+
112+ Fix some of the issues with throwing criticals
113+
114+2012-02-07 Ted Gould <ted@gould.cx>
115+
116+ Making sure there is no menu proxy in our tests
117+
118+2012-02-07 Ted Gould <ted@gould.cx>
119+
120+ Don't get the string to check if something is being cleared, use whether the variant is NULL or not
121+
122+2012-02-07 Ted Gould <ted@gould.cx>
123+
124+ Ensuring that we don't just unparent a menu item, we remove it from the list of children that it has
125+
126+2012-02-07 Ted Gould <ted@gould.cx>
127+
128+ Removing criticals for submenu test
129+
130+2012-02-15 Ted Gould <ted@gould.cx>
131+
132+ Ensure our tests fail if they throw criticals
133+
134+2012-02-03 Ted Gould <ted@gould.cx>
135+
136+ Make it so that critical messages cause the test suite to fail
137+
138+2012-02-10 Ted Gould <ted@gould.cx>
139+
140+ Parse and handle a11y descriptions
141+
142+2012-02-10 Ted Gould <ted@gould.cx>
143+
144+ Heh, wrote the code but forgot to handle the error
145+
146+2012-02-10 Ted Gould <ted@gould.cx>
147+
148+ Refactor setting the ATK Object name into a function that can do all the error handling needed.
149+
150+2012-02-10 Ted Gould <ted@gould.cx>
151+
152+ Don't pass a NULL name to set_name
153+
154+2012-02-10 Ted Gould <ted@gould.cx>
155+
156+ Use the #define property name instead of a string
157+
158+2012-02-10 Ted Gould <ted@gould.cx>
159+
160+ Adding a detail hint on the notify signal
161+
162+2012-02-01 Luke Yelavich <luke.yelavich@canonical.com>
163+
164+ Fix up monitoring of the atk object, didn't understand that notification was the same as the GTK widgets as well.
165+
166+2012-01-31 Luke Yelavich <luke.yelavich@canonical.com>
167+
168+ When parsing an existing GTK menu hierarchy, we should also set the
169+ DBUSMENU_MENU_ITEM_ACCESSIBLE_DESC property, if the accessible name for the menu
170+ differs from the text of the menu item label.
171+
172+2012-02-10 Ted Gould <ted@gould.cx>
173+
174+ Don't pass NULL to ATK
175+
176+2012-02-01 Luke Yelavich <luke.yelavich@canonical.com>
177+
178+ If the ACCESSIBLE_DESC property is set to NULL, set an empty string as the atk object's accessible name, as per atk docs.
179+
180+2012-02-10 Ted Gould <ted@gould.cx>
181+
182+ Non-srcdir build fixes
183+
184+2012-01-27 Michal Hruby <michal.mhr@gmail.com>
185+
186+ Fix non-srcdir build issues
187+
188 2012-01-30 Ted Gould <ted@gould.cx>
189
190 0.5.90
191
192=== modified file 'Makefile.in'
193--- Makefile.in 2011-09-20 05:03:25 +0000
194+++ Makefile.in 2012-02-23 06:13:18 +0000
195@@ -1,9 +1,9 @@
196-# Makefile.in generated by automake 1.11.1 from Makefile.am.
197+# Makefile.in generated by automake 1.11.3 from Makefile.am.
198 # @configure_input@
199
200 # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
201-# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation,
202-# Inc.
203+# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software
204+# Foundation, Inc.
205 # This Makefile.in is free software; the Free Software Foundation
206 # gives unlimited permission to copy and/or distribute it,
207 # with or without modifications, as long as this notice is preserved.
208@@ -54,11 +54,11 @@
209 CONFIG_HEADER = config.h
210 CONFIG_CLEAN_FILES =
211 CONFIG_CLEAN_VPATH_FILES =
212-AM_V_GEN = $(am__v_GEN_$(V))
213-am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY))
214+AM_V_GEN = $(am__v_GEN_@AM_V@)
215+am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
216 am__v_GEN_0 = @echo " GEN " $@;
217-AM_V_at = $(am__v_at_$(V))
218-am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))
219+AM_V_at = $(am__v_at_@AM_V@)
220+am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
221 am__v_at_0 = @
222 SOURCES =
223 DIST_SOURCES =
224@@ -81,9 +81,11 @@
225 distdir = $(PACKAGE)-$(VERSION)
226 top_distdir = $(distdir)
227 am__remove_distdir = \
228- { test ! -d "$(distdir)" \
229- || { find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \
230- && rm -fr "$(distdir)"; }; }
231+ if test -d "$(distdir)"; then \
232+ find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \
233+ && rm -rf "$(distdir)" \
234+ || { sleep 5 && rm -rf "$(distdir)"; }; \
235+ else :; fi
236 am__relativize = \
237 dir0=`pwd`; \
238 sed_first='s,^\([^/]*\)/.*$$,\1,'; \
239@@ -112,6 +114,8 @@
240 DIST_ARCHIVES = $(distdir).tar.gz
241 GZIP_ENV = --best
242 distuninstallcheck_listfiles = find . -type f -print
243+am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \
244+ | sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$'
245 distcleancheck_listfiles = find . -type f -print
246 ACLOCAL = @ACLOCAL@
247 ALL_LINGUAS = @ALL_LINGUAS@
248@@ -306,7 +310,7 @@
249 $(MAKE) $(AM_MAKEFLAGS) all-recursive
250
251 .SUFFIXES:
252-am--refresh:
253+am--refresh: Makefile
254 @:
255 $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps)
256 @for dep in $?; do \
257@@ -342,10 +346,8 @@
258 $(am__aclocal_m4_deps):
259
260 config.h: stamp-h1
261- @if test ! -f $@; then \
262- rm -f stamp-h1; \
263- $(MAKE) $(AM_MAKEFLAGS) stamp-h1; \
264- else :; fi
265+ @if test ! -f $@; then rm -f stamp-h1; else :; fi
266+ @if test ! -f $@; then $(MAKE) $(AM_MAKEFLAGS) stamp-h1; else :; fi
267
268 stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status
269 @rm -f stamp-h1
270@@ -577,7 +579,11 @@
271 $(am__remove_distdir)
272
273 dist-bzip2: distdir
274- tardir=$(distdir) && $(am__tar) | bzip2 -9 -c >$(distdir).tar.bz2
275+ tardir=$(distdir) && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2
276+ $(am__remove_distdir)
277+
278+dist-lzip: distdir
279+ tardir=$(distdir) && $(am__tar) | lzip -c $${LZIP_OPT--9} >$(distdir).tar.lz
280 $(am__remove_distdir)
281
282 dist-lzma: distdir
283@@ -585,7 +591,7 @@
284 $(am__remove_distdir)
285
286 dist-xz: distdir
287- tardir=$(distdir) && $(am__tar) | xz -c >$(distdir).tar.xz
288+ tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz
289 $(am__remove_distdir)
290
291 dist-tarZ: distdir
292@@ -616,6 +622,8 @@
293 bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\
294 *.tar.lzma*) \
295 lzma -dc $(distdir).tar.lzma | $(am__untar) ;;\
296+ *.tar.lz*) \
297+ lzip -dc $(distdir).tar.lz | $(am__untar) ;;\
298 *.tar.xz*) \
299 xz -dc $(distdir).tar.xz | $(am__untar) ;;\
300 *.tar.Z*) \
301@@ -635,6 +643,7 @@
302 && am__cwd=`pwd` \
303 && $(am__cd) $(distdir)/_build \
304 && ../configure --srcdir=.. --prefix="$$dc_install_base" \
305+ $(AM_DISTCHECK_CONFIGURE_FLAGS) \
306 $(DISTCHECK_CONFIGURE_FLAGS) \
307 && $(MAKE) $(AM_MAKEFLAGS) \
308 && $(MAKE) $(AM_MAKEFLAGS) dvi \
309@@ -663,8 +672,16 @@
310 list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \
311 sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x'
312 distuninstallcheck:
313- @$(am__cd) '$(distuninstallcheck_dir)' \
314- && test `$(distuninstallcheck_listfiles) | wc -l` -le 1 \
315+ @test -n '$(distuninstallcheck_dir)' || { \
316+ echo 'ERROR: trying to run $@ with an empty' \
317+ '$$(distuninstallcheck_dir)' >&2; \
318+ exit 1; \
319+ }; \
320+ $(am__cd) '$(distuninstallcheck_dir)' || { \
321+ echo 'ERROR: cannot chdir into $(distuninstallcheck_dir)' >&2; \
322+ exit 1; \
323+ }; \
324+ test `$(am__distuninstallcheck_listfiles) | wc -l` -eq 0 \
325 || { echo "ERROR: files left after uninstall:" ; \
326 if test -n "$(DESTDIR)"; then \
327 echo " (check DESTDIR support)"; \
328@@ -695,10 +712,15 @@
329
330 installcheck: installcheck-recursive
331 install-strip:
332- $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
333- install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
334- `test -z '$(STRIP)' || \
335- echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
336+ if test -z '$(STRIP)'; then \
337+ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
338+ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
339+ install; \
340+ else \
341+ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
342+ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
343+ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
344+ fi
345 mostlyclean-generic:
346
347 clean-generic:
348@@ -786,18 +808,19 @@
349 .PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \
350 all all-am am--refresh check check-am clean clean-generic \
351 clean-libtool ctags ctags-recursive dist dist-all dist-bzip2 \
352- dist-gzip dist-hook dist-lzma dist-shar dist-tarZ dist-xz \
353- dist-zip distcheck distclean distclean-generic distclean-hdr \
354- distclean-libtool distclean-tags distcleancheck distdir \
355- distuninstallcheck dvi dvi-am html html-am info info-am \
356- install install-am install-data install-data-am install-dvi \
357- install-dvi-am install-exec install-exec-am install-html \
358- install-html-am install-info install-info-am install-man \
359- install-pdf install-pdf-am install-ps install-ps-am \
360- install-strip installcheck installcheck-am installdirs \
361- installdirs-am maintainer-clean maintainer-clean-generic \
362- mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \
363- ps ps-am tags tags-recursive uninstall uninstall-am
364+ dist-gzip dist-hook dist-lzip dist-lzma dist-shar dist-tarZ \
365+ dist-xz dist-zip distcheck distclean distclean-generic \
366+ distclean-hdr distclean-libtool distclean-tags distcleancheck \
367+ distdir distuninstallcheck dvi dvi-am html html-am info \
368+ info-am install install-am install-data install-data-am \
369+ install-dvi install-dvi-am install-exec install-exec-am \
370+ install-html install-html-am install-info install-info-am \
371+ install-man install-pdf install-pdf-am install-ps \
372+ install-ps-am install-strip installcheck installcheck-am \
373+ installdirs installdirs-am maintainer-clean \
374+ maintainer-clean-generic mostlyclean mostlyclean-generic \
375+ mostlyclean-libtool pdf pdf-am ps ps-am tags tags-recursive \
376+ uninstall uninstall-am
377
378
379 #
380
381=== modified file 'aclocal.m4'
382--- aclocal.m4 2012-01-31 05:25:37 +0000
383+++ aclocal.m4 2012-02-23 06:13:18 +0000
384@@ -1,7 +1,8 @@
385-# generated automatically by aclocal 1.11.1 -*- Autoconf -*-
386+# generated automatically by aclocal 1.11.3 -*- Autoconf -*-
387
388 # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
389-# 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
390+# 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation,
391+# Inc.
392 # This file is free software; the Free Software Foundation
393 # gives unlimited permission to copy and/or distribute it,
394 # with or without modifications, as long as this notice is preserved.
395@@ -649,12 +650,15 @@
396 fi[]dnl
397 ])# PKG_CHECK_MODULES
398
399-# Copyright (C) 2002, 2003, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
400+# Copyright (C) 2002, 2003, 2005, 2006, 2007, 2008, 2011 Free Software
401+# Foundation, Inc.
402 #
403 # This file is free software; the Free Software Foundation
404 # gives unlimited permission to copy and/or distribute it,
405 # with or without modifications, as long as this notice is preserved.
406
407+# serial 1
408+
409 # AM_AUTOMAKE_VERSION(VERSION)
410 # ----------------------------
411 # Automake X.Y traces this macro to ensure aclocal.m4 has been
412@@ -664,7 +668,7 @@
413 [am__api_version='1.11'
414 dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to
415 dnl require some minimum version. Point them to the right macro.
416-m4_if([$1], [1.11.1], [],
417+m4_if([$1], [1.11.3], [],
418 [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl
419 ])
420
421@@ -680,19 +684,21 @@
422 # Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced.
423 # This function is AC_REQUIREd by AM_INIT_AUTOMAKE.
424 AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION],
425-[AM_AUTOMAKE_VERSION([1.11.1])dnl
426+[AM_AUTOMAKE_VERSION([1.11.3])dnl
427 m4_ifndef([AC_AUTOCONF_VERSION],
428 [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
429 _AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))])
430
431 # AM_AUX_DIR_EXPAND -*- Autoconf -*-
432
433-# Copyright (C) 2001, 2003, 2005 Free Software Foundation, Inc.
434+# Copyright (C) 2001, 2003, 2005, 2011 Free Software Foundation, Inc.
435 #
436 # This file is free software; the Free Software Foundation
437 # gives unlimited permission to copy and/or distribute it,
438 # with or without modifications, as long as this notice is preserved.
439
440+# serial 1
441+
442 # For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets
443 # $ac_aux_dir to `$srcdir/foo'. In other projects, it is set to
444 # `$srcdir', `$srcdir/..', or `$srcdir/../..'.
445@@ -740,13 +746,13 @@
446
447 # AM_COND_IF -*- Autoconf -*-
448
449-# Copyright (C) 2008 Free Software Foundation, Inc.
450+# Copyright (C) 2008, 2010 Free Software Foundation, Inc.
451 #
452 # This file is free software; the Free Software Foundation
453 # gives unlimited permission to copy and/or distribute it,
454 # with or without modifications, as long as this notice is preserved.
455
456-# serial 1
457+# serial 3
458
459 # _AM_COND_IF
460 # _AM_COND_ELSE
461@@ -760,15 +766,15 @@
462
463 # AM_COND_IF(COND, [IF-TRUE], [IF-FALSE])
464 # ---------------------------------------
465-# If the shell condition matching COND is true, execute IF-TRUE,
466-# otherwise execute IF-FALSE. Allow automake to learn about conditional
467-# instantiating macros (the AC_CONFIG_FOOS).
468+# If the shell condition COND is true, execute IF-TRUE, otherwise execute
469+# IF-FALSE. Allow automake to learn about conditional instantiating macros
470+# (the AC_CONFIG_FOOS).
471 AC_DEFUN([AM_COND_IF],
472 [m4_ifndef([_AM_COND_VALUE_$1],
473 [m4_fatal([$0: no such condition "$1"])])dnl
474 _AM_COND_IF([$1])dnl
475-if _AM_COND_VALUE_$1; then
476- m4_default([$2], [:])
477+if test -z "$$1_TRUE"; then :
478+ m4_n([$2])[]dnl
479 m4_ifval([$3],
480 [_AM_COND_ELSE([$1])dnl
481 else
482@@ -814,14 +820,14 @@
483 Usually this means the macro was only invoked conditionally.]])
484 fi])])
485
486-# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2009
487-# Free Software Foundation, Inc.
488+# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2009,
489+# 2010, 2011 Free Software Foundation, Inc.
490 #
491 # This file is free software; the Free Software Foundation
492 # gives unlimited permission to copy and/or distribute it,
493 # with or without modifications, as long as this notice is preserved.
494
495-# serial 10
496+# serial 12
497
498 # There are a few dirty hacks below to avoid letting `AC_PROG_CC' be
499 # written in clear, in which case automake, when reading aclocal.m4,
500@@ -861,6 +867,7 @@
501 # instance it was reported that on HP-UX the gcc test will end up
502 # making a dummy file named `D' -- because `-MD' means `put the output
503 # in D'.
504+ rm -rf conftest.dir
505 mkdir conftest.dir
506 # Copy depcomp to subdir because otherwise we won't find it if we're
507 # using a relative directory.
508@@ -925,7 +932,7 @@
509 break
510 fi
511 ;;
512- msvisualcpp | msvcmsys)
513+ msvc7 | msvc7msys | msvisualcpp | msvcmsys)
514 # This compiler won't grok `-c -o', but also, the minuso test has
515 # not run yet. These depmodes are late enough in the game, and
516 # so weak that their functioning should not be impacted.
517@@ -990,10 +997,13 @@
518 if test "x$enable_dependency_tracking" != xno; then
519 am_depcomp="$ac_aux_dir/depcomp"
520 AMDEPBACKSLASH='\'
521+ am__nodep='_no'
522 fi
523 AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno])
524 AC_SUBST([AMDEPBACKSLASH])dnl
525 _AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl
526+AC_SUBST([am__nodep])dnl
527+_AM_SUBST_NOTMAKE([am__nodep])dnl
528 ])
529
530 # Generate code to set up dependency tracking. -*- Autoconf -*-
531@@ -1227,12 +1237,15 @@
532 done
533 echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count])
534
535-# Copyright (C) 2001, 2003, 2005, 2008 Free Software Foundation, Inc.
536+# Copyright (C) 2001, 2003, 2005, 2008, 2011 Free Software Foundation,
537+# Inc.
538 #
539 # This file is free software; the Free Software Foundation
540 # gives unlimited permission to copy and/or distribute it,
541 # with or without modifications, as long as this notice is preserved.
542
543+# serial 1
544+
545 # AM_PROG_INSTALL_SH
546 # ------------------
547 # Define $install_sh.
548@@ -1272,8 +1285,8 @@
549 # Add --enable-maintainer-mode option to configure. -*- Autoconf -*-
550 # From Jim Meyering
551
552-# Copyright (C) 1996, 1998, 2000, 2001, 2002, 2003, 2004, 2005, 2008
553-# Free Software Foundation, Inc.
554+# Copyright (C) 1996, 1998, 2000, 2001, 2002, 2003, 2004, 2005, 2008,
555+# 2011 Free Software Foundation, Inc.
556 #
557 # This file is free software; the Free Software Foundation
558 # gives unlimited permission to copy and/or distribute it,
559@@ -1293,7 +1306,7 @@
560 [disable], [m4_define([am_maintainer_other], [enable])],
561 [m4_define([am_maintainer_other], [enable])
562 m4_warn([syntax], [unexpected argument to AM@&t@_MAINTAINER_MODE: $1])])
563-AC_MSG_CHECKING([whether to am_maintainer_other maintainer-specific portions of Makefiles])
564+AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles])
565 dnl maintainer-mode's default is 'disable' unless 'enable' is passed
566 AC_ARG_ENABLE([maintainer-mode],
567 [ --][am_maintainer_other][-maintainer-mode am_maintainer_other make rules and dependencies not useful
568@@ -1439,12 +1452,15 @@
569 fi
570 ])
571
572-# Copyright (C) 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
573+# Copyright (C) 2003, 2004, 2005, 2006, 2011 Free Software Foundation,
574+# Inc.
575 #
576 # This file is free software; the Free Software Foundation
577 # gives unlimited permission to copy and/or distribute it,
578 # with or without modifications, as long as this notice is preserved.
579
580+# serial 1
581+
582 # AM_PROG_MKDIR_P
583 # ---------------
584 # Check for `mkdir -p'.
585@@ -1467,13 +1483,14 @@
586
587 # Helper functions for option handling. -*- Autoconf -*-
588
589-# Copyright (C) 2001, 2002, 2003, 2005, 2008 Free Software Foundation, Inc.
590+# Copyright (C) 2001, 2002, 2003, 2005, 2008, 2010 Free Software
591+# Foundation, Inc.
592 #
593 # This file is free software; the Free Software Foundation
594 # gives unlimited permission to copy and/or distribute it,
595 # with or without modifications, as long as this notice is preserved.
596
597-# serial 4
598+# serial 5
599
600 # _AM_MANGLE_OPTION(NAME)
601 # -----------------------
602@@ -1481,13 +1498,13 @@
603 [[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])])
604
605 # _AM_SET_OPTION(NAME)
606-# ------------------------------
607+# --------------------
608 # Set option NAME. Presently that only means defining a flag for this option.
609 AC_DEFUN([_AM_SET_OPTION],
610 [m4_define(_AM_MANGLE_OPTION([$1]), 1)])
611
612 # _AM_SET_OPTIONS(OPTIONS)
613-# ----------------------------------
614+# ------------------------
615 # OPTIONS is a space-separated list of Automake options.
616 AC_DEFUN([_AM_SET_OPTIONS],
617 [m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])])
618@@ -1563,13 +1580,13 @@
619 fi
620 AC_MSG_RESULT(yes)])
621
622-# Copyright (C) 2009 Free Software Foundation, Inc.
623+# Copyright (C) 2009, 2011 Free Software Foundation, Inc.
624 #
625 # This file is free software; the Free Software Foundation
626 # gives unlimited permission to copy and/or distribute it,
627 # with or without modifications, as long as this notice is preserved.
628
629-# serial 1
630+# serial 2
631
632 # AM_SILENT_RULES([DEFAULT])
633 # --------------------------
634@@ -1584,18 +1601,50 @@
635 no) AM_DEFAULT_VERBOSITY=1;;
636 *) AM_DEFAULT_VERBOSITY=m4_if([$1], [yes], [0], [1]);;
637 esac
638+dnl
639+dnl A few `make' implementations (e.g., NonStop OS and NextStep)
640+dnl do not support nested variable expansions.
641+dnl See automake bug#9928 and bug#10237.
642+am_make=${MAKE-make}
643+AC_CACHE_CHECK([whether $am_make supports nested variables],
644+ [am_cv_make_support_nested_variables],
645+ [if AS_ECHO([['TRUE=$(BAR$(V))
646+BAR0=false
647+BAR1=true
648+V=1
649+am__doit:
650+ @$(TRUE)
651+.PHONY: am__doit']]) | $am_make -f - >/dev/null 2>&1; then
652+ am_cv_make_support_nested_variables=yes
653+else
654+ am_cv_make_support_nested_variables=no
655+fi])
656+if test $am_cv_make_support_nested_variables = yes; then
657+ dnl Using `$V' instead of `$(V)' breaks IRIX make.
658+ AM_V='$(V)'
659+ AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)'
660+else
661+ AM_V=$AM_DEFAULT_VERBOSITY
662+ AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY
663+fi
664+AC_SUBST([AM_V])dnl
665+AM_SUBST_NOTMAKE([AM_V])dnl
666+AC_SUBST([AM_DEFAULT_V])dnl
667+AM_SUBST_NOTMAKE([AM_DEFAULT_V])dnl
668 AC_SUBST([AM_DEFAULT_VERBOSITY])dnl
669 AM_BACKSLASH='\'
670 AC_SUBST([AM_BACKSLASH])dnl
671 _AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl
672 ])
673
674-# Copyright (C) 2001, 2003, 2005 Free Software Foundation, Inc.
675+# Copyright (C) 2001, 2003, 2005, 2011 Free Software Foundation, Inc.
676 #
677 # This file is free software; the Free Software Foundation
678 # gives unlimited permission to copy and/or distribute it,
679 # with or without modifications, as long as this notice is preserved.
680
681+# serial 1
682+
683 # AM_PROG_INSTALL_STRIP
684 # ---------------------
685 # One issue with vendor `install' (even GNU) is that you can't
686@@ -1618,13 +1667,13 @@
687 INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"
688 AC_SUBST([INSTALL_STRIP_PROGRAM])])
689
690-# Copyright (C) 2006, 2008 Free Software Foundation, Inc.
691+# Copyright (C) 2006, 2008, 2010 Free Software Foundation, Inc.
692 #
693 # This file is free software; the Free Software Foundation
694 # gives unlimited permission to copy and/or distribute it,
695 # with or without modifications, as long as this notice is preserved.
696
697-# serial 2
698+# serial 3
699
700 # _AM_SUBST_NOTMAKE(VARIABLE)
701 # ---------------------------
702@@ -1633,13 +1682,13 @@
703 AC_DEFUN([_AM_SUBST_NOTMAKE])
704
705 # AM_SUBST_NOTMAKE(VARIABLE)
706-# ---------------------------
707+# --------------------------
708 # Public sister of _AM_SUBST_NOTMAKE.
709 AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)])
710
711 # Check how to create a tarball. -*- Autoconf -*-
712
713-# Copyright (C) 2004, 2005 Free Software Foundation, Inc.
714+# Copyright (C) 2004, 2005, 2012 Free Software Foundation, Inc.
715 #
716 # This file is free software; the Free Software Foundation
717 # gives unlimited permission to copy and/or distribute it,
718@@ -1661,10 +1710,11 @@
719 # a tarball read from stdin.
720 # $(am__untar) < result.tar
721 AC_DEFUN([_AM_PROG_TAR],
722-[# Always define AMTAR for backward compatibility.
723-AM_MISSING_PROG([AMTAR], [tar])
724+[# Always define AMTAR for backward compatibility. Yes, it's still used
725+# in the wild :-( We should find a proper way to deprecate it ...
726+AC_SUBST([AMTAR], ['$${TAR-tar}'])
727 m4_if([$1], [v7],
728- [am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -'],
729+ [am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -'],
730 [m4_case([$1], [ustar],, [pax],,
731 [m4_fatal([Unknown tar format])])
732 AC_MSG_CHECKING([how to create a $1 tar archive])
733
734=== modified file 'configure'
735--- configure 2012-01-31 05:25:37 +0000
736+++ configure 2012-02-23 06:13:18 +0000
737@@ -1,6 +1,6 @@
738 #! /bin/sh
739 # Guess values for system-dependent variables and create Makefiles.
740-# Generated by GNU Autoconf 2.68 for libdbusmenu 0.5.90.
741+# Generated by GNU Autoconf 2.68 for libdbusmenu 0.5.92.
742 #
743 # Report bugs to <ted@canonical.com>.
744 #
745@@ -572,8 +572,8 @@
746 # Identity of this package.
747 PACKAGE_NAME='libdbusmenu'
748 PACKAGE_TARNAME='libdbusmenu'
749-PACKAGE_VERSION='0.5.90'
750-PACKAGE_STRING='libdbusmenu 0.5.90'
751+PACKAGE_VERSION='0.5.92'
752+PACKAGE_STRING='libdbusmenu 0.5.92'
753 PACKAGE_BUGREPORT='ted@canonical.com'
754 PACKAGE_URL=''
755
756@@ -694,6 +694,8 @@
757 GLIB_MKENUMS
758 AM_BACKSLASH
759 AM_DEFAULT_VERBOSITY
760+AM_DEFAULT_V
761+AM_V
762 OTOOL64
763 OTOOL
764 LIPO
765@@ -728,6 +730,7 @@
766 am__fastdepCC_FALSE
767 am__fastdepCC_TRUE
768 CCDEPMODE
769+am__nodep
770 AMDEPBACKSLASH
771 AMDEP_FALSE
772 AMDEP_TRUE
773@@ -1428,7 +1431,7 @@
774 # Omit some internal or obsolete options to make the list less imposing.
775 # This message is too long to be a string in the A/UX 3.1 sh.
776 cat <<_ACEOF
777-\`configure' configures libdbusmenu 0.5.90 to adapt to many kinds of systems.
778+\`configure' configures libdbusmenu 0.5.92 to adapt to many kinds of systems.
779
780 Usage: $0 [OPTION]... [VAR=VALUE]...
781
782@@ -1498,7 +1501,7 @@
783
784 if test -n "$ac_init_help"; then
785 case $ac_init_help in
786- short | recursive ) echo "Configuration of libdbusmenu 0.5.90:";;
787+ short | recursive ) echo "Configuration of libdbusmenu 0.5.92:";;
788 esac
789 cat <<\_ACEOF
790
791@@ -1647,7 +1650,7 @@
792 test -n "$ac_init_help" && exit $ac_status
793 if $ac_init_version; then
794 cat <<\_ACEOF
795-libdbusmenu configure 0.5.90
796+libdbusmenu configure 0.5.92
797 generated by GNU Autoconf 2.68
798
799 Copyright (C) 2010 Free Software Foundation, Inc.
800@@ -2018,7 +2021,7 @@
801 This file contains any messages produced by compilers while
802 running configure, to aid debugging if configure makes a mistake.
803
804-It was created by libdbusmenu $as_me 0.5.90, which was
805+It was created by libdbusmenu $as_me 0.5.92, which was
806 generated by GNU Autoconf 2.68. Invocation command line was
807
808 $ $0 $@
809@@ -2839,7 +2842,7 @@
810
811 # Define the identity of the package.
812 PACKAGE=libdbusmenu
813- VERSION=0.5.90
814+ VERSION=0.5.92
815
816
817 # Some tools Automake needs.
818@@ -2860,11 +2863,11 @@
819
820 # We need awk for the "check" target. The system "awk" is bad on
821 # some platforms.
822-# Always define AMTAR for backward compatibility.
823-
824-AMTAR=${AMTAR-"${am_missing_run}tar"}
825-
826-am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -'
827+# Always define AMTAR for backward compatibility. Yes, it's still used
828+# in the wild :-( We should find a proper way to deprecate it ...
829+AMTAR='$${TAR-tar}'
830+
831+am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -'
832
833
834
835@@ -2961,6 +2964,7 @@
836 if test "x$enable_dependency_tracking" != xno; then
837 am_depcomp="$ac_aux_dir/depcomp"
838 AMDEPBACKSLASH='\'
839+ am__nodep='_no'
840 fi
841 if test "x$enable_dependency_tracking" != xno; then
842 AMDEP_TRUE=
843@@ -3774,6 +3778,7 @@
844 # instance it was reported that on HP-UX the gcc test will end up
845 # making a dummy file named `D' -- because `-MD' means `put the output
846 # in D'.
847+ rm -rf conftest.dir
848 mkdir conftest.dir
849 # Copy depcomp to subdir because otherwise we won't find it if we're
850 # using a relative directory.
851@@ -3833,7 +3838,7 @@
852 break
853 fi
854 ;;
855- msvisualcpp | msvcmsys)
856+ msvc7 | msvc7msys | msvisualcpp | msvcmsys)
857 # This compiler won't grok `-c -o', but also, the minuso test has
858 # not run yet. These depmodes are late enough in the game, and
859 # so weak that their functioning should not be impacted.
860@@ -5042,6 +5047,7 @@
861 # instance it was reported that on HP-UX the gcc test will end up
862 # making a dummy file named `D' -- because `-MD' means `put the output
863 # in D'.
864+ rm -rf conftest.dir
865 mkdir conftest.dir
866 # Copy depcomp to subdir because otherwise we won't find it if we're
867 # using a relative directory.
868@@ -5101,7 +5107,7 @@
869 break
870 fi
871 ;;
872- msvisualcpp | msvcmsys)
873+ msvc7 | msvc7msys | msvisualcpp | msvcmsys)
874 # This compiler won't grok `-c -o', but also, the minuso test has
875 # not run yet. These depmodes are late enough in the game, and
876 # so weak that their functioning should not be impacted.
877@@ -12893,6 +12899,33 @@
878 no) AM_DEFAULT_VERBOSITY=1;;
879 *) AM_DEFAULT_VERBOSITY=0;;
880 esac
881+am_make=${MAKE-make}
882+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $am_make supports nested variables" >&5
883+$as_echo_n "checking whether $am_make supports nested variables... " >&6; }
884+if ${am_cv_make_support_nested_variables+:} false; then :
885+ $as_echo_n "(cached) " >&6
886+else
887+ if $as_echo 'TRUE=$(BAR$(V))
888+BAR0=false
889+BAR1=true
890+V=1
891+am__doit:
892+ @$(TRUE)
893+.PHONY: am__doit' | $am_make -f - >/dev/null 2>&1; then
894+ am_cv_make_support_nested_variables=yes
895+else
896+ am_cv_make_support_nested_variables=no
897+fi
898+fi
899+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_make_support_nested_variables" >&5
900+$as_echo "$am_cv_make_support_nested_variables" >&6; }
901+if test $am_cv_make_support_nested_variables = yes; then
902+ AM_V='$(V)'
903+ AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)'
904+else
905+ AM_V=$AM_DEFAULT_VERBOSITY
906+ AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY
907+fi
908 AM_BACKSLASH='\'
909
910
911@@ -14258,9 +14291,8 @@
912
913 if test "x$enable_vala" != "xno"; then :
914
915- if test "x$found_introspection" = "xyes"; then
916- :
917-else
918+ if test -z "$HAVE_INTROSPECTION_TRUE"; then :
919+ else
920
921 as_fn_error $? "Vala bindings require introspection support, please --enable-introspection" "$LINENO" 5
922
923@@ -14366,7 +14398,7 @@
924 ###########################
925
926 LIBDBUSMENU_CURRENT=4
927-LIBDBUSMENU_REVISION=7
928+LIBDBUSMENU_REVISION=9
929 LIBDBUSMENU_AGE=0
930
931
932@@ -15720,7 +15752,7 @@
933 # report actual input values of CONFIG_FILES etc. instead of their
934 # values after options handling.
935 ac_log="
936-This file was extended by libdbusmenu $as_me 0.5.90, which was
937+This file was extended by libdbusmenu $as_me 0.5.92, which was
938 generated by GNU Autoconf 2.68. Invocation command line was
939
940 CONFIG_FILES = $CONFIG_FILES
941@@ -15786,7 +15818,7 @@
942 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
943 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
944 ac_cs_version="\\
945-libdbusmenu config.status 0.5.90
946+libdbusmenu config.status 0.5.92
947 configured by $0, generated by GNU Autoconf 2.68,
948 with options \\"\$ac_cs_config\\"
949
950@@ -17637,7 +17669,7 @@
951
952 fi
953
954-if test -n "$VALA_API_GEN"; then
955+if test -z "$HAVE_VALA_TRUE"; then :
956 { $as_echo "$as_me:${as_lineno-$LINENO}: Vala bindings: yes" >&5
957 $as_echo "$as_me: Vala bindings: yes" >&6;}
958 else
959
960=== modified file 'configure.ac'
961--- configure.ac 2012-01-31 05:25:37 +0000
962+++ configure.ac 2012-02-23 06:13:18 +0000
963@@ -1,11 +1,11 @@
964
965-AC_INIT(libdbusmenu, 0.5.90, ted@canonical.com)
966+AC_INIT(libdbusmenu, 0.5.92, ted@canonical.com)
967 AC_COPYRIGHT([Copyright 2009,2010 Canonical])
968
969 AC_PREREQ(2.62)
970
971 AM_CONFIG_HEADER(config.h)
972-AM_INIT_AUTOMAKE(libdbusmenu, 0.5.90, [-Wno-portability])
973+AM_INIT_AUTOMAKE(libdbusmenu, 0.5.92, [-Wno-portability])
974
975 AM_MAINTAINER_MODE
976
977@@ -165,7 +165,7 @@
978 ###########################
979
980 LIBDBUSMENU_CURRENT=4
981-LIBDBUSMENU_REVISION=7
982+LIBDBUSMENU_REVISION=9
983 LIBDBUSMENU_AGE=0
984
985 AC_SUBST(LIBDBUSMENU_CURRENT)
986
987=== modified file 'debian/changelog'
988--- debian/changelog 2012-02-02 19:10:02 +0000
989+++ debian/changelog 2012-02-23 06:13:18 +0000
990@@ -1,3 +1,26 @@
991+libdbusmenu (0.5.92-0ubuntu1~ppa1) precise; urgency=low
992+
993+ * New upstream release.
994+ * Fix label leak and make it not have disposition (LP: #937829)
995+
996+ -- Ted Gould <ted@ubuntu.com> Thu, 23 Feb 2012 00:10:04 -0600
997+
998+libdbusmenu (0.5.91-0ubuntu1~ppa1) precise; urgency=low
999+
1000+ * New upstream release.
1001+ * Remove unused const on GStrv's
1002+ * Only free when there is data to free
1003+ * Ensure that we only return once even with error (LP: #929856)
1004+ * Fix an error on a failure to send properties (LP: #929707)
1005+ * Ensure the hash variant isn't NULL in the comparison (LP: #929710)
1006+ * Fix some of the issues with throwing criticals
1007+ * Ensure our tests fail if they throw criticals
1008+ * Parse and handle a11y descriptions
1009+ * Don't pass NULL to ATK
1010+ * Non-srcdir build fixes
1011+
1012+ -- Ted Gould <ted@ubuntu.com> Wed, 15 Feb 2012 11:43:39 -0600
1013+
1014 libdbusmenu (0.5.90-0ubuntu1) precise; urgency=low
1015
1016 [ Ted Gould ]
1017
1018=== modified file 'docs/Makefile.in'
1019--- docs/Makefile.in 2011-09-20 05:03:25 +0000
1020+++ docs/Makefile.in 2012-02-23 06:13:18 +0000
1021@@ -1,9 +1,9 @@
1022-# Makefile.in generated by automake 1.11.1 from Makefile.am.
1023+# Makefile.in generated by automake 1.11.3 from Makefile.am.
1024 # @configure_input@
1025
1026 # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
1027-# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation,
1028-# Inc.
1029+# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software
1030+# Foundation, Inc.
1031 # This Makefile.in is free software; the Free Software Foundation
1032 # gives unlimited permission to copy and/or distribute it,
1033 # with or without modifications, as long as this notice is preserved.
1034@@ -48,11 +48,11 @@
1035 CONFIG_HEADER = $(top_builddir)/config.h
1036 CONFIG_CLEAN_FILES =
1037 CONFIG_CLEAN_VPATH_FILES =
1038-AM_V_GEN = $(am__v_GEN_$(V))
1039-am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY))
1040+AM_V_GEN = $(am__v_GEN_@AM_V@)
1041+am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
1042 am__v_GEN_0 = @echo " GEN " $@;
1043-AM_V_at = $(am__v_at_$(V))
1044-am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))
1045+AM_V_at = $(am__v_at_@AM_V@)
1046+am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
1047 am__v_at_0 = @
1048 SOURCES =
1049 DIST_SOURCES =
1050@@ -523,10 +523,15 @@
1051
1052 installcheck: installcheck-recursive
1053 install-strip:
1054- $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
1055- install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
1056- `test -z '$(STRIP)' || \
1057- echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
1058+ if test -z '$(STRIP)'; then \
1059+ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
1060+ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
1061+ install; \
1062+ else \
1063+ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
1064+ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
1065+ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
1066+ fi
1067 mostlyclean-generic:
1068
1069 clean-generic:
1070
1071=== modified file 'docs/libdbusmenu-glib/Makefile.in'
1072--- docs/libdbusmenu-glib/Makefile.in 2011-09-20 05:03:25 +0000
1073+++ docs/libdbusmenu-glib/Makefile.in 2012-02-23 06:13:18 +0000
1074@@ -1,9 +1,9 @@
1075-# Makefile.in generated by automake 1.11.1 from Makefile.am.
1076+# Makefile.in generated by automake 1.11.3 from Makefile.am.
1077 # @configure_input@
1078
1079 # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
1080-# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation,
1081-# Inc.
1082+# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software
1083+# Foundation, Inc.
1084 # This Makefile.in is free software; the Free Software Foundation
1085 # gives unlimited permission to copy and/or distribute it,
1086 # with or without modifications, as long as this notice is preserved.
1087@@ -48,11 +48,11 @@
1088 CONFIG_HEADER = $(top_builddir)/config.h
1089 CONFIG_CLEAN_FILES =
1090 CONFIG_CLEAN_VPATH_FILES =
1091-AM_V_GEN = $(am__v_GEN_$(V))
1092-am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY))
1093+AM_V_GEN = $(am__v_GEN_@AM_V@)
1094+am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
1095 am__v_GEN_0 = @echo " GEN " $@;
1096-AM_V_at = $(am__v_at_$(V))
1097-am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))
1098+AM_V_at = $(am__v_at_@AM_V@)
1099+am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
1100 am__v_at_0 = @
1101 SOURCES =
1102 DIST_SOURCES =
1103@@ -519,10 +519,15 @@
1104
1105 installcheck: installcheck-recursive
1106 install-strip:
1107- $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
1108- install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
1109- `test -z '$(STRIP)' || \
1110- echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
1111+ if test -z '$(STRIP)'; then \
1112+ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
1113+ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
1114+ install; \
1115+ else \
1116+ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
1117+ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
1118+ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
1119+ fi
1120 mostlyclean-generic:
1121
1122 clean-generic:
1123
1124=== modified file 'docs/libdbusmenu-glib/reference/Makefile.in'
1125--- docs/libdbusmenu-glib/reference/Makefile.in 2011-09-20 05:03:25 +0000
1126+++ docs/libdbusmenu-glib/reference/Makefile.in 2012-02-23 06:13:18 +0000
1127@@ -1,9 +1,9 @@
1128-# Makefile.in generated by automake 1.11.1 from Makefile.am.
1129+# Makefile.in generated by automake 1.11.3 from Makefile.am.
1130 # @configure_input@
1131
1132 # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
1133-# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation,
1134-# Inc.
1135+# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software
1136+# Foundation, Inc.
1137 # This Makefile.in is free software; the Free Software Foundation
1138 # gives unlimited permission to copy and/or distribute it,
1139 # with or without modifications, as long as this notice is preserved.
1140@@ -55,11 +55,11 @@
1141 CONFIG_HEADER = $(top_builddir)/config.h
1142 CONFIG_CLEAN_FILES = version.xml
1143 CONFIG_CLEAN_VPATH_FILES =
1144-AM_V_GEN = $(am__v_GEN_$(V))
1145-am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY))
1146+AM_V_GEN = $(am__v_GEN_@AM_V@)
1147+am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
1148 am__v_GEN_0 = @echo " GEN " $@;
1149-AM_V_at = $(am__v_at_$(V))
1150-am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))
1151+AM_V_at = $(am__v_at_@AM_V@)
1152+am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
1153 am__v_at_0 = @
1154 SOURCES =
1155 DIST_SOURCES =
1156@@ -387,6 +387,7 @@
1157 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
1158 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
1159 esac;
1160+$(top_srcdir)/gtk-doc.local.make:
1161
1162 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
1163 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
1164@@ -492,14 +493,15 @@
1165 fi; \
1166 dashes=`echo "$$dashes" | sed s/./=/g`; \
1167 if test "$$failed" -eq 0; then \
1168- echo "$$grn$$dashes"; \
1169+ col="$$grn"; \
1170 else \
1171- echo "$$red$$dashes"; \
1172+ col="$$red"; \
1173 fi; \
1174- echo "$$banner"; \
1175- test -z "$$skipped" || echo "$$skipped"; \
1176- test -z "$$report" || echo "$$report"; \
1177- echo "$$dashes$$std"; \
1178+ echo "$${col}$$dashes$${std}"; \
1179+ echo "$${col}$$banner$${std}"; \
1180+ test -z "$$skipped" || echo "$${col}$$skipped$${std}"; \
1181+ test -z "$$report" || echo "$${col}$$report$${std}"; \
1182+ echo "$${col}$$dashes$${std}"; \
1183 test "$$failed" -eq 0; \
1184 else :; fi
1185
1186@@ -551,10 +553,15 @@
1187
1188 installcheck: installcheck-am
1189 install-strip:
1190- $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
1191- install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
1192- `test -z '$(STRIP)' || \
1193- echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
1194+ if test -z '$(STRIP)'; then \
1195+ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
1196+ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
1197+ install; \
1198+ else \
1199+ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
1200+ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
1201+ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
1202+ fi
1203 mostlyclean-generic:
1204
1205 clean-generic:
1206
1207=== modified file 'docs/libdbusmenu-glib/reference/html/libdbusmenu-glib-DbusmenuClient.html'
1208--- docs/libdbusmenu-glib/reference/html/libdbusmenu-glib-DbusmenuClient.html 2012-01-31 05:20:48 +0000
1209+++ docs/libdbusmenu-glib/reference/html/libdbusmenu-glib-DbusmenuClient.html 2012-02-23 06:13:18 +0000
1210@@ -65,7 +65,7 @@
1211 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>);
1212 <a class="link" href="libdbusmenu-glib-DbusmenuClient.html#DbusmenuClient" title="DbusmenuClient"><span class="returnvalue">DbusmenuClient</span></a> * <a class="link" href="libdbusmenu-glib-DbusmenuClient.html#dbusmenu-client-new" title="dbusmenu_client_new ()">dbusmenu_client_new</a> (<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *name</code></em>,
1213 <em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *object</code></em>);
1214-const <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Boxed-Types.html#GStrv"><span class="returnvalue">GStrv</span></a> <a class="link" href="libdbusmenu-glib-DbusmenuClient.html#dbusmenu-client-get-icon-paths" title="dbusmenu_client_get_icon_paths ()">dbusmenu_client_get_icon_paths</a> (<em class="parameter"><code><a class="link" href="libdbusmenu-glib-DbusmenuClient.html#DbusmenuClient" title="DbusmenuClient"><span class="type">DbusmenuClient</span></a> *client</code></em>);
1215+<a href="http://library.gnome.org/devel/gobject/unstable/gobject-Boxed-Types.html#GStrv"><span class="returnvalue">GStrv</span></a> <a class="link" href="libdbusmenu-glib-DbusmenuClient.html#dbusmenu-client-get-icon-paths" title="dbusmenu_client_get_icon_paths ()">dbusmenu_client_get_icon_paths</a> (<em class="parameter"><code><a class="link" href="libdbusmenu-glib-DbusmenuClient.html#DbusmenuClient" title="DbusmenuClient"><span class="type">DbusmenuClient</span></a> *client</code></em>);
1216 <a class="link" href="libdbusmenu-glib-DbusmenuMenuitem.html#DbusmenuMenuitem" title="struct DbusmenuMenuitem"><span class="returnvalue">DbusmenuMenuitem</span></a> * <a class="link" href="libdbusmenu-glib-DbusmenuClient.html#dbusmenu-client-get-root" title="dbusmenu_client_get_root ()">dbusmenu_client_get_root</a> (<em class="parameter"><code><a class="link" href="libdbusmenu-glib-DbusmenuClient.html#DbusmenuClient" title="DbusmenuClient"><span class="type">DbusmenuClient</span></a> *client</code></em>);
1217 <a class="link" href="libdbusmenu-glib-Types.html#DbusmenuStatus" title="enum DbusmenuStatus"><span class="returnvalue">DbusmenuStatus</span></a> <a class="link" href="libdbusmenu-glib-DbusmenuClient.html#dbusmenu-client-get-status" title="dbusmenu_client_get_status ()">dbusmenu_client_get_status</a> (<em class="parameter"><code><a class="link" href="libdbusmenu-glib-DbusmenuClient.html#DbusmenuClient" title="DbusmenuClient"><span class="type">DbusmenuClient</span></a> *client</code></em>);
1218 <a class="link" href="libdbusmenu-glib-Types.html#DbusmenuTextDirection" title="enum DbusmenuTextDirection"><span class="returnvalue">DbusmenuTextDirection</span></a> <a class="link" href="libdbusmenu-glib-DbusmenuClient.html#dbusmenu-client-get-text-direction" title="dbusmenu_client_get_text_direction ()">dbusmenu_client_get_text_direction</a>
1219@@ -385,7 +385,7 @@
1220 <hr>
1221 <div class="refsect2">
1222 <a name="dbusmenu-client-get-icon-paths"></a><h3>dbusmenu_client_get_icon_paths ()</h3>
1223-<pre class="programlisting">const <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Boxed-Types.html#GStrv"><span class="returnvalue">GStrv</span></a> dbusmenu_client_get_icon_paths (<em class="parameter"><code><a class="link" href="libdbusmenu-glib-DbusmenuClient.html#DbusmenuClient" title="DbusmenuClient"><span class="type">DbusmenuClient</span></a> *client</code></em>);</pre>
1224+<pre class="programlisting"><a href="http://library.gnome.org/devel/gobject/unstable/gobject-Boxed-Types.html#GStrv"><span class="returnvalue">GStrv</span></a> dbusmenu_client_get_icon_paths (<em class="parameter"><code><a class="link" href="libdbusmenu-glib-DbusmenuClient.html#DbusmenuClient" title="DbusmenuClient"><span class="type">DbusmenuClient</span></a> *client</code></em>);</pre>
1225 <p>
1226 Gets the stored and exported icon paths from the client.
1227 </p>
1228
1229=== modified file 'docs/libdbusmenu-glib/reference/tmpl/client.sgml'
1230--- docs/libdbusmenu-glib/reference/tmpl/client.sgml 2011-08-25 14:44:13 +0000
1231+++ docs/libdbusmenu-glib/reference/tmpl/client.sgml 2012-02-23 06:13:18 +0000
1232@@ -9,13 +9,11 @@
1233
1234 </para>
1235
1236-
1237 <!-- ##### SECTION See_Also ##### -->
1238 <para>
1239
1240 </para>
1241
1242-
1243 <!-- ##### SECTION Stability_Level ##### -->
1244
1245
1246
1247=== modified file 'docs/libdbusmenu-glib/reference/tmpl/menuitem-proxy.sgml'
1248--- docs/libdbusmenu-glib/reference/tmpl/menuitem-proxy.sgml 2011-08-25 14:44:13 +0000
1249+++ docs/libdbusmenu-glib/reference/tmpl/menuitem-proxy.sgml 2012-02-23 06:13:18 +0000
1250@@ -9,13 +9,11 @@
1251
1252 </para>
1253
1254-
1255 <!-- ##### SECTION See_Also ##### -->
1256 <para>
1257
1258 </para>
1259
1260-
1261 <!-- ##### SECTION Stability_Level ##### -->
1262
1263
1264
1265=== modified file 'docs/libdbusmenu-glib/reference/tmpl/menuitem.sgml'
1266--- docs/libdbusmenu-glib/reference/tmpl/menuitem.sgml 2012-01-31 05:20:48 +0000
1267+++ docs/libdbusmenu-glib/reference/tmpl/menuitem.sgml 2012-02-23 06:13:18 +0000
1268@@ -9,13 +9,11 @@
1269
1270 </para>
1271
1272-
1273 <!-- ##### SECTION See_Also ##### -->
1274 <para>
1275
1276 </para>
1277
1278-
1279 <!-- ##### SECTION Stability_Level ##### -->
1280
1281
1282
1283=== modified file 'docs/libdbusmenu-glib/reference/tmpl/server.sgml'
1284--- docs/libdbusmenu-glib/reference/tmpl/server.sgml 2011-08-25 14:44:13 +0000
1285+++ docs/libdbusmenu-glib/reference/tmpl/server.sgml 2012-02-23 06:13:18 +0000
1286@@ -9,13 +9,11 @@
1287
1288 </para>
1289
1290-
1291 <!-- ##### SECTION See_Also ##### -->
1292 <para>
1293
1294 </para>
1295
1296-
1297 <!-- ##### SECTION Stability_Level ##### -->
1298
1299
1300
1301=== modified file 'docs/libdbusmenu-glib/reference/tmpl/types.sgml'
1302--- docs/libdbusmenu-glib/reference/tmpl/types.sgml 2011-08-25 14:44:13 +0000
1303+++ docs/libdbusmenu-glib/reference/tmpl/types.sgml 2012-02-23 06:13:18 +0000
1304@@ -9,13 +9,11 @@
1305
1306 </para>
1307
1308-
1309 <!-- ##### SECTION See_Also ##### -->
1310 <para>
1311
1312 </para>
1313
1314-
1315 <!-- ##### SECTION Stability_Level ##### -->
1316
1317
1318
1319=== modified file 'docs/libdbusmenu-glib/reference/version.xml'
1320--- docs/libdbusmenu-glib/reference/version.xml 2012-01-31 05:25:37 +0000
1321+++ docs/libdbusmenu-glib/reference/version.xml 2012-02-23 06:13:18 +0000
1322@@ -1,1 +1,1 @@
1323-0.5.90
1324+0.5.92
1325
1326=== modified file 'docs/libdbusmenu-glib/reference/xml/client.xml'
1327--- docs/libdbusmenu-glib/reference/xml/client.xml 2011-09-20 05:02:09 +0000
1328+++ docs/libdbusmenu-glib/reference/xml/client.xml 2012-02-23 06:13:18 +0000
1329@@ -48,7 +48,7 @@
1330 <parameter><link linkend="gpointer"><type>gpointer</type></link> user_data</parameter>);
1331 <link linkend="DbusmenuClient"><returnvalue>DbusmenuClient</returnvalue></link> * <link linkend="dbusmenu-client-new">dbusmenu_client_new</link> (<parameter>const <link linkend="gchar"><type>gchar</type></link> *name</parameter>,
1332 <parameter>const <link linkend="gchar"><type>gchar</type></link> *object</parameter>);
1333-const <link linkend="GStrv"><returnvalue>GStrv</returnvalue></link> <link linkend="dbusmenu-client-get-icon-paths">dbusmenu_client_get_icon_paths</link> (<parameter><link linkend="DbusmenuClient"><type>DbusmenuClient</type></link> *client</parameter>);
1334+<link linkend="GStrv"><returnvalue>GStrv</returnvalue></link> <link linkend="dbusmenu-client-get-icon-paths">dbusmenu_client_get_icon_paths</link> (<parameter><link linkend="DbusmenuClient"><type>DbusmenuClient</type></link> *client</parameter>);
1335 <link linkend="DbusmenuMenuitem"><returnvalue>DbusmenuMenuitem</returnvalue></link> * <link linkend="dbusmenu-client-get-root">dbusmenu_client_get_root</link> (<parameter><link linkend="DbusmenuClient"><type>DbusmenuClient</type></link> *client</parameter>);
1336 <link linkend="DbusmenuStatus"><returnvalue>DbusmenuStatus</returnvalue></link> <link linkend="dbusmenu-client-get-status">dbusmenu_client_get_status</link> (<parameter><link linkend="DbusmenuClient"><type>DbusmenuClient</type></link> *client</parameter>);
1337 <link linkend="DbusmenuTextDirection"><returnvalue>DbusmenuTextDirection</returnvalue></link> <link linkend="dbusmenu-client-get-text-direction">dbusmenu_client_get_text_direction</link>
1338@@ -308,7 +308,7 @@
1339 <refsect2 id="dbusmenu-client-get-icon-paths" role="function">
1340 <title>dbusmenu_client_get_icon_paths ()</title>
1341 <indexterm zone="dbusmenu-client-get-icon-paths"><primary>dbusmenu_client_get_icon_paths</primary></indexterm>
1342-<programlisting>const <link linkend="GStrv"><returnvalue>GStrv</returnvalue></link> dbusmenu_client_get_icon_paths (<parameter><link linkend="DbusmenuClient"><type>DbusmenuClient</type></link> *client</parameter>);</programlisting>
1343+<programlisting><link linkend="GStrv"><returnvalue>GStrv</returnvalue></link> dbusmenu_client_get_icon_paths (<parameter><link linkend="DbusmenuClient"><type>DbusmenuClient</type></link> *client</parameter>);</programlisting>
1344 <para>
1345 Gets the stored and exported icon paths from the client.
1346 </para><variablelist role="params">
1347
1348=== modified file 'docs/libdbusmenu-gtk/Makefile.in'
1349--- docs/libdbusmenu-gtk/Makefile.in 2011-09-20 05:03:25 +0000
1350+++ docs/libdbusmenu-gtk/Makefile.in 2012-02-23 06:13:18 +0000
1351@@ -1,9 +1,9 @@
1352-# Makefile.in generated by automake 1.11.1 from Makefile.am.
1353+# Makefile.in generated by automake 1.11.3 from Makefile.am.
1354 # @configure_input@
1355
1356 # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
1357-# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation,
1358-# Inc.
1359+# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software
1360+# Foundation, Inc.
1361 # This Makefile.in is free software; the Free Software Foundation
1362 # gives unlimited permission to copy and/or distribute it,
1363 # with or without modifications, as long as this notice is preserved.
1364@@ -48,11 +48,11 @@
1365 CONFIG_HEADER = $(top_builddir)/config.h
1366 CONFIG_CLEAN_FILES =
1367 CONFIG_CLEAN_VPATH_FILES =
1368-AM_V_GEN = $(am__v_GEN_$(V))
1369-am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY))
1370+AM_V_GEN = $(am__v_GEN_@AM_V@)
1371+am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
1372 am__v_GEN_0 = @echo " GEN " $@;
1373-AM_V_at = $(am__v_at_$(V))
1374-am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))
1375+AM_V_at = $(am__v_at_@AM_V@)
1376+am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
1377 am__v_at_0 = @
1378 SOURCES =
1379 DIST_SOURCES =
1380@@ -519,10 +519,15 @@
1381
1382 installcheck: installcheck-recursive
1383 install-strip:
1384- $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
1385- install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
1386- `test -z '$(STRIP)' || \
1387- echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
1388+ if test -z '$(STRIP)'; then \
1389+ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
1390+ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
1391+ install; \
1392+ else \
1393+ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
1394+ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
1395+ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
1396+ fi
1397 mostlyclean-generic:
1398
1399 clean-generic:
1400
1401=== modified file 'docs/libdbusmenu-gtk/reference/Makefile.in'
1402--- docs/libdbusmenu-gtk/reference/Makefile.in 2011-09-20 05:03:25 +0000
1403+++ docs/libdbusmenu-gtk/reference/Makefile.in 2012-02-23 06:13:18 +0000
1404@@ -1,9 +1,9 @@
1405-# Makefile.in generated by automake 1.11.1 from Makefile.am.
1406+# Makefile.in generated by automake 1.11.3 from Makefile.am.
1407 # @configure_input@
1408
1409 # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
1410-# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation,
1411-# Inc.
1412+# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software
1413+# Foundation, Inc.
1414 # This Makefile.in is free software; the Free Software Foundation
1415 # gives unlimited permission to copy and/or distribute it,
1416 # with or without modifications, as long as this notice is preserved.
1417@@ -55,11 +55,11 @@
1418 CONFIG_HEADER = $(top_builddir)/config.h
1419 CONFIG_CLEAN_FILES = version.xml
1420 CONFIG_CLEAN_VPATH_FILES =
1421-AM_V_GEN = $(am__v_GEN_$(V))
1422-am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY))
1423+AM_V_GEN = $(am__v_GEN_@AM_V@)
1424+am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
1425 am__v_GEN_0 = @echo " GEN " $@;
1426-AM_V_at = $(am__v_at_$(V))
1427-am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))
1428+AM_V_at = $(am__v_at_@AM_V@)
1429+am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
1430 am__v_at_0 = @
1431 SOURCES =
1432 DIST_SOURCES =
1433@@ -381,6 +381,7 @@
1434 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
1435 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
1436 esac;
1437+$(top_srcdir)/gtk-doc.local.make:
1438
1439 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
1440 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
1441@@ -486,14 +487,15 @@
1442 fi; \
1443 dashes=`echo "$$dashes" | sed s/./=/g`; \
1444 if test "$$failed" -eq 0; then \
1445- echo "$$grn$$dashes"; \
1446+ col="$$grn"; \
1447 else \
1448- echo "$$red$$dashes"; \
1449+ col="$$red"; \
1450 fi; \
1451- echo "$$banner"; \
1452- test -z "$$skipped" || echo "$$skipped"; \
1453- test -z "$$report" || echo "$$report"; \
1454- echo "$$dashes$$std"; \
1455+ echo "$${col}$$dashes$${std}"; \
1456+ echo "$${col}$$banner$${std}"; \
1457+ test -z "$$skipped" || echo "$${col}$$skipped$${std}"; \
1458+ test -z "$$report" || echo "$${col}$$report$${std}"; \
1459+ echo "$${col}$$dashes$${std}"; \
1460 test "$$failed" -eq 0; \
1461 else :; fi
1462
1463@@ -545,10 +547,15 @@
1464
1465 installcheck: installcheck-am
1466 install-strip:
1467- $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
1468- install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
1469- `test -z '$(STRIP)' || \
1470- echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
1471+ if test -z '$(STRIP)'; then \
1472+ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
1473+ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
1474+ install; \
1475+ else \
1476+ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
1477+ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
1478+ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
1479+ fi
1480 mostlyclean-generic:
1481
1482 clean-generic:
1483
1484=== modified file 'docs/libdbusmenu-gtk/reference/version.xml'
1485--- docs/libdbusmenu-gtk/reference/version.xml 2012-01-31 05:25:37 +0000
1486+++ docs/libdbusmenu-gtk/reference/version.xml 2012-02-23 06:13:18 +0000
1487@@ -1,1 +1,1 @@
1488-0.5.90
1489+0.5.92
1490
1491=== modified file 'libdbusmenu-glib/Makefile.in'
1492--- libdbusmenu-glib/Makefile.in 2012-01-31 05:25:37 +0000
1493+++ libdbusmenu-glib/Makefile.in 2012-02-23 06:13:18 +0000
1494@@ -1,9 +1,9 @@
1495-# Makefile.in generated by automake 1.11.1 from Makefile.am.
1496+# Makefile.in generated by automake 1.11.3 from Makefile.am.
1497 # @configure_input@
1498
1499 # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
1500-# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation,
1501-# Inc.
1502+# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software
1503+# Foundation, Inc.
1504 # This Makefile.in is free software; the Free Software Foundation
1505 # gives unlimited permission to copy and/or distribute it,
1506 # with or without modifications, as long as this notice is preserved.
1507@@ -94,6 +94,12 @@
1508 am__base_list = \
1509 sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
1510 sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
1511+am__uninstall_files_from_dir = { \
1512+ test -z "$$files" \
1513+ || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
1514+ || { echo " ( cd '$$dir' && rm -f" $$files ")"; \
1515+ $(am__cd) "$$dir" && rm -f $$files; }; \
1516+ }
1517 am__installdirs = "$(DESTDIR)$(libdir)" "$(DESTDIR)$(girdir)" \
1518 "$(DESTDIR)$(pkgconfigdir)" "$(DESTDIR)$(typelibdir)" \
1519 "$(DESTDIR)$(vapidir)" \
1520@@ -114,8 +120,8 @@
1521 libdbusmenu_glib_la-client-menuitem.lo \
1522 libdbusmenu_glib_la-client.lo
1523 libdbusmenu_glib_la_OBJECTS = $(am_libdbusmenu_glib_la_OBJECTS)
1524-AM_V_lt = $(am__v_lt_$(V))
1525-am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY))
1526+AM_V_lt = $(am__v_lt_@AM_V@)
1527+am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@)
1528 am__v_lt_0 = --silent
1529 libdbusmenu_glib_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
1530 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
1531@@ -131,21 +137,21 @@
1532 $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \
1533 $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
1534 $(AM_CFLAGS) $(CFLAGS)
1535-AM_V_CC = $(am__v_CC_$(V))
1536-am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY))
1537+AM_V_CC = $(am__v_CC_@AM_V@)
1538+am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@)
1539 am__v_CC_0 = @echo " CC " $@;
1540-AM_V_at = $(am__v_at_$(V))
1541-am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))
1542+AM_V_at = $(am__v_at_@AM_V@)
1543+am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
1544 am__v_at_0 = @
1545 CCLD = $(CC)
1546 LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
1547 $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
1548 $(AM_LDFLAGS) $(LDFLAGS) -o $@
1549-AM_V_CCLD = $(am__v_CCLD_$(V))
1550-am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY))
1551+AM_V_CCLD = $(am__v_CCLD_@AM_V@)
1552+am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@)
1553 am__v_CCLD_0 = @echo " CCLD " $@;
1554-AM_V_GEN = $(am__v_GEN_$(V))
1555-am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY))
1556+AM_V_GEN = $(am__v_GEN_@AM_V@)
1557+am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
1558 am__v_GEN_0 = @echo " GEN " $@;
1559 SOURCES = $(libdbusmenu_glib_la_SOURCES)
1560 DIST_SOURCES = $(libdbusmenu_glib_la_SOURCES)
1561@@ -477,6 +483,7 @@
1562 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
1563 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
1564 esac;
1565+$(top_srcdir)/Makefile.am.enum:
1566
1567 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
1568 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
1569@@ -519,7 +526,7 @@
1570 echo "rm -f \"$${dir}/so_locations\""; \
1571 rm -f "$${dir}/so_locations"; \
1572 done
1573-libdbusmenu-glib.la: $(libdbusmenu_glib_la_OBJECTS) $(libdbusmenu_glib_la_DEPENDENCIES)
1574+libdbusmenu-glib.la: $(libdbusmenu_glib_la_OBJECTS) $(libdbusmenu_glib_la_DEPENDENCIES) $(EXTRA_libdbusmenu_glib_la_DEPENDENCIES)
1575 $(AM_V_CCLD)$(libdbusmenu_glib_la_LINK) -rpath $(libdir) $(libdbusmenu_glib_la_OBJECTS) $(libdbusmenu_glib_la_LIBADD) $(LIBS)
1576
1577 mostlyclean-compile:
1578@@ -543,114 +550,100 @@
1579 .c.o:
1580 @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
1581 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
1582-@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
1583-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
1584+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
1585 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1586-@am__fastdepCC_FALSE@ $(COMPILE) -c $<
1587+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c $<
1588
1589 .c.obj:
1590 @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
1591 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
1592-@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
1593-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
1594+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
1595 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1596-@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'`
1597+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c `$(CYGPATH_W) '$<'`
1598
1599 .c.lo:
1600 @am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
1601 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
1602-@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
1603-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
1604+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
1605 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1606-@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $<
1607+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $<
1608
1609 libdbusmenu_glib_la-dbus-menu-clean.xml.lo: dbus-menu-clean.xml.c
1610 @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdbusmenu_glib_la_CFLAGS) $(CFLAGS) -MT libdbusmenu_glib_la-dbus-menu-clean.xml.lo -MD -MP -MF $(DEPDIR)/libdbusmenu_glib_la-dbus-menu-clean.xml.Tpo -c -o libdbusmenu_glib_la-dbus-menu-clean.xml.lo `test -f 'dbus-menu-clean.xml.c' || echo '$(srcdir)/'`dbus-menu-clean.xml.c
1611 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libdbusmenu_glib_la-dbus-menu-clean.xml.Tpo $(DEPDIR)/libdbusmenu_glib_la-dbus-menu-clean.xml.Plo
1612-@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
1613-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='dbus-menu-clean.xml.c' object='libdbusmenu_glib_la-dbus-menu-clean.xml.lo' libtool=yes @AMDEPBACKSLASH@
1614+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='dbus-menu-clean.xml.c' object='libdbusmenu_glib_la-dbus-menu-clean.xml.lo' libtool=yes @AMDEPBACKSLASH@
1615 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1616-@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdbusmenu_glib_la_CFLAGS) $(CFLAGS) -c -o libdbusmenu_glib_la-dbus-menu-clean.xml.lo `test -f 'dbus-menu-clean.xml.c' || echo '$(srcdir)/'`dbus-menu-clean.xml.c
1617+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdbusmenu_glib_la_CFLAGS) $(CFLAGS) -c -o libdbusmenu_glib_la-dbus-menu-clean.xml.lo `test -f 'dbus-menu-clean.xml.c' || echo '$(srcdir)/'`dbus-menu-clean.xml.c
1618
1619 libdbusmenu_glib_la-defaults.lo: defaults.c
1620 @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdbusmenu_glib_la_CFLAGS) $(CFLAGS) -MT libdbusmenu_glib_la-defaults.lo -MD -MP -MF $(DEPDIR)/libdbusmenu_glib_la-defaults.Tpo -c -o libdbusmenu_glib_la-defaults.lo `test -f 'defaults.c' || echo '$(srcdir)/'`defaults.c
1621 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libdbusmenu_glib_la-defaults.Tpo $(DEPDIR)/libdbusmenu_glib_la-defaults.Plo
1622-@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
1623-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='defaults.c' object='libdbusmenu_glib_la-defaults.lo' libtool=yes @AMDEPBACKSLASH@
1624+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='defaults.c' object='libdbusmenu_glib_la-defaults.lo' libtool=yes @AMDEPBACKSLASH@
1625 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1626-@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdbusmenu_glib_la_CFLAGS) $(CFLAGS) -c -o libdbusmenu_glib_la-defaults.lo `test -f 'defaults.c' || echo '$(srcdir)/'`defaults.c
1627+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdbusmenu_glib_la_CFLAGS) $(CFLAGS) -c -o libdbusmenu_glib_la-defaults.lo `test -f 'defaults.c' || echo '$(srcdir)/'`defaults.c
1628
1629 libdbusmenu_glib_la-enum-types.lo: enum-types.c
1630 @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdbusmenu_glib_la_CFLAGS) $(CFLAGS) -MT libdbusmenu_glib_la-enum-types.lo -MD -MP -MF $(DEPDIR)/libdbusmenu_glib_la-enum-types.Tpo -c -o libdbusmenu_glib_la-enum-types.lo `test -f 'enum-types.c' || echo '$(srcdir)/'`enum-types.c
1631 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libdbusmenu_glib_la-enum-types.Tpo $(DEPDIR)/libdbusmenu_glib_la-enum-types.Plo
1632-@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
1633-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='enum-types.c' object='libdbusmenu_glib_la-enum-types.lo' libtool=yes @AMDEPBACKSLASH@
1634+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='enum-types.c' object='libdbusmenu_glib_la-enum-types.lo' libtool=yes @AMDEPBACKSLASH@
1635 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1636-@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdbusmenu_glib_la_CFLAGS) $(CFLAGS) -c -o libdbusmenu_glib_la-enum-types.lo `test -f 'enum-types.c' || echo '$(srcdir)/'`enum-types.c
1637+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdbusmenu_glib_la_CFLAGS) $(CFLAGS) -c -o libdbusmenu_glib_la-enum-types.lo `test -f 'enum-types.c' || echo '$(srcdir)/'`enum-types.c
1638
1639 libdbusmenu_glib_la-menuitem.lo: menuitem.c
1640 @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdbusmenu_glib_la_CFLAGS) $(CFLAGS) -MT libdbusmenu_glib_la-menuitem.lo -MD -MP -MF $(DEPDIR)/libdbusmenu_glib_la-menuitem.Tpo -c -o libdbusmenu_glib_la-menuitem.lo `test -f 'menuitem.c' || echo '$(srcdir)/'`menuitem.c
1641 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libdbusmenu_glib_la-menuitem.Tpo $(DEPDIR)/libdbusmenu_glib_la-menuitem.Plo
1642-@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
1643-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='menuitem.c' object='libdbusmenu_glib_la-menuitem.lo' libtool=yes @AMDEPBACKSLASH@
1644+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='menuitem.c' object='libdbusmenu_glib_la-menuitem.lo' libtool=yes @AMDEPBACKSLASH@
1645 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1646-@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdbusmenu_glib_la_CFLAGS) $(CFLAGS) -c -o libdbusmenu_glib_la-menuitem.lo `test -f 'menuitem.c' || echo '$(srcdir)/'`menuitem.c
1647+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdbusmenu_glib_la_CFLAGS) $(CFLAGS) -c -o libdbusmenu_glib_la-menuitem.lo `test -f 'menuitem.c' || echo '$(srcdir)/'`menuitem.c
1648
1649 libdbusmenu_glib_la-menuitem-marshal.lo: menuitem-marshal.c
1650 @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdbusmenu_glib_la_CFLAGS) $(CFLAGS) -MT libdbusmenu_glib_la-menuitem-marshal.lo -MD -MP -MF $(DEPDIR)/libdbusmenu_glib_la-menuitem-marshal.Tpo -c -o libdbusmenu_glib_la-menuitem-marshal.lo `test -f 'menuitem-marshal.c' || echo '$(srcdir)/'`menuitem-marshal.c
1651 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libdbusmenu_glib_la-menuitem-marshal.Tpo $(DEPDIR)/libdbusmenu_glib_la-menuitem-marshal.Plo
1652-@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
1653-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='menuitem-marshal.c' object='libdbusmenu_glib_la-menuitem-marshal.lo' libtool=yes @AMDEPBACKSLASH@
1654+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='menuitem-marshal.c' object='libdbusmenu_glib_la-menuitem-marshal.lo' libtool=yes @AMDEPBACKSLASH@
1655 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1656-@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdbusmenu_glib_la_CFLAGS) $(CFLAGS) -c -o libdbusmenu_glib_la-menuitem-marshal.lo `test -f 'menuitem-marshal.c' || echo '$(srcdir)/'`menuitem-marshal.c
1657+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdbusmenu_glib_la_CFLAGS) $(CFLAGS) -c -o libdbusmenu_glib_la-menuitem-marshal.lo `test -f 'menuitem-marshal.c' || echo '$(srcdir)/'`menuitem-marshal.c
1658
1659 libdbusmenu_glib_la-menuitem-proxy.lo: menuitem-proxy.c
1660 @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdbusmenu_glib_la_CFLAGS) $(CFLAGS) -MT libdbusmenu_glib_la-menuitem-proxy.lo -MD -MP -MF $(DEPDIR)/libdbusmenu_glib_la-menuitem-proxy.Tpo -c -o libdbusmenu_glib_la-menuitem-proxy.lo `test -f 'menuitem-proxy.c' || echo '$(srcdir)/'`menuitem-proxy.c
1661 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libdbusmenu_glib_la-menuitem-proxy.Tpo $(DEPDIR)/libdbusmenu_glib_la-menuitem-proxy.Plo
1662-@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
1663-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='menuitem-proxy.c' object='libdbusmenu_glib_la-menuitem-proxy.lo' libtool=yes @AMDEPBACKSLASH@
1664+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='menuitem-proxy.c' object='libdbusmenu_glib_la-menuitem-proxy.lo' libtool=yes @AMDEPBACKSLASH@
1665 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1666-@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdbusmenu_glib_la_CFLAGS) $(CFLAGS) -c -o libdbusmenu_glib_la-menuitem-proxy.lo `test -f 'menuitem-proxy.c' || echo '$(srcdir)/'`menuitem-proxy.c
1667+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdbusmenu_glib_la_CFLAGS) $(CFLAGS) -c -o libdbusmenu_glib_la-menuitem-proxy.lo `test -f 'menuitem-proxy.c' || echo '$(srcdir)/'`menuitem-proxy.c
1668
1669 libdbusmenu_glib_la-server.lo: server.c
1670 @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdbusmenu_glib_la_CFLAGS) $(CFLAGS) -MT libdbusmenu_glib_la-server.lo -MD -MP -MF $(DEPDIR)/libdbusmenu_glib_la-server.Tpo -c -o libdbusmenu_glib_la-server.lo `test -f 'server.c' || echo '$(srcdir)/'`server.c
1671 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libdbusmenu_glib_la-server.Tpo $(DEPDIR)/libdbusmenu_glib_la-server.Plo
1672-@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
1673-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='server.c' object='libdbusmenu_glib_la-server.lo' libtool=yes @AMDEPBACKSLASH@
1674+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='server.c' object='libdbusmenu_glib_la-server.lo' libtool=yes @AMDEPBACKSLASH@
1675 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1676-@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdbusmenu_glib_la_CFLAGS) $(CFLAGS) -c -o libdbusmenu_glib_la-server.lo `test -f 'server.c' || echo '$(srcdir)/'`server.c
1677+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdbusmenu_glib_la_CFLAGS) $(CFLAGS) -c -o libdbusmenu_glib_la-server.lo `test -f 'server.c' || echo '$(srcdir)/'`server.c
1678
1679 libdbusmenu_glib_la-server-marshal.lo: server-marshal.c
1680 @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdbusmenu_glib_la_CFLAGS) $(CFLAGS) -MT libdbusmenu_glib_la-server-marshal.lo -MD -MP -MF $(DEPDIR)/libdbusmenu_glib_la-server-marshal.Tpo -c -o libdbusmenu_glib_la-server-marshal.lo `test -f 'server-marshal.c' || echo '$(srcdir)/'`server-marshal.c
1681 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libdbusmenu_glib_la-server-marshal.Tpo $(DEPDIR)/libdbusmenu_glib_la-server-marshal.Plo
1682-@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
1683-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='server-marshal.c' object='libdbusmenu_glib_la-server-marshal.lo' libtool=yes @AMDEPBACKSLASH@
1684+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='server-marshal.c' object='libdbusmenu_glib_la-server-marshal.lo' libtool=yes @AMDEPBACKSLASH@
1685 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1686-@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdbusmenu_glib_la_CFLAGS) $(CFLAGS) -c -o libdbusmenu_glib_la-server-marshal.lo `test -f 'server-marshal.c' || echo '$(srcdir)/'`server-marshal.c
1687+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdbusmenu_glib_la_CFLAGS) $(CFLAGS) -c -o libdbusmenu_glib_la-server-marshal.lo `test -f 'server-marshal.c' || echo '$(srcdir)/'`server-marshal.c
1688
1689 libdbusmenu_glib_la-client-marshal.lo: client-marshal.c
1690 @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdbusmenu_glib_la_CFLAGS) $(CFLAGS) -MT libdbusmenu_glib_la-client-marshal.lo -MD -MP -MF $(DEPDIR)/libdbusmenu_glib_la-client-marshal.Tpo -c -o libdbusmenu_glib_la-client-marshal.lo `test -f 'client-marshal.c' || echo '$(srcdir)/'`client-marshal.c
1691 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libdbusmenu_glib_la-client-marshal.Tpo $(DEPDIR)/libdbusmenu_glib_la-client-marshal.Plo
1692-@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
1693-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='client-marshal.c' object='libdbusmenu_glib_la-client-marshal.lo' libtool=yes @AMDEPBACKSLASH@
1694+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='client-marshal.c' object='libdbusmenu_glib_la-client-marshal.lo' libtool=yes @AMDEPBACKSLASH@
1695 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1696-@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdbusmenu_glib_la_CFLAGS) $(CFLAGS) -c -o libdbusmenu_glib_la-client-marshal.lo `test -f 'client-marshal.c' || echo '$(srcdir)/'`client-marshal.c
1697+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdbusmenu_glib_la_CFLAGS) $(CFLAGS) -c -o libdbusmenu_glib_la-client-marshal.lo `test -f 'client-marshal.c' || echo '$(srcdir)/'`client-marshal.c
1698
1699 libdbusmenu_glib_la-client-menuitem.lo: client-menuitem.c
1700 @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdbusmenu_glib_la_CFLAGS) $(CFLAGS) -MT libdbusmenu_glib_la-client-menuitem.lo -MD -MP -MF $(DEPDIR)/libdbusmenu_glib_la-client-menuitem.Tpo -c -o libdbusmenu_glib_la-client-menuitem.lo `test -f 'client-menuitem.c' || echo '$(srcdir)/'`client-menuitem.c
1701 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libdbusmenu_glib_la-client-menuitem.Tpo $(DEPDIR)/libdbusmenu_glib_la-client-menuitem.Plo
1702-@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
1703-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='client-menuitem.c' object='libdbusmenu_glib_la-client-menuitem.lo' libtool=yes @AMDEPBACKSLASH@
1704+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='client-menuitem.c' object='libdbusmenu_glib_la-client-menuitem.lo' libtool=yes @AMDEPBACKSLASH@
1705 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1706-@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdbusmenu_glib_la_CFLAGS) $(CFLAGS) -c -o libdbusmenu_glib_la-client-menuitem.lo `test -f 'client-menuitem.c' || echo '$(srcdir)/'`client-menuitem.c
1707+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdbusmenu_glib_la_CFLAGS) $(CFLAGS) -c -o libdbusmenu_glib_la-client-menuitem.lo `test -f 'client-menuitem.c' || echo '$(srcdir)/'`client-menuitem.c
1708
1709 libdbusmenu_glib_la-client.lo: client.c
1710 @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdbusmenu_glib_la_CFLAGS) $(CFLAGS) -MT libdbusmenu_glib_la-client.lo -MD -MP -MF $(DEPDIR)/libdbusmenu_glib_la-client.Tpo -c -o libdbusmenu_glib_la-client.lo `test -f 'client.c' || echo '$(srcdir)/'`client.c
1711 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libdbusmenu_glib_la-client.Tpo $(DEPDIR)/libdbusmenu_glib_la-client.Plo
1712-@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
1713-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='client.c' object='libdbusmenu_glib_la-client.lo' libtool=yes @AMDEPBACKSLASH@
1714+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='client.c' object='libdbusmenu_glib_la-client.lo' libtool=yes @AMDEPBACKSLASH@
1715 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1716-@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdbusmenu_glib_la_CFLAGS) $(CFLAGS) -c -o libdbusmenu_glib_la-client.lo `test -f 'client.c' || echo '$(srcdir)/'`client.c
1717+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdbusmenu_glib_la_CFLAGS) $(CFLAGS) -c -o libdbusmenu_glib_la-client.lo `test -f 'client.c' || echo '$(srcdir)/'`client.c
1718
1719 mostlyclean-libtool:
1720 -rm -f *.lo
1721@@ -674,9 +667,7 @@
1722 @$(NORMAL_UNINSTALL)
1723 @list='$(gir_DATA)'; test -n "$(girdir)" || list=; \
1724 files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
1725- test -n "$$files" || exit 0; \
1726- echo " ( cd '$(DESTDIR)$(girdir)' && rm -f" $$files ")"; \
1727- cd "$(DESTDIR)$(girdir)" && rm -f $$files
1728+ dir='$(DESTDIR)$(girdir)'; $(am__uninstall_files_from_dir)
1729 install-pkgconfigDATA: $(pkgconfig_DATA)
1730 @$(NORMAL_INSTALL)
1731 test -z "$(pkgconfigdir)" || $(MKDIR_P) "$(DESTDIR)$(pkgconfigdir)"
1732@@ -694,9 +685,7 @@
1733 @$(NORMAL_UNINSTALL)
1734 @list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \
1735 files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
1736- test -n "$$files" || exit 0; \
1737- echo " ( cd '$(DESTDIR)$(pkgconfigdir)' && rm -f" $$files ")"; \
1738- cd "$(DESTDIR)$(pkgconfigdir)" && rm -f $$files
1739+ dir='$(DESTDIR)$(pkgconfigdir)'; $(am__uninstall_files_from_dir)
1740 install-typelibDATA: $(typelib_DATA)
1741 @$(NORMAL_INSTALL)
1742 test -z "$(typelibdir)" || $(MKDIR_P) "$(DESTDIR)$(typelibdir)"
1743@@ -714,9 +703,7 @@
1744 @$(NORMAL_UNINSTALL)
1745 @list='$(typelib_DATA)'; test -n "$(typelibdir)" || list=; \
1746 files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
1747- test -n "$$files" || exit 0; \
1748- echo " ( cd '$(DESTDIR)$(typelibdir)' && rm -f" $$files ")"; \
1749- cd "$(DESTDIR)$(typelibdir)" && rm -f $$files
1750+ dir='$(DESTDIR)$(typelibdir)'; $(am__uninstall_files_from_dir)
1751 install-vapiDATA: $(vapi_DATA)
1752 @$(NORMAL_INSTALL)
1753 test -z "$(vapidir)" || $(MKDIR_P) "$(DESTDIR)$(vapidir)"
1754@@ -734,9 +721,7 @@
1755 @$(NORMAL_UNINSTALL)
1756 @list='$(vapi_DATA)'; test -n "$(vapidir)" || list=; \
1757 files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
1758- test -n "$$files" || exit 0; \
1759- echo " ( cd '$(DESTDIR)$(vapidir)' && rm -f" $$files ")"; \
1760- cd "$(DESTDIR)$(vapidir)" && rm -f $$files
1761+ dir='$(DESTDIR)$(vapidir)'; $(am__uninstall_files_from_dir)
1762 install-libdbusmenu_glibincludeHEADERS: $(libdbusmenu_glibinclude_HEADERS)
1763 @$(NORMAL_INSTALL)
1764 test -z "$(libdbusmenu_glibincludedir)" || $(MKDIR_P) "$(DESTDIR)$(libdbusmenu_glibincludedir)"
1765@@ -754,9 +739,7 @@
1766 @$(NORMAL_UNINSTALL)
1767 @list='$(libdbusmenu_glibinclude_HEADERS)'; test -n "$(libdbusmenu_glibincludedir)" || list=; \
1768 files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
1769- test -n "$$files" || exit 0; \
1770- echo " ( cd '$(DESTDIR)$(libdbusmenu_glibincludedir)' && rm -f" $$files ")"; \
1771- cd "$(DESTDIR)$(libdbusmenu_glibincludedir)" && rm -f $$files
1772+ dir='$(DESTDIR)$(libdbusmenu_glibincludedir)'; $(am__uninstall_files_from_dir)
1773
1774 ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
1775 list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
1776@@ -859,10 +842,15 @@
1777
1778 installcheck: installcheck-am
1779 install-strip:
1780- $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
1781- install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
1782- `test -z '$(STRIP)' || \
1783- echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
1784+ if test -z '$(STRIP)'; then \
1785+ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
1786+ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
1787+ install; \
1788+ else \
1789+ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
1790+ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
1791+ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
1792+ fi
1793 mostlyclean-generic:
1794
1795 clean-generic:
1796
1797=== modified file 'libdbusmenu-glib/client.c'
1798--- libdbusmenu-glib/client.c 2012-01-31 05:25:37 +0000
1799+++ libdbusmenu-glib/client.c 2012-02-23 06:13:18 +0000
1800@@ -395,7 +395,7 @@
1801
1802 /* Only used for queueing up a new command, so we can
1803 just drop this array. */
1804- if (priv->delayed_property_list == NULL) {
1805+ if (priv->delayed_property_list != NULL) {
1806 gchar ** dataregion = (gchar **)g_array_free(priv->delayed_property_list, FALSE);
1807 if (dataregion != NULL) {
1808 g_strfreev(dataregion);
1809@@ -403,7 +403,7 @@
1810 priv->delayed_property_list = NULL;
1811 }
1812
1813- if (priv->delayed_property_listeners == NULL) {
1814+ if (priv->delayed_property_listeners != NULL) {
1815 gint i;
1816 GError * localerror = NULL;
1817
1818@@ -2210,7 +2210,7 @@
1819 * memory managed by the client. Duplicate if you want
1820 * to keep them.
1821 */
1822-const GStrv
1823+GStrv
1824 dbusmenu_client_get_icon_paths (DbusmenuClient * client)
1825 {
1826 g_return_val_if_fail(DBUSMENU_IS_CLIENT(client), NULL);
1827
1828=== modified file 'libdbusmenu-glib/client.h'
1829--- libdbusmenu-glib/client.h 2011-03-03 19:48:56 +0000
1830+++ libdbusmenu-glib/client.h 2012-02-23 06:13:18 +0000
1831@@ -212,7 +212,7 @@
1832 GDestroyNotify destroy_func);
1833 DbusmenuTextDirection dbusmenu_client_get_text_direction (DbusmenuClient * client);
1834 DbusmenuStatus dbusmenu_client_get_status (DbusmenuClient * client);
1835-const GStrv dbusmenu_client_get_icon_paths (DbusmenuClient * client);
1836+GStrv dbusmenu_client_get_icon_paths (DbusmenuClient * client);
1837
1838 /**
1839 SECTION:client
1840
1841=== modified file 'libdbusmenu-glib/menuitem.c'
1842--- libdbusmenu-glib/menuitem.c 2012-01-31 05:25:37 +0000
1843+++ libdbusmenu-glib/menuitem.c 2012-02-23 06:13:18 +0000
1844@@ -1222,7 +1222,7 @@
1845 but we're actually replacing it no matter. This is so that
1846 the variant passed in sticks around which the caller may
1847 expect. They shouldn't, but it's low cost to remove bugs. */
1848- if (!inhash || !g_variant_equal(hash_variant, value)) {
1849+ if (!inhash || (hash_variant != NULL && !g_variant_equal(hash_variant, value))) {
1850 replaced = TRUE;
1851 }
1852
1853
1854=== modified file 'libdbusmenu-glib/server.c'
1855--- libdbusmenu-glib/server.c 2012-01-31 05:25:37 +0000
1856+++ libdbusmenu-glib/server.c 2012-02-23 06:13:18 +0000
1857@@ -990,6 +990,7 @@
1858 /* these are going to be standard references in all code paths and must be unrefed */
1859 GVariant * megadata[2];
1860 gboolean gotsomething = FALSE;
1861+ gboolean error_nosend = FALSE;
1862
1863 if (item_init) {
1864 megadata[0] = g_variant_builder_end(&itembuilder);
1865@@ -1002,6 +1003,10 @@
1866 if (error != NULL) {
1867 g_warning("Unable to parse '[ ]' as a 'a(ia{sv})': %s", error->message);
1868 g_error_free(error);
1869+ megadata[0] = NULL;
1870+ error_nosend = TRUE;
1871+ } else {
1872+ g_variant_ref_sink(megadata[0]);
1873 }
1874 }
1875
1876@@ -1016,10 +1021,14 @@
1877 if (error != NULL) {
1878 g_warning("Unable to parse '[ ]' as a 'a(ias)': %s", error->message);
1879 g_error_free(error);
1880+ megadata[1] = NULL;
1881+ error_nosend = TRUE;
1882+ } else {
1883+ g_variant_ref_sink(megadata[1]);
1884 }
1885 }
1886
1887- if (gotsomething && priv->dbusobject != NULL && priv->bus != NULL) {
1888+ if (gotsomething && !error_nosend && priv->dbusobject != NULL && priv->bus != NULL) {
1889 g_dbus_connection_emit_signal(priv->bus,
1890 NULL,
1891 priv->dbusobject,
1892@@ -1029,8 +1038,13 @@
1893 NULL);
1894 }
1895
1896- g_variant_unref(megadata[0]);
1897- g_variant_unref(megadata[1]);
1898+ if (megadata[0] != NULL) {
1899+ g_variant_unref(megadata[0]);
1900+ }
1901+
1902+ if (megadata[1] != NULL) {
1903+ g_variant_unref(megadata[1]);
1904+ }
1905
1906 /* Clean everything up */
1907 prop_array_teardown(priv->prop_array);
1908@@ -1595,7 +1609,6 @@
1909 DbusmenuMenuitem * mi = dbusmenu_menuitem_find_id(priv->root, id);
1910
1911 if (mi == NULL) {
1912-
1913 g_dbus_method_invocation_return_error(invocation,
1914 error_quark(),
1915 INVALID_MENUITEM_ID,
1916@@ -1605,17 +1618,17 @@
1917 g_variant_unref(data);
1918
1919 } else {
1920-
1921 idle_event_t * event_data = g_new0(idle_event_t, 1);
1922 event_data->mi = g_object_ref(mi);
1923- event_data->eventid = etype;
1924+ event_data->eventid = etype; /* give away our allocation */
1925 event_data->timestamp = ts;
1926 event_data->variant = data; /* give away our reference */
1927
1928 g_timeout_add(0, event_local_handler, event_data);
1929+
1930+ g_dbus_method_invocation_return_value(invocation, NULL);
1931 }
1932
1933- g_dbus_method_invocation_return_value(invocation, NULL);
1934 return;
1935 }
1936
1937@@ -1809,7 +1822,7 @@
1938 * memory managed by the server. Duplicate if you want
1939 * to keep them.
1940 */
1941-const GStrv
1942+GStrv
1943 dbusmenu_server_get_icon_paths (DbusmenuServer * server)
1944 {
1945 g_return_val_if_fail(DBUSMENU_IS_SERVER(server), NULL);
1946
1947=== modified file 'libdbusmenu-glib/server.h'
1948--- libdbusmenu-glib/server.h 2011-03-02 22:53:34 +0000
1949+++ libdbusmenu-glib/server.h 2012-02-23 06:13:18 +0000
1950@@ -167,7 +167,7 @@
1951 DbusmenuStatus dbusmenu_server_get_status (DbusmenuServer * server);
1952 void dbusmenu_server_set_status (DbusmenuServer * server,
1953 DbusmenuStatus status);
1954-const GStrv dbusmenu_server_get_icon_paths (DbusmenuServer * server);
1955+GStrv dbusmenu_server_get_icon_paths (DbusmenuServer * server);
1956 void dbusmenu_server_set_icon_paths (DbusmenuServer * server,
1957 GStrv icon_paths);
1958
1959
1960=== modified file 'libdbusmenu-gtk/Makefile.am'
1961--- libdbusmenu-gtk/Makefile.am 2012-01-31 05:25:37 +0000
1962+++ libdbusmenu-gtk/Makefile.am 2012-02-23 06:13:18 +0000
1963@@ -68,7 +68,7 @@
1964 -DG_LOG_DOMAIN="\"LIBDBUSMENU-GTK\""
1965
1966 libdbusmenu_gtk_la_LIBADD = \
1967- ../libdbusmenu-glib/libdbusmenu-glib.la \
1968+ $(top_builddir)/libdbusmenu-glib/libdbusmenu-glib.la \
1969 $(DBUSMENUGTK_LIBS)
1970
1971 # We duplicate these here because Automake won't let us use $(VER) on the left hand side.
1972@@ -118,7 +118,8 @@
1973 $(GTKGIR) \
1974 Dbusmenu-0.4
1975 DbusmenuGtk_0_4_gir_CFLAGS = $(DBUSMENUGTK_CFLAGS) -I$(top_srcdir)
1976-DbusmenuGtk_0_4_gir_LIBS = libdbusmenu-gtk$(VER).la
1977+DbusmenuGtk_0_4_gir_LIBS = libdbusmenu-gtk$(VER).la \
1978+ $(top_builddir)/libdbusmenu-glib/libdbusmenu-glib.la
1979 DbusmenuGtk_0_4_gir_FILES = $(addprefix $(srcdir)/, $(introspection_sources))
1980 DbusmenuGtk_0_4_gir_NAMESPACE = DbusmenuGtk$(VER)
1981 DbusmenuGtk_0_4_gir_EXPORT_PACKAGES = dbusmenu-gtk$(VER)-0.4
1982
1983=== modified file 'libdbusmenu-gtk/Makefile.in'
1984--- libdbusmenu-gtk/Makefile.in 2012-01-31 05:25:37 +0000
1985+++ libdbusmenu-gtk/Makefile.in 2012-02-23 06:13:18 +0000
1986@@ -1,9 +1,9 @@
1987-# Makefile.in generated by automake 1.11.1 from Makefile.am.
1988+# Makefile.in generated by automake 1.11.3 from Makefile.am.
1989 # @configure_input@
1990
1991 # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
1992-# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation,
1993-# Inc.
1994+# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software
1995+# Foundation, Inc.
1996 # This Makefile.in is free software; the Free Software Foundation
1997 # gives unlimited permission to copy and/or distribute it,
1998 # with or without modifications, as long as this notice is preserved.
1999@@ -96,6 +96,12 @@
2000 am__base_list = \
2001 sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
2002 sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
2003+am__uninstall_files_from_dir = { \
2004+ test -z "$$files" \
2005+ || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
2006+ || { echo " ( cd '$$dir' && rm -f" $$files ")"; \
2007+ $(am__cd) "$$dir" && rm -f $$files; }; \
2008+ }
2009 am__installdirs = "$(DESTDIR)$(libdir)" "$(DESTDIR)$(girdir)" \
2010 "$(DESTDIR)$(pkgconfigdir)" "$(DESTDIR)$(typelibdir)" \
2011 "$(DESTDIR)$(vapidir)" \
2012@@ -104,22 +110,24 @@
2013 LTLIBRARIES = $(lib_LTLIBRARIES)
2014 am__DEPENDENCIES_1 =
2015 libdbusmenu_gtk_la_DEPENDENCIES = \
2016- ../libdbusmenu-glib/libdbusmenu-glib.la $(am__DEPENDENCIES_1)
2017+ $(top_builddir)/libdbusmenu-glib/libdbusmenu-glib.la \
2018+ $(am__DEPENDENCIES_1)
2019 am_libdbusmenu_gtk_la_OBJECTS = libdbusmenu_gtk_la-client.lo \
2020 libdbusmenu_gtk_la-genericmenuitem.lo \
2021 libdbusmenu_gtk_la-genericmenuitem-enum-types.lo \
2022 libdbusmenu_gtk_la-menu.lo libdbusmenu_gtk_la-menuitem.lo \
2023 libdbusmenu_gtk_la-parser.lo
2024 libdbusmenu_gtk_la_OBJECTS = $(am_libdbusmenu_gtk_la_OBJECTS)
2025-AM_V_lt = $(am__v_lt_$(V))
2026-am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY))
2027+AM_V_lt = $(am__v_lt_@AM_V@)
2028+am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@)
2029 am__v_lt_0 = --silent
2030 libdbusmenu_gtk_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
2031 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
2032 $(libdbusmenu_gtk_la_CFLAGS) $(CFLAGS) \
2033 $(libdbusmenu_gtk_la_LDFLAGS) $(LDFLAGS) -o $@
2034 @USE_GTK3_FALSE@am_libdbusmenu_gtk_la_rpath = -rpath $(libdir)
2035-am__DEPENDENCIES_2 = ../libdbusmenu-glib/libdbusmenu-glib.la \
2036+am__DEPENDENCIES_2 = \
2037+ $(top_builddir)/libdbusmenu-glib/libdbusmenu-glib.la \
2038 $(am__DEPENDENCIES_1)
2039 libdbusmenu_gtk3_la_DEPENDENCIES = $(am__DEPENDENCIES_2)
2040 am__objects_1 = libdbusmenu_gtk3_la-client.lo \
2041@@ -144,21 +152,21 @@
2042 $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \
2043 $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
2044 $(AM_CFLAGS) $(CFLAGS)
2045-AM_V_CC = $(am__v_CC_$(V))
2046-am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY))
2047+AM_V_CC = $(am__v_CC_@AM_V@)
2048+am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@)
2049 am__v_CC_0 = @echo " CC " $@;
2050-AM_V_at = $(am__v_at_$(V))
2051-am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))
2052+AM_V_at = $(am__v_at_@AM_V@)
2053+am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
2054 am__v_at_0 = @
2055 CCLD = $(CC)
2056 LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
2057 $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
2058 $(AM_LDFLAGS) $(LDFLAGS) -o $@
2059-AM_V_CCLD = $(am__v_CCLD_$(V))
2060-am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY))
2061+AM_V_CCLD = $(am__v_CCLD_@AM_V@)
2062+am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@)
2063 am__v_CCLD_0 = @echo " CCLD " $@;
2064-AM_V_GEN = $(am__v_GEN_$(V))
2065-am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY))
2066+AM_V_GEN = $(am__v_GEN_@AM_V@)
2067+am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
2068 am__v_GEN_0 = @echo " GEN " $@;
2069 SOURCES = $(libdbusmenu_gtk_la_SOURCES) $(libdbusmenu_gtk3_la_SOURCES)
2070 DIST_SOURCES = $(libdbusmenu_gtk_la_SOURCES) \
2071@@ -402,7 +410,7 @@
2072 -DG_LOG_DOMAIN="\"LIBDBUSMENU-GTK\""
2073
2074 libdbusmenu_gtk_la_LIBADD = \
2075- ../libdbusmenu-glib/libdbusmenu-glib.la \
2076+ $(top_builddir)/libdbusmenu-glib/libdbusmenu-glib.la \
2077 $(DBUSMENUGTK_LIBS)
2078
2079
2080@@ -439,7 +447,9 @@
2081 @HAVE_INTROSPECTION_TRUE@ Dbusmenu-0.4
2082
2083 @HAVE_INTROSPECTION_TRUE@DbusmenuGtk_0_4_gir_CFLAGS = $(DBUSMENUGTK_CFLAGS) -I$(top_srcdir)
2084-@HAVE_INTROSPECTION_TRUE@DbusmenuGtk_0_4_gir_LIBS = libdbusmenu-gtk$(VER).la
2085+@HAVE_INTROSPECTION_TRUE@DbusmenuGtk_0_4_gir_LIBS = libdbusmenu-gtk$(VER).la \
2086+@HAVE_INTROSPECTION_TRUE@ $(top_builddir)/libdbusmenu-glib/libdbusmenu-glib.la
2087+
2088 @HAVE_INTROSPECTION_TRUE@DbusmenuGtk_0_4_gir_FILES = $(addprefix $(srcdir)/, $(introspection_sources))
2089 @HAVE_INTROSPECTION_TRUE@DbusmenuGtk_0_4_gir_NAMESPACE = DbusmenuGtk$(VER)
2090 @HAVE_INTROSPECTION_TRUE@DbusmenuGtk_0_4_gir_EXPORT_PACKAGES = dbusmenu-gtk$(VER)-0.4
2091@@ -487,6 +497,7 @@
2092 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
2093 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
2094 esac;
2095+$(top_srcdir)/Makefile.am.enum:
2096
2097 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
2098 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
2099@@ -531,9 +542,9 @@
2100 echo "rm -f \"$${dir}/so_locations\""; \
2101 rm -f "$${dir}/so_locations"; \
2102 done
2103-libdbusmenu-gtk.la: $(libdbusmenu_gtk_la_OBJECTS) $(libdbusmenu_gtk_la_DEPENDENCIES)
2104+libdbusmenu-gtk.la: $(libdbusmenu_gtk_la_OBJECTS) $(libdbusmenu_gtk_la_DEPENDENCIES) $(EXTRA_libdbusmenu_gtk_la_DEPENDENCIES)
2105 $(AM_V_CCLD)$(libdbusmenu_gtk_la_LINK) $(am_libdbusmenu_gtk_la_rpath) $(libdbusmenu_gtk_la_OBJECTS) $(libdbusmenu_gtk_la_LIBADD) $(LIBS)
2106-libdbusmenu-gtk3.la: $(libdbusmenu_gtk3_la_OBJECTS) $(libdbusmenu_gtk3_la_DEPENDENCIES)
2107+libdbusmenu-gtk3.la: $(libdbusmenu_gtk3_la_OBJECTS) $(libdbusmenu_gtk3_la_DEPENDENCIES) $(EXTRA_libdbusmenu_gtk3_la_DEPENDENCIES)
2108 $(AM_V_CCLD)$(libdbusmenu_gtk3_la_LINK) $(am_libdbusmenu_gtk3_la_rpath) $(libdbusmenu_gtk3_la_OBJECTS) $(libdbusmenu_gtk3_la_LIBADD) $(LIBS)
2109
2110 mostlyclean-compile:
2111@@ -558,122 +569,107 @@
2112 .c.o:
2113 @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
2114 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
2115-@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
2116-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
2117+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
2118 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2119-@am__fastdepCC_FALSE@ $(COMPILE) -c $<
2120+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c $<
2121
2122 .c.obj:
2123 @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
2124 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
2125-@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
2126-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
2127+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
2128 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2129-@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'`
2130+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c `$(CYGPATH_W) '$<'`
2131
2132 .c.lo:
2133 @am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
2134 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
2135-@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
2136-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
2137+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
2138 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2139-@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $<
2140+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $<
2141
2142 libdbusmenu_gtk_la-client.lo: client.c
2143 @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdbusmenu_gtk_la_CFLAGS) $(CFLAGS) -MT libdbusmenu_gtk_la-client.lo -MD -MP -MF $(DEPDIR)/libdbusmenu_gtk_la-client.Tpo -c -o libdbusmenu_gtk_la-client.lo `test -f 'client.c' || echo '$(srcdir)/'`client.c
2144 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libdbusmenu_gtk_la-client.Tpo $(DEPDIR)/libdbusmenu_gtk_la-client.Plo
2145-@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
2146-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='client.c' object='libdbusmenu_gtk_la-client.lo' libtool=yes @AMDEPBACKSLASH@
2147+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='client.c' object='libdbusmenu_gtk_la-client.lo' libtool=yes @AMDEPBACKSLASH@
2148 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2149-@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdbusmenu_gtk_la_CFLAGS) $(CFLAGS) -c -o libdbusmenu_gtk_la-client.lo `test -f 'client.c' || echo '$(srcdir)/'`client.c
2150+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdbusmenu_gtk_la_CFLAGS) $(CFLAGS) -c -o libdbusmenu_gtk_la-client.lo `test -f 'client.c' || echo '$(srcdir)/'`client.c
2151
2152 libdbusmenu_gtk_la-genericmenuitem.lo: genericmenuitem.c
2153 @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdbusmenu_gtk_la_CFLAGS) $(CFLAGS) -MT libdbusmenu_gtk_la-genericmenuitem.lo -MD -MP -MF $(DEPDIR)/libdbusmenu_gtk_la-genericmenuitem.Tpo -c -o libdbusmenu_gtk_la-genericmenuitem.lo `test -f 'genericmenuitem.c' || echo '$(srcdir)/'`genericmenuitem.c
2154 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libdbusmenu_gtk_la-genericmenuitem.Tpo $(DEPDIR)/libdbusmenu_gtk_la-genericmenuitem.Plo
2155-@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
2156-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='genericmenuitem.c' object='libdbusmenu_gtk_la-genericmenuitem.lo' libtool=yes @AMDEPBACKSLASH@
2157+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='genericmenuitem.c' object='libdbusmenu_gtk_la-genericmenuitem.lo' libtool=yes @AMDEPBACKSLASH@
2158 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2159-@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdbusmenu_gtk_la_CFLAGS) $(CFLAGS) -c -o libdbusmenu_gtk_la-genericmenuitem.lo `test -f 'genericmenuitem.c' || echo '$(srcdir)/'`genericmenuitem.c
2160+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdbusmenu_gtk_la_CFLAGS) $(CFLAGS) -c -o libdbusmenu_gtk_la-genericmenuitem.lo `test -f 'genericmenuitem.c' || echo '$(srcdir)/'`genericmenuitem.c
2161
2162 libdbusmenu_gtk_la-genericmenuitem-enum-types.lo: genericmenuitem-enum-types.c
2163 @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdbusmenu_gtk_la_CFLAGS) $(CFLAGS) -MT libdbusmenu_gtk_la-genericmenuitem-enum-types.lo -MD -MP -MF $(DEPDIR)/libdbusmenu_gtk_la-genericmenuitem-enum-types.Tpo -c -o libdbusmenu_gtk_la-genericmenuitem-enum-types.lo `test -f 'genericmenuitem-enum-types.c' || echo '$(srcdir)/'`genericmenuitem-enum-types.c
2164 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libdbusmenu_gtk_la-genericmenuitem-enum-types.Tpo $(DEPDIR)/libdbusmenu_gtk_la-genericmenuitem-enum-types.Plo
2165-@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
2166-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='genericmenuitem-enum-types.c' object='libdbusmenu_gtk_la-genericmenuitem-enum-types.lo' libtool=yes @AMDEPBACKSLASH@
2167+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='genericmenuitem-enum-types.c' object='libdbusmenu_gtk_la-genericmenuitem-enum-types.lo' libtool=yes @AMDEPBACKSLASH@
2168 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2169-@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdbusmenu_gtk_la_CFLAGS) $(CFLAGS) -c -o libdbusmenu_gtk_la-genericmenuitem-enum-types.lo `test -f 'genericmenuitem-enum-types.c' || echo '$(srcdir)/'`genericmenuitem-enum-types.c
2170+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdbusmenu_gtk_la_CFLAGS) $(CFLAGS) -c -o libdbusmenu_gtk_la-genericmenuitem-enum-types.lo `test -f 'genericmenuitem-enum-types.c' || echo '$(srcdir)/'`genericmenuitem-enum-types.c
2171
2172 libdbusmenu_gtk_la-menu.lo: menu.c
2173 @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdbusmenu_gtk_la_CFLAGS) $(CFLAGS) -MT libdbusmenu_gtk_la-menu.lo -MD -MP -MF $(DEPDIR)/libdbusmenu_gtk_la-menu.Tpo -c -o libdbusmenu_gtk_la-menu.lo `test -f 'menu.c' || echo '$(srcdir)/'`menu.c
2174 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libdbusmenu_gtk_la-menu.Tpo $(DEPDIR)/libdbusmenu_gtk_la-menu.Plo
2175-@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
2176-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='menu.c' object='libdbusmenu_gtk_la-menu.lo' libtool=yes @AMDEPBACKSLASH@
2177+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='menu.c' object='libdbusmenu_gtk_la-menu.lo' libtool=yes @AMDEPBACKSLASH@
2178 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2179-@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdbusmenu_gtk_la_CFLAGS) $(CFLAGS) -c -o libdbusmenu_gtk_la-menu.lo `test -f 'menu.c' || echo '$(srcdir)/'`menu.c
2180+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdbusmenu_gtk_la_CFLAGS) $(CFLAGS) -c -o libdbusmenu_gtk_la-menu.lo `test -f 'menu.c' || echo '$(srcdir)/'`menu.c
2181
2182 libdbusmenu_gtk_la-menuitem.lo: menuitem.c
2183 @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdbusmenu_gtk_la_CFLAGS) $(CFLAGS) -MT libdbusmenu_gtk_la-menuitem.lo -MD -MP -MF $(DEPDIR)/libdbusmenu_gtk_la-menuitem.Tpo -c -o libdbusmenu_gtk_la-menuitem.lo `test -f 'menuitem.c' || echo '$(srcdir)/'`menuitem.c
2184 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libdbusmenu_gtk_la-menuitem.Tpo $(DEPDIR)/libdbusmenu_gtk_la-menuitem.Plo
2185-@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
2186-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='menuitem.c' object='libdbusmenu_gtk_la-menuitem.lo' libtool=yes @AMDEPBACKSLASH@
2187+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='menuitem.c' object='libdbusmenu_gtk_la-menuitem.lo' libtool=yes @AMDEPBACKSLASH@
2188 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2189-@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdbusmenu_gtk_la_CFLAGS) $(CFLAGS) -c -o libdbusmenu_gtk_la-menuitem.lo `test -f 'menuitem.c' || echo '$(srcdir)/'`menuitem.c
2190+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdbusmenu_gtk_la_CFLAGS) $(CFLAGS) -c -o libdbusmenu_gtk_la-menuitem.lo `test -f 'menuitem.c' || echo '$(srcdir)/'`menuitem.c
2191
2192 libdbusmenu_gtk_la-parser.lo: parser.c
2193 @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdbusmenu_gtk_la_CFLAGS) $(CFLAGS) -MT libdbusmenu_gtk_la-parser.lo -MD -MP -MF $(DEPDIR)/libdbusmenu_gtk_la-parser.Tpo -c -o libdbusmenu_gtk_la-parser.lo `test -f 'parser.c' || echo '$(srcdir)/'`parser.c
2194 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libdbusmenu_gtk_la-parser.Tpo $(DEPDIR)/libdbusmenu_gtk_la-parser.Plo
2195-@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
2196-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='parser.c' object='libdbusmenu_gtk_la-parser.lo' libtool=yes @AMDEPBACKSLASH@
2197+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='parser.c' object='libdbusmenu_gtk_la-parser.lo' libtool=yes @AMDEPBACKSLASH@
2198 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2199-@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdbusmenu_gtk_la_CFLAGS) $(CFLAGS) -c -o libdbusmenu_gtk_la-parser.lo `test -f 'parser.c' || echo '$(srcdir)/'`parser.c
2200+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdbusmenu_gtk_la_CFLAGS) $(CFLAGS) -c -o libdbusmenu_gtk_la-parser.lo `test -f 'parser.c' || echo '$(srcdir)/'`parser.c
2201
2202 libdbusmenu_gtk3_la-client.lo: client.c
2203 @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdbusmenu_gtk3_la_CFLAGS) $(CFLAGS) -MT libdbusmenu_gtk3_la-client.lo -MD -MP -MF $(DEPDIR)/libdbusmenu_gtk3_la-client.Tpo -c -o libdbusmenu_gtk3_la-client.lo `test -f 'client.c' || echo '$(srcdir)/'`client.c
2204 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libdbusmenu_gtk3_la-client.Tpo $(DEPDIR)/libdbusmenu_gtk3_la-client.Plo
2205-@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
2206-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='client.c' object='libdbusmenu_gtk3_la-client.lo' libtool=yes @AMDEPBACKSLASH@
2207+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='client.c' object='libdbusmenu_gtk3_la-client.lo' libtool=yes @AMDEPBACKSLASH@
2208 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2209-@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdbusmenu_gtk3_la_CFLAGS) $(CFLAGS) -c -o libdbusmenu_gtk3_la-client.lo `test -f 'client.c' || echo '$(srcdir)/'`client.c
2210+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdbusmenu_gtk3_la_CFLAGS) $(CFLAGS) -c -o libdbusmenu_gtk3_la-client.lo `test -f 'client.c' || echo '$(srcdir)/'`client.c
2211
2212 libdbusmenu_gtk3_la-genericmenuitem.lo: genericmenuitem.c
2213 @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdbusmenu_gtk3_la_CFLAGS) $(CFLAGS) -MT libdbusmenu_gtk3_la-genericmenuitem.lo -MD -MP -MF $(DEPDIR)/libdbusmenu_gtk3_la-genericmenuitem.Tpo -c -o libdbusmenu_gtk3_la-genericmenuitem.lo `test -f 'genericmenuitem.c' || echo '$(srcdir)/'`genericmenuitem.c
2214 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libdbusmenu_gtk3_la-genericmenuitem.Tpo $(DEPDIR)/libdbusmenu_gtk3_la-genericmenuitem.Plo
2215-@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
2216-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='genericmenuitem.c' object='libdbusmenu_gtk3_la-genericmenuitem.lo' libtool=yes @AMDEPBACKSLASH@
2217+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='genericmenuitem.c' object='libdbusmenu_gtk3_la-genericmenuitem.lo' libtool=yes @AMDEPBACKSLASH@
2218 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2219-@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdbusmenu_gtk3_la_CFLAGS) $(CFLAGS) -c -o libdbusmenu_gtk3_la-genericmenuitem.lo `test -f 'genericmenuitem.c' || echo '$(srcdir)/'`genericmenuitem.c
2220+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdbusmenu_gtk3_la_CFLAGS) $(CFLAGS) -c -o libdbusmenu_gtk3_la-genericmenuitem.lo `test -f 'genericmenuitem.c' || echo '$(srcdir)/'`genericmenuitem.c
2221
2222 libdbusmenu_gtk3_la-genericmenuitem-enum-types.lo: genericmenuitem-enum-types.c
2223 @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdbusmenu_gtk3_la_CFLAGS) $(CFLAGS) -MT libdbusmenu_gtk3_la-genericmenuitem-enum-types.lo -MD -MP -MF $(DEPDIR)/libdbusmenu_gtk3_la-genericmenuitem-enum-types.Tpo -c -o libdbusmenu_gtk3_la-genericmenuitem-enum-types.lo `test -f 'genericmenuitem-enum-types.c' || echo '$(srcdir)/'`genericmenuitem-enum-types.c
2224 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libdbusmenu_gtk3_la-genericmenuitem-enum-types.Tpo $(DEPDIR)/libdbusmenu_gtk3_la-genericmenuitem-enum-types.Plo
2225-@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
2226-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='genericmenuitem-enum-types.c' object='libdbusmenu_gtk3_la-genericmenuitem-enum-types.lo' libtool=yes @AMDEPBACKSLASH@
2227+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='genericmenuitem-enum-types.c' object='libdbusmenu_gtk3_la-genericmenuitem-enum-types.lo' libtool=yes @AMDEPBACKSLASH@
2228 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2229-@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdbusmenu_gtk3_la_CFLAGS) $(CFLAGS) -c -o libdbusmenu_gtk3_la-genericmenuitem-enum-types.lo `test -f 'genericmenuitem-enum-types.c' || echo '$(srcdir)/'`genericmenuitem-enum-types.c
2230+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdbusmenu_gtk3_la_CFLAGS) $(CFLAGS) -c -o libdbusmenu_gtk3_la-genericmenuitem-enum-types.lo `test -f 'genericmenuitem-enum-types.c' || echo '$(srcdir)/'`genericmenuitem-enum-types.c
2231
2232 libdbusmenu_gtk3_la-menu.lo: menu.c
2233 @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdbusmenu_gtk3_la_CFLAGS) $(CFLAGS) -MT libdbusmenu_gtk3_la-menu.lo -MD -MP -MF $(DEPDIR)/libdbusmenu_gtk3_la-menu.Tpo -c -o libdbusmenu_gtk3_la-menu.lo `test -f 'menu.c' || echo '$(srcdir)/'`menu.c
2234 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libdbusmenu_gtk3_la-menu.Tpo $(DEPDIR)/libdbusmenu_gtk3_la-menu.Plo
2235-@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
2236-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='menu.c' object='libdbusmenu_gtk3_la-menu.lo' libtool=yes @AMDEPBACKSLASH@
2237+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='menu.c' object='libdbusmenu_gtk3_la-menu.lo' libtool=yes @AMDEPBACKSLASH@
2238 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2239-@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdbusmenu_gtk3_la_CFLAGS) $(CFLAGS) -c -o libdbusmenu_gtk3_la-menu.lo `test -f 'menu.c' || echo '$(srcdir)/'`menu.c
2240+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdbusmenu_gtk3_la_CFLAGS) $(CFLAGS) -c -o libdbusmenu_gtk3_la-menu.lo `test -f 'menu.c' || echo '$(srcdir)/'`menu.c
2241
2242 libdbusmenu_gtk3_la-menuitem.lo: menuitem.c
2243 @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdbusmenu_gtk3_la_CFLAGS) $(CFLAGS) -MT libdbusmenu_gtk3_la-menuitem.lo -MD -MP -MF $(DEPDIR)/libdbusmenu_gtk3_la-menuitem.Tpo -c -o libdbusmenu_gtk3_la-menuitem.lo `test -f 'menuitem.c' || echo '$(srcdir)/'`menuitem.c
2244 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libdbusmenu_gtk3_la-menuitem.Tpo $(DEPDIR)/libdbusmenu_gtk3_la-menuitem.Plo
2245-@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
2246-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='menuitem.c' object='libdbusmenu_gtk3_la-menuitem.lo' libtool=yes @AMDEPBACKSLASH@
2247+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='menuitem.c' object='libdbusmenu_gtk3_la-menuitem.lo' libtool=yes @AMDEPBACKSLASH@
2248 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2249-@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdbusmenu_gtk3_la_CFLAGS) $(CFLAGS) -c -o libdbusmenu_gtk3_la-menuitem.lo `test -f 'menuitem.c' || echo '$(srcdir)/'`menuitem.c
2250+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdbusmenu_gtk3_la_CFLAGS) $(CFLAGS) -c -o libdbusmenu_gtk3_la-menuitem.lo `test -f 'menuitem.c' || echo '$(srcdir)/'`menuitem.c
2251
2252 libdbusmenu_gtk3_la-parser.lo: parser.c
2253 @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdbusmenu_gtk3_la_CFLAGS) $(CFLAGS) -MT libdbusmenu_gtk3_la-parser.lo -MD -MP -MF $(DEPDIR)/libdbusmenu_gtk3_la-parser.Tpo -c -o libdbusmenu_gtk3_la-parser.lo `test -f 'parser.c' || echo '$(srcdir)/'`parser.c
2254 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libdbusmenu_gtk3_la-parser.Tpo $(DEPDIR)/libdbusmenu_gtk3_la-parser.Plo
2255-@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
2256-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='parser.c' object='libdbusmenu_gtk3_la-parser.lo' libtool=yes @AMDEPBACKSLASH@
2257+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='parser.c' object='libdbusmenu_gtk3_la-parser.lo' libtool=yes @AMDEPBACKSLASH@
2258 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2259-@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdbusmenu_gtk3_la_CFLAGS) $(CFLAGS) -c -o libdbusmenu_gtk3_la-parser.lo `test -f 'parser.c' || echo '$(srcdir)/'`parser.c
2260+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdbusmenu_gtk3_la_CFLAGS) $(CFLAGS) -c -o libdbusmenu_gtk3_la-parser.lo `test -f 'parser.c' || echo '$(srcdir)/'`parser.c
2261
2262 mostlyclean-libtool:
2263 -rm -f *.lo
2264@@ -697,9 +693,7 @@
2265 @$(NORMAL_UNINSTALL)
2266 @list='$(gir_DATA)'; test -n "$(girdir)" || list=; \
2267 files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
2268- test -n "$$files" || exit 0; \
2269- echo " ( cd '$(DESTDIR)$(girdir)' && rm -f" $$files ")"; \
2270- cd "$(DESTDIR)$(girdir)" && rm -f $$files
2271+ dir='$(DESTDIR)$(girdir)'; $(am__uninstall_files_from_dir)
2272 install-pkgconfigDATA: $(pkgconfig_DATA)
2273 @$(NORMAL_INSTALL)
2274 test -z "$(pkgconfigdir)" || $(MKDIR_P) "$(DESTDIR)$(pkgconfigdir)"
2275@@ -717,9 +711,7 @@
2276 @$(NORMAL_UNINSTALL)
2277 @list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \
2278 files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
2279- test -n "$$files" || exit 0; \
2280- echo " ( cd '$(DESTDIR)$(pkgconfigdir)' && rm -f" $$files ")"; \
2281- cd "$(DESTDIR)$(pkgconfigdir)" && rm -f $$files
2282+ dir='$(DESTDIR)$(pkgconfigdir)'; $(am__uninstall_files_from_dir)
2283 install-typelibDATA: $(typelib_DATA)
2284 @$(NORMAL_INSTALL)
2285 test -z "$(typelibdir)" || $(MKDIR_P) "$(DESTDIR)$(typelibdir)"
2286@@ -737,9 +729,7 @@
2287 @$(NORMAL_UNINSTALL)
2288 @list='$(typelib_DATA)'; test -n "$(typelibdir)" || list=; \
2289 files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
2290- test -n "$$files" || exit 0; \
2291- echo " ( cd '$(DESTDIR)$(typelibdir)' && rm -f" $$files ")"; \
2292- cd "$(DESTDIR)$(typelibdir)" && rm -f $$files
2293+ dir='$(DESTDIR)$(typelibdir)'; $(am__uninstall_files_from_dir)
2294 install-vapiDATA: $(vapi_DATA)
2295 @$(NORMAL_INSTALL)
2296 test -z "$(vapidir)" || $(MKDIR_P) "$(DESTDIR)$(vapidir)"
2297@@ -757,9 +747,7 @@
2298 @$(NORMAL_UNINSTALL)
2299 @list='$(vapi_DATA)'; test -n "$(vapidir)" || list=; \
2300 files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
2301- test -n "$$files" || exit 0; \
2302- echo " ( cd '$(DESTDIR)$(vapidir)' && rm -f" $$files ")"; \
2303- cd "$(DESTDIR)$(vapidir)" && rm -f $$files
2304+ dir='$(DESTDIR)$(vapidir)'; $(am__uninstall_files_from_dir)
2305 install-libdbusmenu_gtk3includeHEADERS: $(libdbusmenu_gtk3include_HEADERS)
2306 @$(NORMAL_INSTALL)
2307 test -z "$(libdbusmenu_gtk3includedir)" || $(MKDIR_P) "$(DESTDIR)$(libdbusmenu_gtk3includedir)"
2308@@ -777,9 +765,7 @@
2309 @$(NORMAL_UNINSTALL)
2310 @list='$(libdbusmenu_gtk3include_HEADERS)'; test -n "$(libdbusmenu_gtk3includedir)" || list=; \
2311 files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
2312- test -n "$$files" || exit 0; \
2313- echo " ( cd '$(DESTDIR)$(libdbusmenu_gtk3includedir)' && rm -f" $$files ")"; \
2314- cd "$(DESTDIR)$(libdbusmenu_gtk3includedir)" && rm -f $$files
2315+ dir='$(DESTDIR)$(libdbusmenu_gtk3includedir)'; $(am__uninstall_files_from_dir)
2316 install-libdbusmenu_gtkincludeHEADERS: $(libdbusmenu_gtkinclude_HEADERS)
2317 @$(NORMAL_INSTALL)
2318 test -z "$(libdbusmenu_gtkincludedir)" || $(MKDIR_P) "$(DESTDIR)$(libdbusmenu_gtkincludedir)"
2319@@ -797,9 +783,7 @@
2320 @$(NORMAL_UNINSTALL)
2321 @list='$(libdbusmenu_gtkinclude_HEADERS)'; test -n "$(libdbusmenu_gtkincludedir)" || list=; \
2322 files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
2323- test -n "$$files" || exit 0; \
2324- echo " ( cd '$(DESTDIR)$(libdbusmenu_gtkincludedir)' && rm -f" $$files ")"; \
2325- cd "$(DESTDIR)$(libdbusmenu_gtkincludedir)" && rm -f $$files
2326+ dir='$(DESTDIR)$(libdbusmenu_gtkincludedir)'; $(am__uninstall_files_from_dir)
2327
2328 ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
2329 list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
2330@@ -902,10 +886,15 @@
2331
2332 installcheck: installcheck-am
2333 install-strip:
2334- $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
2335- install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
2336- `test -z '$(STRIP)' || \
2337- echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
2338+ if test -z '$(STRIP)'; then \
2339+ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
2340+ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
2341+ install; \
2342+ else \
2343+ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
2344+ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
2345+ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
2346+ fi
2347 mostlyclean-generic:
2348
2349 clean-generic:
2350
2351=== modified file 'libdbusmenu-gtk/client.c'
2352--- libdbusmenu-gtk/client.c 2012-01-31 05:25:37 +0000
2353+++ libdbusmenu-gtk/client.c 2012-02-23 06:13:18 +0000
2354@@ -725,6 +725,30 @@
2355 return;
2356 }
2357
2358+/* Process the accessible description */
2359+static void
2360+process_a11y_desc (DbusmenuMenuitem * mi, GtkMenuItem * gmi, GVariant * variant, DbusmenuGtkClient * gtkclient)
2361+{
2362+ AtkObject * aobj = gtk_widget_get_accessible(GTK_WIDGET(gmi));
2363+
2364+ if (aobj == NULL) {
2365+ return;
2366+ }
2367+
2368+ const gchar * setname = NULL;
2369+
2370+ if (variant != NULL) {
2371+ setname = g_variant_get_string(variant, NULL);
2372+ }
2373+
2374+ if (setname == NULL) {
2375+ setname = "";
2376+ }
2377+
2378+ atk_object_set_name(aobj, setname);
2379+ return;
2380+}
2381+
2382 /* Whenever we have a property change on a DbusmenuMenuitem
2383 we need to be responsive to that. */
2384 static void
2385@@ -747,8 +771,7 @@
2386 } else if (!g_strcmp0(prop, DBUSMENU_MENUITEM_PROP_DISPOSITION)) {
2387 process_disposition(mi, gmi, variant, gtkclient);
2388 } else if (!g_strcmp0(prop, DBUSMENU_MENUITEM_PROP_ACCESSIBLE_DESC)) {
2389- atk_object_set_name(gtk_widget_get_accessible(GTK_WIDGET(gmi)), variant == NULL ? NULL :
2390- g_variant_get_string(variant, NULL));
2391+ process_a11y_desc(mi, gmi, variant, gtkclient);
2392 }
2393
2394 return;
2395@@ -894,6 +917,7 @@
2396 process_toggle_state(item, gmi, dbusmenu_menuitem_property_get_variant(item, DBUSMENU_MENUITEM_PROP_TOGGLE_STATE));
2397 process_submenu(item, gmi, dbusmenu_menuitem_property_get_variant(item, DBUSMENU_MENUITEM_PROP_CHILD_DISPLAY), client);
2398 process_disposition(item, gmi, dbusmenu_menuitem_property_get_variant(item, DBUSMENU_MENUITEM_PROP_DISPOSITION), client);
2399+ process_a11y_desc(item, gmi, dbusmenu_menuitem_property_get_variant(item, DBUSMENU_MENUITEM_PROP_ACCESSIBLE_DESC), client);
2400 refresh_shortcut(client, item);
2401
2402 const gchar * a11y_desc = dbusmenu_menuitem_property_get(item, DBUSMENU_MENUITEM_PROP_ACCESSIBLE_DESC);
2403@@ -1128,12 +1152,7 @@
2404 return;
2405 }
2406
2407- const gchar * value = NULL;
2408- if (variant != NULL) {
2409- value = g_variant_get_string(variant, NULL);
2410- }
2411-
2412- if (value == NULL || value[0] == '\0') {
2413+ if (variant == NULL) {
2414 /* This means that we're unsetting a value. */
2415 /* Try to use the other one */
2416 if (g_strcmp0(property, DBUSMENU_MENUITEM_PROP_ICON_NAME)) {
2417
2418=== modified file 'libdbusmenu-gtk/genericmenuitem.c'
2419--- libdbusmenu-gtk/genericmenuitem.c 2012-01-31 05:25:37 +0000
2420+++ libdbusmenu-gtk/genericmenuitem.c 2012-02-23 06:13:18 +0000
2421@@ -43,6 +43,7 @@
2422 GenericmenuitemCheckType check_type;
2423 GenericmenuitemState state;
2424 GenericmenuitemDisposition disposition;
2425+ gchar * label_text;
2426 };
2427
2428 /* Private macro */
2429@@ -106,6 +107,7 @@
2430 self->priv->check_type = GENERICMENUITEM_CHECK_TYPE_NONE;
2431 self->priv->state = GENERICMENUITEM_STATE_UNCHECKED;
2432 self->priv->disposition = GENERICMENUITEM_DISPOSITION_NORMAL;
2433+ self->priv->label_text = NULL;
2434
2435 return;
2436 }
2437@@ -123,6 +125,8 @@
2438 static void
2439 genericmenuitem_finalize (GObject *object)
2440 {
2441+ Genericmenuitem * self = GENERICMENUITEM(object);
2442+ g_free(self->priv->label_text);
2443
2444 G_OBJECT_CLASS (genericmenuitem_parent_class)->finalize (object);
2445 return;
2446@@ -205,6 +209,12 @@
2447 {
2448 if (in_label == NULL) return;
2449
2450+ Genericmenuitem * item = GENERICMENUITEM(menu_item);
2451+ if (in_label != item->priv->label_text) {
2452+ g_free(item->priv->label_text);
2453+ item->priv->label_text = g_strdup(in_label);
2454+ }
2455+
2456 /* Build a label that might include the colors of the disposition
2457 so that it gets rendered in the menuitem. */
2458 gchar * local_label = NULL;
2459@@ -308,25 +318,9 @@
2460 static const gchar *
2461 get_label (GtkMenuItem * menu_item)
2462 {
2463- GtkWidget * child = gtk_bin_get_child(GTK_BIN(menu_item));
2464- GtkLabel * labelw = NULL;
2465-
2466- /* Try to find if we have a label already */
2467- if (child != NULL) {
2468- if (GTK_IS_LABEL(child)) {
2469- /* We've got a label, let's update it. */
2470- labelw = GTK_LABEL(child);
2471- } else if (GTK_IS_BOX(child)) {
2472- /* Look for the label in the box */
2473- gtk_container_foreach(GTK_CONTAINER(child), set_label_helper, &labelw);
2474- }
2475- }
2476-
2477- if (labelw != NULL) {
2478- return gtk_label_get_label(labelw);
2479- }
2480-
2481- return NULL;
2482+ Genericmenuitem * item = GENERICMENUITEM(menu_item);
2483+
2484+ return item->priv->label_text;
2485 }
2486
2487 /* Make sure we don't toggle when there is an
2488
2489=== modified file 'libdbusmenu-gtk/parser.c'
2490--- libdbusmenu-gtk/parser.c 2012-01-31 05:25:37 +0000
2491+++ libdbusmenu-gtk/parser.c 2012-02-23 06:13:18 +0000
2492@@ -26,6 +26,8 @@
2493 <http://www.gnu.org/licenses/>
2494 */
2495
2496+#include <atk/atk.h>
2497+
2498 #include "parser.h"
2499 #include "menuitem.h"
2500 #include "client.h"
2501@@ -41,6 +43,7 @@
2502 GtkWidget *widget;
2503 GtkWidget *shell;
2504 GtkWidget *image;
2505+ AtkObject *accessible;
2506 } ParserData;
2507
2508 typedef struct _RecurseContext
2509@@ -67,6 +70,9 @@
2510 static void action_notify_cb (GtkAction * action,
2511 GParamSpec * pspec,
2512 gpointer data);
2513+static void a11y_name_notify_cb (AtkObject * accessible,
2514+ GParamSpec * pspec,
2515+ gpointer data);
2516 static void item_inserted_cb (GtkContainer * menu,
2517 GtkWidget * widget,
2518 #ifdef HAVE_GTK3
2519@@ -200,6 +206,12 @@
2520 g_object_remove_weak_pointer(G_OBJECT(pdata->image), (gpointer*)&pdata->image);
2521 }
2522
2523+ if (pdata != NULL && pdata->accessible != NULL) {
2524+ g_signal_handlers_disconnect_matched(pdata->accessible, (GSignalMatchType)G_SIGNAL_MATCH_FUNC,
2525+ 0, 0, NULL, G_CALLBACK(a11y_name_notify_cb), NULL);
2526+ g_object_remove_weak_pointer(G_OBJECT(pdata->accessible), (gpointer*)&pdata->accessible);
2527+ }
2528+
2529 g_free(pdata);
2530
2531 return;
2532@@ -415,8 +427,11 @@
2533
2534 /* Oops, let's tell our parents about us */
2535 if (peek == NULL) {
2536- if (dbusmenu_menuitem_get_parent(thisitem) != NULL) {
2537- dbusmenu_menuitem_unparent(thisitem);
2538+ g_object_ref(thisitem);
2539+
2540+ DbusmenuMenuitem * parent = dbusmenu_menuitem_get_parent(thisitem);
2541+ if (parent != NULL) {
2542+ dbusmenu_menuitem_child_delete(parent, thisitem);
2543 }
2544
2545 gint pos = get_child_position (widget);
2546@@ -427,6 +442,8 @@
2547 else
2548 dbusmenu_menuitem_child_append (recurse->parent,
2549 thisitem);
2550+
2551+ g_object_unref(thisitem);
2552 }
2553 }
2554
2555@@ -572,7 +589,7 @@
2556 // Sometimes, an app will directly find and modify the label
2557 // (like empathy), so watch the label especially for that.
2558 gchar * text = sanitize_label (GTK_LABEL (label));
2559- dbusmenu_menuitem_property_set (mi, "label", text);
2560+ dbusmenu_menuitem_property_set (mi, DBUSMENU_MENUITEM_PROP_LABEL, text);
2561 g_free (text);
2562
2563 pdata->label = label;
2564@@ -582,6 +599,27 @@
2565 mi);
2566 g_object_add_weak_pointer(G_OBJECT (label), (gpointer*)&pdata->label);
2567
2568+ AtkObject *accessible = gtk_widget_get_accessible (widget);
2569+ if (accessible)
2570+ {
2571+ // Getting the accessible name of the Atk object retrieves the text
2572+ // of the menu item label, unless the application has set an alternate
2573+ // accessible name.
2574+ const gchar * label_text = gtk_label_get_text (GTK_LABEL (label));
2575+ const gchar * a11y_name = atk_object_get_name (accessible);
2576+ if (g_strcmp0 (a11y_name, label_text))
2577+ dbusmenu_menuitem_property_set (mi, DBUSMENU_MENUITEM_PROP_ACCESSIBLE_DESC, a11y_name);
2578+
2579+ // An application may set an alternate accessible name in the future,
2580+ // so we had better watch out for it.
2581+ pdata->accessible = accessible;
2582+ g_signal_connect (G_OBJECT (accessible),
2583+ "notify::accessible-name",
2584+ G_CALLBACK (a11y_name_notify_cb),
2585+ mi);
2586+ g_object_add_weak_pointer(G_OBJECT (accessible), (gpointer*)&pdata->accessible);
2587+ }
2588+
2589 if (GTK_IS_ACTIVATABLE (widget))
2590 {
2591 GtkActivatable *activatable = GTK_ACTIVATABLE (widget);
2592@@ -948,6 +986,31 @@
2593 }
2594
2595 static void
2596+a11y_name_notify_cb (AtkObject *accessible,
2597+ GParamSpec *pspec,
2598+ gpointer data)
2599+{
2600+ DbusmenuMenuitem *item = (DbusmenuMenuitem *)data;
2601+ GtkWidget *widget = gtk_accessible_get_widget (GTK_ACCESSIBLE (accessible));
2602+ GtkWidget *label = find_menu_label (widget);
2603+ const gchar *label_text = gtk_label_get_text (GTK_LABEL (label));
2604+ const gchar *name = atk_object_get_name (accessible);
2605+
2606+ /* If an application sets the accessible name to NULL, then a subsequent
2607+ * call to get the accessible name from the Atk object should return the same
2608+ * string as the text of the menu item label, in which case, we want to clear
2609+ * the accessible description property of the dbusmenu item.
2610+ */
2611+ if (pspec->name == g_intern_static_string ("accessible-name"))
2612+ {
2613+ if (!g_strcmp0 (name, label_text))
2614+ dbusmenu_menuitem_property_set (item, DBUSMENU_MENUITEM_PROP_ACCESSIBLE_DESC, NULL);
2615+ else
2616+ dbusmenu_menuitem_property_set (item, DBUSMENU_MENUITEM_PROP_ACCESSIBLE_DESC, name);
2617+ }
2618+}
2619+
2620+static void
2621 item_activated (DbusmenuMenuitem *item, guint timestamp, gpointer user_data)
2622 {
2623 GtkWidget *child;
2624
2625=== modified file 'tests/Makefile.am'
2626--- tests/Makefile.am 2012-01-31 04:42:59 +0000
2627+++ tests/Makefile.am 2012-02-23 06:13:18 +0000
2628@@ -25,8 +25,10 @@
2629 test-gtk-label \
2630 test-gtk-shortcut \
2631 test-gtk-reorder \
2632- test-gtk-submenu \
2633 test-gtk-parser-test
2634+# Not working with GTK3 and a critical grab that is in
2635+# the GTK3 code.
2636+# test-gtk-submenu
2637 endif
2638
2639 # The Python test only work on the system copy of
2640@@ -135,6 +137,8 @@
2641
2642 test-glib-layout: test-glib-layout-client test-glib-layout-server Makefile.am
2643 @echo "#!/bin/bash" > $@
2644+ @echo export UBUNTU_MENUPROXY="" >> $@
2645+ @echo export G_DEBUG=fatal_criticals >> $@
2646 @echo $(DBUS_RUNNER) --task ./test-glib-layout-client --task-name Client --task ./test-glib-layout-server --task-name Server --ignore-return >> $@
2647 @chmod +x $@
2648
2649@@ -168,6 +172,8 @@
2650
2651 test-glib-events: test-glib-events-client test-glib-events-server Makefile.am
2652 @echo "#!/bin/bash" > $@
2653+ @echo export UBUNTU_MENUPROXY="" >> $@
2654+ @echo export G_DEBUG=fatal_criticals >> $@
2655 @echo $(DBUS_RUNNER) --task ./test-glib-events-client --task-name Client --task ./test-glib-events-server --task-name Server --ignore-return >> $@
2656 @chmod +x $@
2657
2658@@ -199,6 +205,8 @@
2659
2660 test-json: test-json-client test-json-server Makefile.am
2661 @echo "#!/bin/bash" > $@
2662+ @echo export UBUNTU_MENUPROXY="" >> $@
2663+ @echo export G_DEBUG=fatal_criticals >> $@
2664 @echo $(XVFB_RUN) >> $@
2665 @echo $(DBUS_RUNNER) --task ./test-json-client --task-name Client --parameter $(top_builddir)/tools/dbusmenu-dumper --parameter test-json-01.output.json --ignore-return --task ./test-json-server --task-name Server --parameter $(srcdir)/test-json-01.json --ignore-return >> $@
2666 @echo diff $(srcdir)/test-json-01.json test-json-01.output.json \> /dev/null >> $@
2667@@ -240,6 +248,11 @@
2668
2669 test-glib-submenu: test-glib-submenu-client test-glib-submenu-server Makefile.am
2670 @echo "#!/bin/bash" > $@
2671+ @echo export UBUNTU_MENUPROXY="" >> $@
2672+# Removing the check for criticals here as there's one coming from GTK
2673+# in the grabbing code on GTK3. Since we can't add events to the stack
2674+# we can't remove this error from getting thrown :-(
2675+# @echo export G_DEBUG=fatal_criticals >> $@
2676 @echo $(DBUS_RUNNER) --task ./test-glib-submenu-client --task-name Client --task ./test-glib-submenu-server --task-name Server --ignore-return >> $@
2677 @chmod +x $@
2678
2679@@ -275,6 +288,8 @@
2680
2681 test-glib-objects-test: test-glib-objects Makefile.am
2682 @echo "#!/bin/bash" > $@
2683+ @echo export UBUNTU_MENUPROXY="" >> $@
2684+ @echo export G_DEBUG=fatal_criticals >> $@
2685 @echo $(DBUS_RUNNER) --task gtester --task-name test --parameter --verbose --parameter -k --parameter -o --parameter $(OBJECT_XML_REPORT) --parameter ./test-glib-objects >> $@
2686 @chmod +x $@
2687
2688@@ -297,6 +312,8 @@
2689
2690 test-glib-properties: test-glib-properties-client test-glib-properties-server Makefile.am
2691 @echo "#!/bin/bash" > $@
2692+ @echo export UBUNTU_MENUPROXY="" >> $@
2693+ @echo export G_DEBUG=fatal_criticals >> $@
2694 @echo $(DBUS_RUNNER) --task ./test-glib-properties-client --task-name Client --task ./test-glib-properties-server --task-name Server --ignore-return >> $@
2695 @chmod +x $@
2696
2697@@ -330,6 +347,8 @@
2698
2699 test-glib-proxy: test-glib-proxy-client test-glib-proxy-server test-glib-proxy-proxy Makefile.am
2700 @echo "#!/bin/bash" > $@
2701+ @echo export UBUNTU_MENUPROXY="" >> $@
2702+ @echo export G_DEBUG=fatal_criticals >> $@
2703 @echo $(DBUS_RUNNER) --task ./test-glib-proxy-client --task-name Client --task ./test-glib-proxy-server --task-name Server --ignore-return \\ >> $@
2704 @echo --task ./test-glib-proxy-proxy --parameter test.proxy.first_proxy --parameter test.proxy.second_proxy --task-name Proxy01 --ignore-return \\ >> $@
2705 @echo --task ./test-glib-proxy-proxy --parameter test.proxy.second_proxy --parameter test.proxy.third_proxy --task-name Proxy02 --ignore-return \\ >> $@
2706@@ -399,6 +418,8 @@
2707
2708 test-gtk-objects-test: test-gtk-objects Makefile.am
2709 @echo "#!/bin/bash" > $@
2710+ @echo export UBUNTU_MENUPROXY="" >> $@
2711+ @echo export G_DEBUG=fatal_criticals >> $@
2712 @echo $(XVFB_RUN) >> $@
2713 @echo $(DBUS_RUNNER) --task gtester --task-name test --parameter --verbose --parameter -k --parameter -o --parameter $(GTK_OBJECT_XML_REPORT) --parameter ./test-gtk-objects >> $@
2714 @chmod +x $@
2715@@ -429,6 +450,8 @@
2716
2717 test-gtk-parser-test: test-gtk-parser Makefile.am
2718 @echo "#!/bin/bash" > $@
2719+ @echo export UBUNTU_MENUPROXY="" >> $@
2720+ @echo export G_DEBUG=fatal_criticals >> $@
2721 @echo $(XVFB_RUN) >> $@
2722 @echo gtester --verbose -k -o $(GTK_PARSER_XML_REPORT) ./test-gtk-parser >> $@
2723 @chmod +x $@
2724@@ -457,6 +480,8 @@
2725
2726 test-gtk-label: test-gtk-label-client test-gtk-label-server test-gtk-label.json Makefile.am
2727 @echo "#!/bin/bash" > $@
2728+ @echo export UBUNTU_MENUPROXY="" >> $@
2729+ @echo export G_DEBUG=fatal_criticals >> $@
2730 @echo $(XVFB_RUN) >> $@
2731 @echo $(DBUS_RUNNER) --task ./test-gtk-label-client --task-name Client --task ./test-gtk-label-server --parameter $(srcdir)/test-gtk-label.json --task-name Server --ignore-return >> $@
2732 @chmod +x $@
2733@@ -498,6 +523,8 @@
2734
2735 test-gtk-shortcut: test-gtk-shortcut-client test-gtk-shortcut-server Makefile.am
2736 @echo "#!/bin/bash" > $@
2737+ @echo export UBUNTU_MENUPROXY="" >> $@
2738+ @echo export G_DEBUG=fatal_criticals >> $@
2739 @echo $(XVFB_RUN) >> $@
2740 @echo $(DBUS_RUNNER) --task ./test-gtk-shortcut-client --task-name Client --task ./test-gtk-shortcut-server --task-name Server --ignore-return >> $@
2741 @chmod +x $@
2742@@ -538,6 +565,8 @@
2743
2744 test-gtk-shortcut-python: test-gtk-shortcut-server test-gtk-shortcut-client.py Makefile.am
2745 @echo "#!/bin/bash" > $@
2746+ @echo export UBUNTU_MENUPROXY="" >> $@
2747+ @echo export G_DEBUG=fatal_criticals >> $@
2748 @echo $(XVFB_RUN) >> $@
2749 @echo $(DBUS_RUNNER) --task $(srcdir)/test-gtk-shortcut-client.py --task-name Client --task ./test-gtk-shortcut-server --task-name Server --ignore-return >> $@
2750 @chmod +x $@
2751@@ -551,6 +580,8 @@
2752
2753 test-gtk-reorder: test-gtk-label-client test-gtk-reorder-server Makefile.am
2754 @echo "#!/bin/bash" > $@
2755+ @echo export UBUNTU_MENUPROXY="" >> $@
2756+ @echo export G_DEBUG=fatal_criticals >> $@
2757 @echo $(XVFB_RUN) >> $@
2758 @echo $(DBUS_RUNNER) --task ./test-gtk-label-client --task-name Client --task ./test-gtk-reorder-server --parameter $(srcdir)/test-gtk-label.json --task-name Server --ignore-return >> $@
2759 @chmod +x $@
2760@@ -576,6 +607,8 @@
2761
2762 test-gtk-submenu: test-gtk-submenu-client test-gtk-submenu-server Makefile.am
2763 @echo "#!/bin/bash" > $@
2764+ @echo export UBUNTU_MENUPROXY="" >> $@
2765+ @echo export G_DEBUG=fatal_criticals >> $@
2766 @echo $(XVFB_RUN) >> $@
2767 @echo $(DBUS_RUNNER) --task ./test-gtk-submenu-client --task-name Client --task ./test-gtk-submenu-server --task-name Server --ignore-return >> $@
2768 @chmod +x $@
2769@@ -616,6 +649,8 @@
2770
2771 test-mago: test-gtk-label-client test-gtk-label-server $(srcdir)/dbusmenu-gtk/mago_tests/dbusmenu.xml Makefile.am
2772 @echo "#!/bin/bash" > $@
2773+ @echo export UBUNTU_MENUPROXY="" >> $@
2774+ @echo export G_DEBUG=fatal_criticals >> $@
2775 @echo $(XVFB_RUN) >> $@
2776 @echo cd $(srcdir)/dbusmenu-gtk >> $@
2777 @echo /usr/lib/at-spi/at-spi-registryd \& >> $@
2778
2779=== modified file 'tests/Makefile.in'
2780--- tests/Makefile.in 2012-01-31 05:25:37 +0000
2781+++ tests/Makefile.in 2012-02-23 06:13:18 +0000
2782@@ -1,9 +1,9 @@
2783-# Makefile.in generated by automake 1.11.1 from Makefile.am.
2784+# Makefile.in generated by automake 1.11.3 from Makefile.am.
2785 # @configure_input@
2786
2787 # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
2788-# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation,
2789-# Inc.
2790+# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software
2791+# Foundation, Inc.
2792 # This Makefile.in is free software; the Free Software Foundation
2793 # gives unlimited permission to copy and/or distribute it,
2794 # with or without modifications, as long as this notice is preserved.
2795@@ -48,7 +48,6 @@
2796 @WANT_LIBDBUSMENUGTK_TRUE@ test-gtk-label \
2797 @WANT_LIBDBUSMENUGTK_TRUE@ test-gtk-shortcut \
2798 @WANT_LIBDBUSMENUGTK_TRUE@ test-gtk-reorder \
2799-@WANT_LIBDBUSMENUGTK_TRUE@ test-gtk-submenu \
2800 @WANT_LIBDBUSMENUGTK_TRUE@ test-gtk-parser-test
2801
2802 check_PROGRAMS = glib-server-nomenu$(EXEEXT) \
2803@@ -117,6 +116,12 @@
2804 am__base_list = \
2805 sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
2806 sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
2807+am__uninstall_files_from_dir = { \
2808+ test -z "$$files" \
2809+ || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
2810+ || { echo " ( cd '$$dir' && rm -f" $$files ")"; \
2811+ $(am__cd) "$$dir" && rm -f $$files; }; \
2812+ }
2813 am__installdirs = "$(DESTDIR)$(libdir)" "$(DESTDIR)$(examplesdir)" \
2814 "$(DESTDIR)$(jsondir)" "$(DESTDIR)$(pkgconfigdir)" \
2815 "$(DESTDIR)$(libdbusmenu_jsonloaderincludedir)"
2816@@ -129,8 +134,8 @@
2817 libdbusmenu_jsonloader_la-json-loader.lo
2818 libdbusmenu_jsonloader_la_OBJECTS = \
2819 $(am_libdbusmenu_jsonloader_la_OBJECTS)
2820-AM_V_lt = $(am__v_lt_$(V))
2821-am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY))
2822+AM_V_lt = $(am__v_lt_@AM_V@)
2823+am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@)
2824 am__v_lt_0 = --silent
2825 libdbusmenu_jsonloader_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
2826 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
2827@@ -415,21 +420,21 @@
2828 $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \
2829 $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
2830 $(AM_CFLAGS) $(CFLAGS)
2831-AM_V_CC = $(am__v_CC_$(V))
2832-am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY))
2833+AM_V_CC = $(am__v_CC_@AM_V@)
2834+am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@)
2835 am__v_CC_0 = @echo " CC " $@;
2836-AM_V_at = $(am__v_at_$(V))
2837-am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))
2838+AM_V_at = $(am__v_at_@AM_V@)
2839+am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
2840 am__v_at_0 = @
2841 CCLD = $(CC)
2842 LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
2843 $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
2844 $(AM_LDFLAGS) $(LDFLAGS) -o $@
2845-AM_V_CCLD = $(am__v_CCLD_$(V))
2846-am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY))
2847+AM_V_CCLD = $(am__v_CCLD_@AM_V@)
2848+am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@)
2849 am__v_CCLD_0 = @echo " CCLD " $@;
2850-AM_V_GEN = $(am__v_GEN_$(V))
2851-am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY))
2852+AM_V_GEN = $(am__v_GEN_@AM_V@)
2853+am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
2854 am__v_GEN_0 = @echo " GEN " $@;
2855 SOURCES = $(libdbusmenu_jsonloader_la_SOURCES) \
2856 $(glib_server_nomenu_SOURCES) \
2857@@ -683,6 +688,9 @@
2858 dbusmenu-gtk/mago_tests/data/static.json \
2859 dbusmenu-gtk/mago_tests/data/test-gtk-label.json \
2860 test-json-01.json
2861+# Not working with GTK3 and a critical grab that is in
2862+# the GTK3 code.
2863+# test-gtk-submenu
2864
2865 # The Python test only work on the system copy of
2866 # dbusmenu, so while they can be usefule they're not
2867@@ -1163,7 +1171,7 @@
2868 echo "rm -f \"$${dir}/so_locations\""; \
2869 rm -f "$${dir}/so_locations"; \
2870 done
2871-libdbusmenu-jsonloader.la: $(libdbusmenu_jsonloader_la_OBJECTS) $(libdbusmenu_jsonloader_la_DEPENDENCIES)
2872+libdbusmenu-jsonloader.la: $(libdbusmenu_jsonloader_la_OBJECTS) $(libdbusmenu_jsonloader_la_DEPENDENCIES) $(EXTRA_libdbusmenu_jsonloader_la_DEPENDENCIES)
2873 $(AM_V_CCLD)$(libdbusmenu_jsonloader_la_LINK) -rpath $(libdir) $(libdbusmenu_jsonloader_la_OBJECTS) $(libdbusmenu_jsonloader_la_LIBADD) $(LIBS)
2874
2875 clean-checkPROGRAMS:
2876@@ -1174,79 +1182,79 @@
2877 list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \
2878 echo " rm -f" $$list; \
2879 rm -f $$list
2880-glib-server-nomenu$(EXEEXT): $(glib_server_nomenu_OBJECTS) $(glib_server_nomenu_DEPENDENCIES)
2881+glib-server-nomenu$(EXEEXT): $(glib_server_nomenu_OBJECTS) $(glib_server_nomenu_DEPENDENCIES) $(EXTRA_glib_server_nomenu_DEPENDENCIES)
2882 @rm -f glib-server-nomenu$(EXEEXT)
2883 $(AM_V_CCLD)$(glib_server_nomenu_LINK) $(glib_server_nomenu_OBJECTS) $(glib_server_nomenu_LDADD) $(LIBS)
2884-test-glib-events-client$(EXEEXT): $(test_glib_events_client_OBJECTS) $(test_glib_events_client_DEPENDENCIES)
2885+test-glib-events-client$(EXEEXT): $(test_glib_events_client_OBJECTS) $(test_glib_events_client_DEPENDENCIES) $(EXTRA_test_glib_events_client_DEPENDENCIES)
2886 @rm -f test-glib-events-client$(EXEEXT)
2887 $(AM_V_CCLD)$(test_glib_events_client_LINK) $(test_glib_events_client_OBJECTS) $(test_glib_events_client_LDADD) $(LIBS)
2888-test-glib-events-server$(EXEEXT): $(test_glib_events_server_OBJECTS) $(test_glib_events_server_DEPENDENCIES)
2889+test-glib-events-server$(EXEEXT): $(test_glib_events_server_OBJECTS) $(test_glib_events_server_DEPENDENCIES) $(EXTRA_test_glib_events_server_DEPENDENCIES)
2890 @rm -f test-glib-events-server$(EXEEXT)
2891 $(AM_V_CCLD)$(test_glib_events_server_LINK) $(test_glib_events_server_OBJECTS) $(test_glib_events_server_LDADD) $(LIBS)
2892-test-glib-layout-client$(EXEEXT): $(test_glib_layout_client_OBJECTS) $(test_glib_layout_client_DEPENDENCIES)
2893+test-glib-layout-client$(EXEEXT): $(test_glib_layout_client_OBJECTS) $(test_glib_layout_client_DEPENDENCIES) $(EXTRA_test_glib_layout_client_DEPENDENCIES)
2894 @rm -f test-glib-layout-client$(EXEEXT)
2895 $(AM_V_CCLD)$(test_glib_layout_client_LINK) $(test_glib_layout_client_OBJECTS) $(test_glib_layout_client_LDADD) $(LIBS)
2896-test-glib-layout-server$(EXEEXT): $(test_glib_layout_server_OBJECTS) $(test_glib_layout_server_DEPENDENCIES)
2897+test-glib-layout-server$(EXEEXT): $(test_glib_layout_server_OBJECTS) $(test_glib_layout_server_DEPENDENCIES) $(EXTRA_test_glib_layout_server_DEPENDENCIES)
2898 @rm -f test-glib-layout-server$(EXEEXT)
2899 $(AM_V_CCLD)$(test_glib_layout_server_LINK) $(test_glib_layout_server_OBJECTS) $(test_glib_layout_server_LDADD) $(LIBS)
2900-test-glib-objects$(EXEEXT): $(test_glib_objects_OBJECTS) $(test_glib_objects_DEPENDENCIES)
2901+test-glib-objects$(EXEEXT): $(test_glib_objects_OBJECTS) $(test_glib_objects_DEPENDENCIES) $(EXTRA_test_glib_objects_DEPENDENCIES)
2902 @rm -f test-glib-objects$(EXEEXT)
2903 $(AM_V_CCLD)$(test_glib_objects_LINK) $(test_glib_objects_OBJECTS) $(test_glib_objects_LDADD) $(LIBS)
2904-test-glib-properties-client$(EXEEXT): $(test_glib_properties_client_OBJECTS) $(test_glib_properties_client_DEPENDENCIES)
2905+test-glib-properties-client$(EXEEXT): $(test_glib_properties_client_OBJECTS) $(test_glib_properties_client_DEPENDENCIES) $(EXTRA_test_glib_properties_client_DEPENDENCIES)
2906 @rm -f test-glib-properties-client$(EXEEXT)
2907 $(AM_V_CCLD)$(test_glib_properties_client_LINK) $(test_glib_properties_client_OBJECTS) $(test_glib_properties_client_LDADD) $(LIBS)
2908-test-glib-properties-server$(EXEEXT): $(test_glib_properties_server_OBJECTS) $(test_glib_properties_server_DEPENDENCIES)
2909+test-glib-properties-server$(EXEEXT): $(test_glib_properties_server_OBJECTS) $(test_glib_properties_server_DEPENDENCIES) $(EXTRA_test_glib_properties_server_DEPENDENCIES)
2910 @rm -f test-glib-properties-server$(EXEEXT)
2911 $(AM_V_CCLD)$(test_glib_properties_server_LINK) $(test_glib_properties_server_OBJECTS) $(test_glib_properties_server_LDADD) $(LIBS)
2912-test-glib-proxy-client$(EXEEXT): $(test_glib_proxy_client_OBJECTS) $(test_glib_proxy_client_DEPENDENCIES)
2913+test-glib-proxy-client$(EXEEXT): $(test_glib_proxy_client_OBJECTS) $(test_glib_proxy_client_DEPENDENCIES) $(EXTRA_test_glib_proxy_client_DEPENDENCIES)
2914 @rm -f test-glib-proxy-client$(EXEEXT)
2915 $(AM_V_CCLD)$(test_glib_proxy_client_LINK) $(test_glib_proxy_client_OBJECTS) $(test_glib_proxy_client_LDADD) $(LIBS)
2916-test-glib-proxy-proxy$(EXEEXT): $(test_glib_proxy_proxy_OBJECTS) $(test_glib_proxy_proxy_DEPENDENCIES)
2917+test-glib-proxy-proxy$(EXEEXT): $(test_glib_proxy_proxy_OBJECTS) $(test_glib_proxy_proxy_DEPENDENCIES) $(EXTRA_test_glib_proxy_proxy_DEPENDENCIES)
2918 @rm -f test-glib-proxy-proxy$(EXEEXT)
2919 $(AM_V_CCLD)$(test_glib_proxy_proxy_LINK) $(test_glib_proxy_proxy_OBJECTS) $(test_glib_proxy_proxy_LDADD) $(LIBS)
2920-test-glib-proxy-server$(EXEEXT): $(test_glib_proxy_server_OBJECTS) $(test_glib_proxy_server_DEPENDENCIES)
2921+test-glib-proxy-server$(EXEEXT): $(test_glib_proxy_server_OBJECTS) $(test_glib_proxy_server_DEPENDENCIES) $(EXTRA_test_glib_proxy_server_DEPENDENCIES)
2922 @rm -f test-glib-proxy-server$(EXEEXT)
2923 $(AM_V_CCLD)$(test_glib_proxy_server_LINK) $(test_glib_proxy_server_OBJECTS) $(test_glib_proxy_server_LDADD) $(LIBS)
2924-test-glib-simple-items$(EXEEXT): $(test_glib_simple_items_OBJECTS) $(test_glib_simple_items_DEPENDENCIES)
2925+test-glib-simple-items$(EXEEXT): $(test_glib_simple_items_OBJECTS) $(test_glib_simple_items_DEPENDENCIES) $(EXTRA_test_glib_simple_items_DEPENDENCIES)
2926 @rm -f test-glib-simple-items$(EXEEXT)
2927 $(AM_V_CCLD)$(test_glib_simple_items_LINK) $(test_glib_simple_items_OBJECTS) $(test_glib_simple_items_LDADD) $(LIBS)
2928-test-glib-submenu-client$(EXEEXT): $(test_glib_submenu_client_OBJECTS) $(test_glib_submenu_client_DEPENDENCIES)
2929+test-glib-submenu-client$(EXEEXT): $(test_glib_submenu_client_OBJECTS) $(test_glib_submenu_client_DEPENDENCIES) $(EXTRA_test_glib_submenu_client_DEPENDENCIES)
2930 @rm -f test-glib-submenu-client$(EXEEXT)
2931 $(AM_V_CCLD)$(test_glib_submenu_client_LINK) $(test_glib_submenu_client_OBJECTS) $(test_glib_submenu_client_LDADD) $(LIBS)
2932-test-glib-submenu-server$(EXEEXT): $(test_glib_submenu_server_OBJECTS) $(test_glib_submenu_server_DEPENDENCIES)
2933+test-glib-submenu-server$(EXEEXT): $(test_glib_submenu_server_OBJECTS) $(test_glib_submenu_server_DEPENDENCIES) $(EXTRA_test_glib_submenu_server_DEPENDENCIES)
2934 @rm -f test-glib-submenu-server$(EXEEXT)
2935 $(AM_V_CCLD)$(test_glib_submenu_server_LINK) $(test_glib_submenu_server_OBJECTS) $(test_glib_submenu_server_LDADD) $(LIBS)
2936-test-gtk-label-client$(EXEEXT): $(test_gtk_label_client_OBJECTS) $(test_gtk_label_client_DEPENDENCIES)
2937+test-gtk-label-client$(EXEEXT): $(test_gtk_label_client_OBJECTS) $(test_gtk_label_client_DEPENDENCIES) $(EXTRA_test_gtk_label_client_DEPENDENCIES)
2938 @rm -f test-gtk-label-client$(EXEEXT)
2939 $(AM_V_CCLD)$(test_gtk_label_client_LINK) $(test_gtk_label_client_OBJECTS) $(test_gtk_label_client_LDADD) $(LIBS)
2940-test-gtk-label-server$(EXEEXT): $(test_gtk_label_server_OBJECTS) $(test_gtk_label_server_DEPENDENCIES)
2941+test-gtk-label-server$(EXEEXT): $(test_gtk_label_server_OBJECTS) $(test_gtk_label_server_DEPENDENCIES) $(EXTRA_test_gtk_label_server_DEPENDENCIES)
2942 @rm -f test-gtk-label-server$(EXEEXT)
2943 $(AM_V_CCLD)$(test_gtk_label_server_LINK) $(test_gtk_label_server_OBJECTS) $(test_gtk_label_server_LDADD) $(LIBS)
2944-test-gtk-objects$(EXEEXT): $(test_gtk_objects_OBJECTS) $(test_gtk_objects_DEPENDENCIES)
2945+test-gtk-objects$(EXEEXT): $(test_gtk_objects_OBJECTS) $(test_gtk_objects_DEPENDENCIES) $(EXTRA_test_gtk_objects_DEPENDENCIES)
2946 @rm -f test-gtk-objects$(EXEEXT)
2947 $(AM_V_CCLD)$(test_gtk_objects_LINK) $(test_gtk_objects_OBJECTS) $(test_gtk_objects_LDADD) $(LIBS)
2948-test-gtk-parser$(EXEEXT): $(test_gtk_parser_OBJECTS) $(test_gtk_parser_DEPENDENCIES)
2949+test-gtk-parser$(EXEEXT): $(test_gtk_parser_OBJECTS) $(test_gtk_parser_DEPENDENCIES) $(EXTRA_test_gtk_parser_DEPENDENCIES)
2950 @rm -f test-gtk-parser$(EXEEXT)
2951 $(AM_V_CCLD)$(test_gtk_parser_LINK) $(test_gtk_parser_OBJECTS) $(test_gtk_parser_LDADD) $(LIBS)
2952-test-gtk-reorder-server$(EXEEXT): $(test_gtk_reorder_server_OBJECTS) $(test_gtk_reorder_server_DEPENDENCIES)
2953+test-gtk-reorder-server$(EXEEXT): $(test_gtk_reorder_server_OBJECTS) $(test_gtk_reorder_server_DEPENDENCIES) $(EXTRA_test_gtk_reorder_server_DEPENDENCIES)
2954 @rm -f test-gtk-reorder-server$(EXEEXT)
2955 $(AM_V_CCLD)$(test_gtk_reorder_server_LINK) $(test_gtk_reorder_server_OBJECTS) $(test_gtk_reorder_server_LDADD) $(LIBS)
2956-test-gtk-shortcut-client$(EXEEXT): $(test_gtk_shortcut_client_OBJECTS) $(test_gtk_shortcut_client_DEPENDENCIES)
2957+test-gtk-shortcut-client$(EXEEXT): $(test_gtk_shortcut_client_OBJECTS) $(test_gtk_shortcut_client_DEPENDENCIES) $(EXTRA_test_gtk_shortcut_client_DEPENDENCIES)
2958 @rm -f test-gtk-shortcut-client$(EXEEXT)
2959 $(AM_V_CCLD)$(test_gtk_shortcut_client_LINK) $(test_gtk_shortcut_client_OBJECTS) $(test_gtk_shortcut_client_LDADD) $(LIBS)
2960-test-gtk-shortcut-server$(EXEEXT): $(test_gtk_shortcut_server_OBJECTS) $(test_gtk_shortcut_server_DEPENDENCIES)
2961+test-gtk-shortcut-server$(EXEEXT): $(test_gtk_shortcut_server_OBJECTS) $(test_gtk_shortcut_server_DEPENDENCIES) $(EXTRA_test_gtk_shortcut_server_DEPENDENCIES)
2962 @rm -f test-gtk-shortcut-server$(EXEEXT)
2963 $(AM_V_CCLD)$(test_gtk_shortcut_server_LINK) $(test_gtk_shortcut_server_OBJECTS) $(test_gtk_shortcut_server_LDADD) $(LIBS)
2964-test-gtk-submenu-client$(EXEEXT): $(test_gtk_submenu_client_OBJECTS) $(test_gtk_submenu_client_DEPENDENCIES)
2965+test-gtk-submenu-client$(EXEEXT): $(test_gtk_submenu_client_OBJECTS) $(test_gtk_submenu_client_DEPENDENCIES) $(EXTRA_test_gtk_submenu_client_DEPENDENCIES)
2966 @rm -f test-gtk-submenu-client$(EXEEXT)
2967 $(AM_V_CCLD)$(test_gtk_submenu_client_LINK) $(test_gtk_submenu_client_OBJECTS) $(test_gtk_submenu_client_LDADD) $(LIBS)
2968-test-gtk-submenu-server$(EXEEXT): $(test_gtk_submenu_server_OBJECTS) $(test_gtk_submenu_server_DEPENDENCIES)
2969+test-gtk-submenu-server$(EXEEXT): $(test_gtk_submenu_server_OBJECTS) $(test_gtk_submenu_server_DEPENDENCIES) $(EXTRA_test_gtk_submenu_server_DEPENDENCIES)
2970 @rm -f test-gtk-submenu-server$(EXEEXT)
2971 $(AM_V_CCLD)$(test_gtk_submenu_server_LINK) $(test_gtk_submenu_server_OBJECTS) $(test_gtk_submenu_server_LDADD) $(LIBS)
2972-test-json-client$(EXEEXT): $(test_json_client_OBJECTS) $(test_json_client_DEPENDENCIES)
2973+test-json-client$(EXEEXT): $(test_json_client_OBJECTS) $(test_json_client_DEPENDENCIES) $(EXTRA_test_json_client_DEPENDENCIES)
2974 @rm -f test-json-client$(EXEEXT)
2975 $(AM_V_CCLD)$(test_json_client_LINK) $(test_json_client_OBJECTS) $(test_json_client_LDADD) $(LIBS)
2976-test-json-server$(EXEEXT): $(test_json_server_OBJECTS) $(test_json_server_DEPENDENCIES)
2977+test-json-server$(EXEEXT): $(test_json_server_OBJECTS) $(test_json_server_DEPENDENCIES) $(EXTRA_test_json_server_DEPENDENCIES)
2978 @rm -f test-json-server$(EXEEXT)
2979 $(AM_V_CCLD)$(test_json_server_LINK) $(test_json_server_OBJECTS) $(test_json_server_LDADD) $(LIBS)
2980
2981@@ -1286,434 +1294,380 @@
2982 .c.o:
2983 @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
2984 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
2985-@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
2986-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
2987+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
2988 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2989-@am__fastdepCC_FALSE@ $(COMPILE) -c $<
2990+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c $<
2991
2992 .c.obj:
2993 @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
2994 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
2995-@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
2996-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
2997+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
2998 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2999-@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'`
3000+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c `$(CYGPATH_W) '$<'`
3001
3002 .c.lo:
3003 @am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
3004 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
3005-@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
3006-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
3007+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
3008 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3009-@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $<
3010+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $<
3011
3012 libdbusmenu_jsonloader_la-json-loader.lo: json-loader.c
3013 @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdbusmenu_jsonloader_la_CFLAGS) $(CFLAGS) -MT libdbusmenu_jsonloader_la-json-loader.lo -MD -MP -MF $(DEPDIR)/libdbusmenu_jsonloader_la-json-loader.Tpo -c -o libdbusmenu_jsonloader_la-json-loader.lo `test -f 'json-loader.c' || echo '$(srcdir)/'`json-loader.c
3014 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libdbusmenu_jsonloader_la-json-loader.Tpo $(DEPDIR)/libdbusmenu_jsonloader_la-json-loader.Plo
3015-@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
3016-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='json-loader.c' object='libdbusmenu_jsonloader_la-json-loader.lo' libtool=yes @AMDEPBACKSLASH@
3017+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='json-loader.c' object='libdbusmenu_jsonloader_la-json-loader.lo' libtool=yes @AMDEPBACKSLASH@
3018 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3019-@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdbusmenu_jsonloader_la_CFLAGS) $(CFLAGS) -c -o libdbusmenu_jsonloader_la-json-loader.lo `test -f 'json-loader.c' || echo '$(srcdir)/'`json-loader.c
3020+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdbusmenu_jsonloader_la_CFLAGS) $(CFLAGS) -c -o libdbusmenu_jsonloader_la-json-loader.lo `test -f 'json-loader.c' || echo '$(srcdir)/'`json-loader.c
3021
3022 glib_server_nomenu-glib-server-nomenu.o: glib-server-nomenu.c
3023 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(glib_server_nomenu_CFLAGS) $(CFLAGS) -MT glib_server_nomenu-glib-server-nomenu.o -MD -MP -MF $(DEPDIR)/glib_server_nomenu-glib-server-nomenu.Tpo -c -o glib_server_nomenu-glib-server-nomenu.o `test -f 'glib-server-nomenu.c' || echo '$(srcdir)/'`glib-server-nomenu.c
3024 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/glib_server_nomenu-glib-server-nomenu.Tpo $(DEPDIR)/glib_server_nomenu-glib-server-nomenu.Po
3025-@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
3026-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='glib-server-nomenu.c' object='glib_server_nomenu-glib-server-nomenu.o' libtool=no @AMDEPBACKSLASH@
3027+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='glib-server-nomenu.c' object='glib_server_nomenu-glib-server-nomenu.o' libtool=no @AMDEPBACKSLASH@
3028 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3029-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(glib_server_nomenu_CFLAGS) $(CFLAGS) -c -o glib_server_nomenu-glib-server-nomenu.o `test -f 'glib-server-nomenu.c' || echo '$(srcdir)/'`glib-server-nomenu.c
3030+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(glib_server_nomenu_CFLAGS) $(CFLAGS) -c -o glib_server_nomenu-glib-server-nomenu.o `test -f 'glib-server-nomenu.c' || echo '$(srcdir)/'`glib-server-nomenu.c
3031
3032 glib_server_nomenu-glib-server-nomenu.obj: glib-server-nomenu.c
3033 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(glib_server_nomenu_CFLAGS) $(CFLAGS) -MT glib_server_nomenu-glib-server-nomenu.obj -MD -MP -MF $(DEPDIR)/glib_server_nomenu-glib-server-nomenu.Tpo -c -o glib_server_nomenu-glib-server-nomenu.obj `if test -f 'glib-server-nomenu.c'; then $(CYGPATH_W) 'glib-server-nomenu.c'; else $(CYGPATH_W) '$(srcdir)/glib-server-nomenu.c'; fi`
3034 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/glib_server_nomenu-glib-server-nomenu.Tpo $(DEPDIR)/glib_server_nomenu-glib-server-nomenu.Po
3035-@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
3036-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='glib-server-nomenu.c' object='glib_server_nomenu-glib-server-nomenu.obj' libtool=no @AMDEPBACKSLASH@
3037+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='glib-server-nomenu.c' object='glib_server_nomenu-glib-server-nomenu.obj' libtool=no @AMDEPBACKSLASH@
3038 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3039-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(glib_server_nomenu_CFLAGS) $(CFLAGS) -c -o glib_server_nomenu-glib-server-nomenu.obj `if test -f 'glib-server-nomenu.c'; then $(CYGPATH_W) 'glib-server-nomenu.c'; else $(CYGPATH_W) '$(srcdir)/glib-server-nomenu.c'; fi`
3040+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(glib_server_nomenu_CFLAGS) $(CFLAGS) -c -o glib_server_nomenu-glib-server-nomenu.obj `if test -f 'glib-server-nomenu.c'; then $(CYGPATH_W) 'glib-server-nomenu.c'; else $(CYGPATH_W) '$(srcdir)/glib-server-nomenu.c'; fi`
3041
3042 test_glib_events_client-test-glib-events-client.o: test-glib-events-client.c
3043 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_glib_events_client_CFLAGS) $(CFLAGS) -MT test_glib_events_client-test-glib-events-client.o -MD -MP -MF $(DEPDIR)/test_glib_events_client-test-glib-events-client.Tpo -c -o test_glib_events_client-test-glib-events-client.o `test -f 'test-glib-events-client.c' || echo '$(srcdir)/'`test-glib-events-client.c
3044 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_glib_events_client-test-glib-events-client.Tpo $(DEPDIR)/test_glib_events_client-test-glib-events-client.Po
3045-@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
3046-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-glib-events-client.c' object='test_glib_events_client-test-glib-events-client.o' libtool=no @AMDEPBACKSLASH@
3047+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-glib-events-client.c' object='test_glib_events_client-test-glib-events-client.o' libtool=no @AMDEPBACKSLASH@
3048 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3049-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_glib_events_client_CFLAGS) $(CFLAGS) -c -o test_glib_events_client-test-glib-events-client.o `test -f 'test-glib-events-client.c' || echo '$(srcdir)/'`test-glib-events-client.c
3050+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_glib_events_client_CFLAGS) $(CFLAGS) -c -o test_glib_events_client-test-glib-events-client.o `test -f 'test-glib-events-client.c' || echo '$(srcdir)/'`test-glib-events-client.c
3051
3052 test_glib_events_client-test-glib-events-client.obj: test-glib-events-client.c
3053 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_glib_events_client_CFLAGS) $(CFLAGS) -MT test_glib_events_client-test-glib-events-client.obj -MD -MP -MF $(DEPDIR)/test_glib_events_client-test-glib-events-client.Tpo -c -o test_glib_events_client-test-glib-events-client.obj `if test -f 'test-glib-events-client.c'; then $(CYGPATH_W) 'test-glib-events-client.c'; else $(CYGPATH_W) '$(srcdir)/test-glib-events-client.c'; fi`
3054 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_glib_events_client-test-glib-events-client.Tpo $(DEPDIR)/test_glib_events_client-test-glib-events-client.Po
3055-@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
3056-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-glib-events-client.c' object='test_glib_events_client-test-glib-events-client.obj' libtool=no @AMDEPBACKSLASH@
3057+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-glib-events-client.c' object='test_glib_events_client-test-glib-events-client.obj' libtool=no @AMDEPBACKSLASH@
3058 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3059-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_glib_events_client_CFLAGS) $(CFLAGS) -c -o test_glib_events_client-test-glib-events-client.obj `if test -f 'test-glib-events-client.c'; then $(CYGPATH_W) 'test-glib-events-client.c'; else $(CYGPATH_W) '$(srcdir)/test-glib-events-client.c'; fi`
3060+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_glib_events_client_CFLAGS) $(CFLAGS) -c -o test_glib_events_client-test-glib-events-client.obj `if test -f 'test-glib-events-client.c'; then $(CYGPATH_W) 'test-glib-events-client.c'; else $(CYGPATH_W) '$(srcdir)/test-glib-events-client.c'; fi`
3061
3062 test_glib_events_server-test-glib-events-server.o: test-glib-events-server.c
3063 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_glib_events_server_CFLAGS) $(CFLAGS) -MT test_glib_events_server-test-glib-events-server.o -MD -MP -MF $(DEPDIR)/test_glib_events_server-test-glib-events-server.Tpo -c -o test_glib_events_server-test-glib-events-server.o `test -f 'test-glib-events-server.c' || echo '$(srcdir)/'`test-glib-events-server.c
3064 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_glib_events_server-test-glib-events-server.Tpo $(DEPDIR)/test_glib_events_server-test-glib-events-server.Po
3065-@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
3066-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-glib-events-server.c' object='test_glib_events_server-test-glib-events-server.o' libtool=no @AMDEPBACKSLASH@
3067+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-glib-events-server.c' object='test_glib_events_server-test-glib-events-server.o' libtool=no @AMDEPBACKSLASH@
3068 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3069-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_glib_events_server_CFLAGS) $(CFLAGS) -c -o test_glib_events_server-test-glib-events-server.o `test -f 'test-glib-events-server.c' || echo '$(srcdir)/'`test-glib-events-server.c
3070+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_glib_events_server_CFLAGS) $(CFLAGS) -c -o test_glib_events_server-test-glib-events-server.o `test -f 'test-glib-events-server.c' || echo '$(srcdir)/'`test-glib-events-server.c
3071
3072 test_glib_events_server-test-glib-events-server.obj: test-glib-events-server.c
3073 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_glib_events_server_CFLAGS) $(CFLAGS) -MT test_glib_events_server-test-glib-events-server.obj -MD -MP -MF $(DEPDIR)/test_glib_events_server-test-glib-events-server.Tpo -c -o test_glib_events_server-test-glib-events-server.obj `if test -f 'test-glib-events-server.c'; then $(CYGPATH_W) 'test-glib-events-server.c'; else $(CYGPATH_W) '$(srcdir)/test-glib-events-server.c'; fi`
3074 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_glib_events_server-test-glib-events-server.Tpo $(DEPDIR)/test_glib_events_server-test-glib-events-server.Po
3075-@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
3076-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-glib-events-server.c' object='test_glib_events_server-test-glib-events-server.obj' libtool=no @AMDEPBACKSLASH@
3077+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-glib-events-server.c' object='test_glib_events_server-test-glib-events-server.obj' libtool=no @AMDEPBACKSLASH@
3078 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3079-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_glib_events_server_CFLAGS) $(CFLAGS) -c -o test_glib_events_server-test-glib-events-server.obj `if test -f 'test-glib-events-server.c'; then $(CYGPATH_W) 'test-glib-events-server.c'; else $(CYGPATH_W) '$(srcdir)/test-glib-events-server.c'; fi`
3080+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_glib_events_server_CFLAGS) $(CFLAGS) -c -o test_glib_events_server-test-glib-events-server.obj `if test -f 'test-glib-events-server.c'; then $(CYGPATH_W) 'test-glib-events-server.c'; else $(CYGPATH_W) '$(srcdir)/test-glib-events-server.c'; fi`
3081
3082 test_glib_layout_client-test-glib-layout-client.o: test-glib-layout-client.c
3083 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_glib_layout_client_CFLAGS) $(CFLAGS) -MT test_glib_layout_client-test-glib-layout-client.o -MD -MP -MF $(DEPDIR)/test_glib_layout_client-test-glib-layout-client.Tpo -c -o test_glib_layout_client-test-glib-layout-client.o `test -f 'test-glib-layout-client.c' || echo '$(srcdir)/'`test-glib-layout-client.c
3084 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_glib_layout_client-test-glib-layout-client.Tpo $(DEPDIR)/test_glib_layout_client-test-glib-layout-client.Po
3085-@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
3086-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-glib-layout-client.c' object='test_glib_layout_client-test-glib-layout-client.o' libtool=no @AMDEPBACKSLASH@
3087+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-glib-layout-client.c' object='test_glib_layout_client-test-glib-layout-client.o' libtool=no @AMDEPBACKSLASH@
3088 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3089-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_glib_layout_client_CFLAGS) $(CFLAGS) -c -o test_glib_layout_client-test-glib-layout-client.o `test -f 'test-glib-layout-client.c' || echo '$(srcdir)/'`test-glib-layout-client.c
3090+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_glib_layout_client_CFLAGS) $(CFLAGS) -c -o test_glib_layout_client-test-glib-layout-client.o `test -f 'test-glib-layout-client.c' || echo '$(srcdir)/'`test-glib-layout-client.c
3091
3092 test_glib_layout_client-test-glib-layout-client.obj: test-glib-layout-client.c
3093 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_glib_layout_client_CFLAGS) $(CFLAGS) -MT test_glib_layout_client-test-glib-layout-client.obj -MD -MP -MF $(DEPDIR)/test_glib_layout_client-test-glib-layout-client.Tpo -c -o test_glib_layout_client-test-glib-layout-client.obj `if test -f 'test-glib-layout-client.c'; then $(CYGPATH_W) 'test-glib-layout-client.c'; else $(CYGPATH_W) '$(srcdir)/test-glib-layout-client.c'; fi`
3094 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_glib_layout_client-test-glib-layout-client.Tpo $(DEPDIR)/test_glib_layout_client-test-glib-layout-client.Po
3095-@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
3096-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-glib-layout-client.c' object='test_glib_layout_client-test-glib-layout-client.obj' libtool=no @AMDEPBACKSLASH@
3097+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-glib-layout-client.c' object='test_glib_layout_client-test-glib-layout-client.obj' libtool=no @AMDEPBACKSLASH@
3098 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3099-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_glib_layout_client_CFLAGS) $(CFLAGS) -c -o test_glib_layout_client-test-glib-layout-client.obj `if test -f 'test-glib-layout-client.c'; then $(CYGPATH_W) 'test-glib-layout-client.c'; else $(CYGPATH_W) '$(srcdir)/test-glib-layout-client.c'; fi`
3100+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_glib_layout_client_CFLAGS) $(CFLAGS) -c -o test_glib_layout_client-test-glib-layout-client.obj `if test -f 'test-glib-layout-client.c'; then $(CYGPATH_W) 'test-glib-layout-client.c'; else $(CYGPATH_W) '$(srcdir)/test-glib-layout-client.c'; fi`
3101
3102 test_glib_layout_server-test-glib-layout-server.o: test-glib-layout-server.c
3103 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_glib_layout_server_CFLAGS) $(CFLAGS) -MT test_glib_layout_server-test-glib-layout-server.o -MD -MP -MF $(DEPDIR)/test_glib_layout_server-test-glib-layout-server.Tpo -c -o test_glib_layout_server-test-glib-layout-server.o `test -f 'test-glib-layout-server.c' || echo '$(srcdir)/'`test-glib-layout-server.c
3104 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_glib_layout_server-test-glib-layout-server.Tpo $(DEPDIR)/test_glib_layout_server-test-glib-layout-server.Po
3105-@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
3106-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-glib-layout-server.c' object='test_glib_layout_server-test-glib-layout-server.o' libtool=no @AMDEPBACKSLASH@
3107+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-glib-layout-server.c' object='test_glib_layout_server-test-glib-layout-server.o' libtool=no @AMDEPBACKSLASH@
3108 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3109-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_glib_layout_server_CFLAGS) $(CFLAGS) -c -o test_glib_layout_server-test-glib-layout-server.o `test -f 'test-glib-layout-server.c' || echo '$(srcdir)/'`test-glib-layout-server.c
3110+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_glib_layout_server_CFLAGS) $(CFLAGS) -c -o test_glib_layout_server-test-glib-layout-server.o `test -f 'test-glib-layout-server.c' || echo '$(srcdir)/'`test-glib-layout-server.c
3111
3112 test_glib_layout_server-test-glib-layout-server.obj: test-glib-layout-server.c
3113 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_glib_layout_server_CFLAGS) $(CFLAGS) -MT test_glib_layout_server-test-glib-layout-server.obj -MD -MP -MF $(DEPDIR)/test_glib_layout_server-test-glib-layout-server.Tpo -c -o test_glib_layout_server-test-glib-layout-server.obj `if test -f 'test-glib-layout-server.c'; then $(CYGPATH_W) 'test-glib-layout-server.c'; else $(CYGPATH_W) '$(srcdir)/test-glib-layout-server.c'; fi`
3114 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_glib_layout_server-test-glib-layout-server.Tpo $(DEPDIR)/test_glib_layout_server-test-glib-layout-server.Po
3115-@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
3116-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-glib-layout-server.c' object='test_glib_layout_server-test-glib-layout-server.obj' libtool=no @AMDEPBACKSLASH@
3117+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-glib-layout-server.c' object='test_glib_layout_server-test-glib-layout-server.obj' libtool=no @AMDEPBACKSLASH@
3118 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3119-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_glib_layout_server_CFLAGS) $(CFLAGS) -c -o test_glib_layout_server-test-glib-layout-server.obj `if test -f 'test-glib-layout-server.c'; then $(CYGPATH_W) 'test-glib-layout-server.c'; else $(CYGPATH_W) '$(srcdir)/test-glib-layout-server.c'; fi`
3120+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_glib_layout_server_CFLAGS) $(CFLAGS) -c -o test_glib_layout_server-test-glib-layout-server.obj `if test -f 'test-glib-layout-server.c'; then $(CYGPATH_W) 'test-glib-layout-server.c'; else $(CYGPATH_W) '$(srcdir)/test-glib-layout-server.c'; fi`
3121
3122 test_glib_objects-test-glib-objects.o: test-glib-objects.c
3123 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_glib_objects_CFLAGS) $(CFLAGS) -MT test_glib_objects-test-glib-objects.o -MD -MP -MF $(DEPDIR)/test_glib_objects-test-glib-objects.Tpo -c -o test_glib_objects-test-glib-objects.o `test -f 'test-glib-objects.c' || echo '$(srcdir)/'`test-glib-objects.c
3124 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_glib_objects-test-glib-objects.Tpo $(DEPDIR)/test_glib_objects-test-glib-objects.Po
3125-@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
3126-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-glib-objects.c' object='test_glib_objects-test-glib-objects.o' libtool=no @AMDEPBACKSLASH@
3127+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-glib-objects.c' object='test_glib_objects-test-glib-objects.o' libtool=no @AMDEPBACKSLASH@
3128 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3129-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_glib_objects_CFLAGS) $(CFLAGS) -c -o test_glib_objects-test-glib-objects.o `test -f 'test-glib-objects.c' || echo '$(srcdir)/'`test-glib-objects.c
3130+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_glib_objects_CFLAGS) $(CFLAGS) -c -o test_glib_objects-test-glib-objects.o `test -f 'test-glib-objects.c' || echo '$(srcdir)/'`test-glib-objects.c
3131
3132 test_glib_objects-test-glib-objects.obj: test-glib-objects.c
3133 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_glib_objects_CFLAGS) $(CFLAGS) -MT test_glib_objects-test-glib-objects.obj -MD -MP -MF $(DEPDIR)/test_glib_objects-test-glib-objects.Tpo -c -o test_glib_objects-test-glib-objects.obj `if test -f 'test-glib-objects.c'; then $(CYGPATH_W) 'test-glib-objects.c'; else $(CYGPATH_W) '$(srcdir)/test-glib-objects.c'; fi`
3134 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_glib_objects-test-glib-objects.Tpo $(DEPDIR)/test_glib_objects-test-glib-objects.Po
3135-@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
3136-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-glib-objects.c' object='test_glib_objects-test-glib-objects.obj' libtool=no @AMDEPBACKSLASH@
3137+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-glib-objects.c' object='test_glib_objects-test-glib-objects.obj' libtool=no @AMDEPBACKSLASH@
3138 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3139-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_glib_objects_CFLAGS) $(CFLAGS) -c -o test_glib_objects-test-glib-objects.obj `if test -f 'test-glib-objects.c'; then $(CYGPATH_W) 'test-glib-objects.c'; else $(CYGPATH_W) '$(srcdir)/test-glib-objects.c'; fi`
3140+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_glib_objects_CFLAGS) $(CFLAGS) -c -o test_glib_objects-test-glib-objects.obj `if test -f 'test-glib-objects.c'; then $(CYGPATH_W) 'test-glib-objects.c'; else $(CYGPATH_W) '$(srcdir)/test-glib-objects.c'; fi`
3141
3142 test_glib_properties_client-test-glib-properties-client.o: test-glib-properties-client.c
3143 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_glib_properties_client_CFLAGS) $(CFLAGS) -MT test_glib_properties_client-test-glib-properties-client.o -MD -MP -MF $(DEPDIR)/test_glib_properties_client-test-glib-properties-client.Tpo -c -o test_glib_properties_client-test-glib-properties-client.o `test -f 'test-glib-properties-client.c' || echo '$(srcdir)/'`test-glib-properties-client.c
3144 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_glib_properties_client-test-glib-properties-client.Tpo $(DEPDIR)/test_glib_properties_client-test-glib-properties-client.Po
3145-@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
3146-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-glib-properties-client.c' object='test_glib_properties_client-test-glib-properties-client.o' libtool=no @AMDEPBACKSLASH@
3147+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-glib-properties-client.c' object='test_glib_properties_client-test-glib-properties-client.o' libtool=no @AMDEPBACKSLASH@
3148 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3149-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_glib_properties_client_CFLAGS) $(CFLAGS) -c -o test_glib_properties_client-test-glib-properties-client.o `test -f 'test-glib-properties-client.c' || echo '$(srcdir)/'`test-glib-properties-client.c
3150+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_glib_properties_client_CFLAGS) $(CFLAGS) -c -o test_glib_properties_client-test-glib-properties-client.o `test -f 'test-glib-properties-client.c' || echo '$(srcdir)/'`test-glib-properties-client.c
3151
3152 test_glib_properties_client-test-glib-properties-client.obj: test-glib-properties-client.c
3153 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_glib_properties_client_CFLAGS) $(CFLAGS) -MT test_glib_properties_client-test-glib-properties-client.obj -MD -MP -MF $(DEPDIR)/test_glib_properties_client-test-glib-properties-client.Tpo -c -o test_glib_properties_client-test-glib-properties-client.obj `if test -f 'test-glib-properties-client.c'; then $(CYGPATH_W) 'test-glib-properties-client.c'; else $(CYGPATH_W) '$(srcdir)/test-glib-properties-client.c'; fi`
3154 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_glib_properties_client-test-glib-properties-client.Tpo $(DEPDIR)/test_glib_properties_client-test-glib-properties-client.Po
3155-@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
3156-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-glib-properties-client.c' object='test_glib_properties_client-test-glib-properties-client.obj' libtool=no @AMDEPBACKSLASH@
3157+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-glib-properties-client.c' object='test_glib_properties_client-test-glib-properties-client.obj' libtool=no @AMDEPBACKSLASH@
3158 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3159-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_glib_properties_client_CFLAGS) $(CFLAGS) -c -o test_glib_properties_client-test-glib-properties-client.obj `if test -f 'test-glib-properties-client.c'; then $(CYGPATH_W) 'test-glib-properties-client.c'; else $(CYGPATH_W) '$(srcdir)/test-glib-properties-client.c'; fi`
3160+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_glib_properties_client_CFLAGS) $(CFLAGS) -c -o test_glib_properties_client-test-glib-properties-client.obj `if test -f 'test-glib-properties-client.c'; then $(CYGPATH_W) 'test-glib-properties-client.c'; else $(CYGPATH_W) '$(srcdir)/test-glib-properties-client.c'; fi`
3161
3162 test_glib_properties_server-test-glib-properties-server.o: test-glib-properties-server.c
3163 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_glib_properties_server_CFLAGS) $(CFLAGS) -MT test_glib_properties_server-test-glib-properties-server.o -MD -MP -MF $(DEPDIR)/test_glib_properties_server-test-glib-properties-server.Tpo -c -o test_glib_properties_server-test-glib-properties-server.o `test -f 'test-glib-properties-server.c' || echo '$(srcdir)/'`test-glib-properties-server.c
3164 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_glib_properties_server-test-glib-properties-server.Tpo $(DEPDIR)/test_glib_properties_server-test-glib-properties-server.Po
3165-@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
3166-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-glib-properties-server.c' object='test_glib_properties_server-test-glib-properties-server.o' libtool=no @AMDEPBACKSLASH@
3167+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-glib-properties-server.c' object='test_glib_properties_server-test-glib-properties-server.o' libtool=no @AMDEPBACKSLASH@
3168 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3169-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_glib_properties_server_CFLAGS) $(CFLAGS) -c -o test_glib_properties_server-test-glib-properties-server.o `test -f 'test-glib-properties-server.c' || echo '$(srcdir)/'`test-glib-properties-server.c
3170+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_glib_properties_server_CFLAGS) $(CFLAGS) -c -o test_glib_properties_server-test-glib-properties-server.o `test -f 'test-glib-properties-server.c' || echo '$(srcdir)/'`test-glib-properties-server.c
3171
3172 test_glib_properties_server-test-glib-properties-server.obj: test-glib-properties-server.c
3173 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_glib_properties_server_CFLAGS) $(CFLAGS) -MT test_glib_properties_server-test-glib-properties-server.obj -MD -MP -MF $(DEPDIR)/test_glib_properties_server-test-glib-properties-server.Tpo -c -o test_glib_properties_server-test-glib-properties-server.obj `if test -f 'test-glib-properties-server.c'; then $(CYGPATH_W) 'test-glib-properties-server.c'; else $(CYGPATH_W) '$(srcdir)/test-glib-properties-server.c'; fi`
3174 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_glib_properties_server-test-glib-properties-server.Tpo $(DEPDIR)/test_glib_properties_server-test-glib-properties-server.Po
3175-@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
3176-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-glib-properties-server.c' object='test_glib_properties_server-test-glib-properties-server.obj' libtool=no @AMDEPBACKSLASH@
3177+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-glib-properties-server.c' object='test_glib_properties_server-test-glib-properties-server.obj' libtool=no @AMDEPBACKSLASH@
3178 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3179-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_glib_properties_server_CFLAGS) $(CFLAGS) -c -o test_glib_properties_server-test-glib-properties-server.obj `if test -f 'test-glib-properties-server.c'; then $(CYGPATH_W) 'test-glib-properties-server.c'; else $(CYGPATH_W) '$(srcdir)/test-glib-properties-server.c'; fi`
3180+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_glib_properties_server_CFLAGS) $(CFLAGS) -c -o test_glib_properties_server-test-glib-properties-server.obj `if test -f 'test-glib-properties-server.c'; then $(CYGPATH_W) 'test-glib-properties-server.c'; else $(CYGPATH_W) '$(srcdir)/test-glib-properties-server.c'; fi`
3181
3182 test_glib_proxy_client-test-glib-proxy-client.o: test-glib-proxy-client.c
3183 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_glib_proxy_client_CFLAGS) $(CFLAGS) -MT test_glib_proxy_client-test-glib-proxy-client.o -MD -MP -MF $(DEPDIR)/test_glib_proxy_client-test-glib-proxy-client.Tpo -c -o test_glib_proxy_client-test-glib-proxy-client.o `test -f 'test-glib-proxy-client.c' || echo '$(srcdir)/'`test-glib-proxy-client.c
3184 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_glib_proxy_client-test-glib-proxy-client.Tpo $(DEPDIR)/test_glib_proxy_client-test-glib-proxy-client.Po
3185-@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
3186-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-glib-proxy-client.c' object='test_glib_proxy_client-test-glib-proxy-client.o' libtool=no @AMDEPBACKSLASH@
3187+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-glib-proxy-client.c' object='test_glib_proxy_client-test-glib-proxy-client.o' libtool=no @AMDEPBACKSLASH@
3188 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3189-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_glib_proxy_client_CFLAGS) $(CFLAGS) -c -o test_glib_proxy_client-test-glib-proxy-client.o `test -f 'test-glib-proxy-client.c' || echo '$(srcdir)/'`test-glib-proxy-client.c
3190+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_glib_proxy_client_CFLAGS) $(CFLAGS) -c -o test_glib_proxy_client-test-glib-proxy-client.o `test -f 'test-glib-proxy-client.c' || echo '$(srcdir)/'`test-glib-proxy-client.c
3191
3192 test_glib_proxy_client-test-glib-proxy-client.obj: test-glib-proxy-client.c
3193 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_glib_proxy_client_CFLAGS) $(CFLAGS) -MT test_glib_proxy_client-test-glib-proxy-client.obj -MD -MP -MF $(DEPDIR)/test_glib_proxy_client-test-glib-proxy-client.Tpo -c -o test_glib_proxy_client-test-glib-proxy-client.obj `if test -f 'test-glib-proxy-client.c'; then $(CYGPATH_W) 'test-glib-proxy-client.c'; else $(CYGPATH_W) '$(srcdir)/test-glib-proxy-client.c'; fi`
3194 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_glib_proxy_client-test-glib-proxy-client.Tpo $(DEPDIR)/test_glib_proxy_client-test-glib-proxy-client.Po
3195-@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
3196-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-glib-proxy-client.c' object='test_glib_proxy_client-test-glib-proxy-client.obj' libtool=no @AMDEPBACKSLASH@
3197+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-glib-proxy-client.c' object='test_glib_proxy_client-test-glib-proxy-client.obj' libtool=no @AMDEPBACKSLASH@
3198 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3199-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_glib_proxy_client_CFLAGS) $(CFLAGS) -c -o test_glib_proxy_client-test-glib-proxy-client.obj `if test -f 'test-glib-proxy-client.c'; then $(CYGPATH_W) 'test-glib-proxy-client.c'; else $(CYGPATH_W) '$(srcdir)/test-glib-proxy-client.c'; fi`
3200+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_glib_proxy_client_CFLAGS) $(CFLAGS) -c -o test_glib_proxy_client-test-glib-proxy-client.obj `if test -f 'test-glib-proxy-client.c'; then $(CYGPATH_W) 'test-glib-proxy-client.c'; else $(CYGPATH_W) '$(srcdir)/test-glib-proxy-client.c'; fi`
3201
3202 test_glib_proxy_proxy-test-glib-proxy-proxy.o: test-glib-proxy-proxy.c
3203 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_glib_proxy_proxy_CFLAGS) $(CFLAGS) -MT test_glib_proxy_proxy-test-glib-proxy-proxy.o -MD -MP -MF $(DEPDIR)/test_glib_proxy_proxy-test-glib-proxy-proxy.Tpo -c -o test_glib_proxy_proxy-test-glib-proxy-proxy.o `test -f 'test-glib-proxy-proxy.c' || echo '$(srcdir)/'`test-glib-proxy-proxy.c
3204 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_glib_proxy_proxy-test-glib-proxy-proxy.Tpo $(DEPDIR)/test_glib_proxy_proxy-test-glib-proxy-proxy.Po
3205-@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
3206-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-glib-proxy-proxy.c' object='test_glib_proxy_proxy-test-glib-proxy-proxy.o' libtool=no @AMDEPBACKSLASH@
3207+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-glib-proxy-proxy.c' object='test_glib_proxy_proxy-test-glib-proxy-proxy.o' libtool=no @AMDEPBACKSLASH@
3208 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3209-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_glib_proxy_proxy_CFLAGS) $(CFLAGS) -c -o test_glib_proxy_proxy-test-glib-proxy-proxy.o `test -f 'test-glib-proxy-proxy.c' || echo '$(srcdir)/'`test-glib-proxy-proxy.c
3210+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_glib_proxy_proxy_CFLAGS) $(CFLAGS) -c -o test_glib_proxy_proxy-test-glib-proxy-proxy.o `test -f 'test-glib-proxy-proxy.c' || echo '$(srcdir)/'`test-glib-proxy-proxy.c
3211
3212 test_glib_proxy_proxy-test-glib-proxy-proxy.obj: test-glib-proxy-proxy.c
3213 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_glib_proxy_proxy_CFLAGS) $(CFLAGS) -MT test_glib_proxy_proxy-test-glib-proxy-proxy.obj -MD -MP -MF $(DEPDIR)/test_glib_proxy_proxy-test-glib-proxy-proxy.Tpo -c -o test_glib_proxy_proxy-test-glib-proxy-proxy.obj `if test -f 'test-glib-proxy-proxy.c'; then $(CYGPATH_W) 'test-glib-proxy-proxy.c'; else $(CYGPATH_W) '$(srcdir)/test-glib-proxy-proxy.c'; fi`
3214 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_glib_proxy_proxy-test-glib-proxy-proxy.Tpo $(DEPDIR)/test_glib_proxy_proxy-test-glib-proxy-proxy.Po
3215-@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
3216-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-glib-proxy-proxy.c' object='test_glib_proxy_proxy-test-glib-proxy-proxy.obj' libtool=no @AMDEPBACKSLASH@
3217+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-glib-proxy-proxy.c' object='test_glib_proxy_proxy-test-glib-proxy-proxy.obj' libtool=no @AMDEPBACKSLASH@
3218 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3219-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_glib_proxy_proxy_CFLAGS) $(CFLAGS) -c -o test_glib_proxy_proxy-test-glib-proxy-proxy.obj `if test -f 'test-glib-proxy-proxy.c'; then $(CYGPATH_W) 'test-glib-proxy-proxy.c'; else $(CYGPATH_W) '$(srcdir)/test-glib-proxy-proxy.c'; fi`
3220+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_glib_proxy_proxy_CFLAGS) $(CFLAGS) -c -o test_glib_proxy_proxy-test-glib-proxy-proxy.obj `if test -f 'test-glib-proxy-proxy.c'; then $(CYGPATH_W) 'test-glib-proxy-proxy.c'; else $(CYGPATH_W) '$(srcdir)/test-glib-proxy-proxy.c'; fi`
3221
3222 test_glib_proxy_server-test-glib-proxy-server.o: test-glib-proxy-server.c
3223 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_glib_proxy_server_CFLAGS) $(CFLAGS) -MT test_glib_proxy_server-test-glib-proxy-server.o -MD -MP -MF $(DEPDIR)/test_glib_proxy_server-test-glib-proxy-server.Tpo -c -o test_glib_proxy_server-test-glib-proxy-server.o `test -f 'test-glib-proxy-server.c' || echo '$(srcdir)/'`test-glib-proxy-server.c
3224 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_glib_proxy_server-test-glib-proxy-server.Tpo $(DEPDIR)/test_glib_proxy_server-test-glib-proxy-server.Po
3225-@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
3226-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-glib-proxy-server.c' object='test_glib_proxy_server-test-glib-proxy-server.o' libtool=no @AMDEPBACKSLASH@
3227+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-glib-proxy-server.c' object='test_glib_proxy_server-test-glib-proxy-server.o' libtool=no @AMDEPBACKSLASH@
3228 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3229-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_glib_proxy_server_CFLAGS) $(CFLAGS) -c -o test_glib_proxy_server-test-glib-proxy-server.o `test -f 'test-glib-proxy-server.c' || echo '$(srcdir)/'`test-glib-proxy-server.c
3230+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_glib_proxy_server_CFLAGS) $(CFLAGS) -c -o test_glib_proxy_server-test-glib-proxy-server.o `test -f 'test-glib-proxy-server.c' || echo '$(srcdir)/'`test-glib-proxy-server.c
3231
3232 test_glib_proxy_server-test-glib-proxy-server.obj: test-glib-proxy-server.c
3233 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_glib_proxy_server_CFLAGS) $(CFLAGS) -MT test_glib_proxy_server-test-glib-proxy-server.obj -MD -MP -MF $(DEPDIR)/test_glib_proxy_server-test-glib-proxy-server.Tpo -c -o test_glib_proxy_server-test-glib-proxy-server.obj `if test -f 'test-glib-proxy-server.c'; then $(CYGPATH_W) 'test-glib-proxy-server.c'; else $(CYGPATH_W) '$(srcdir)/test-glib-proxy-server.c'; fi`
3234 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_glib_proxy_server-test-glib-proxy-server.Tpo $(DEPDIR)/test_glib_proxy_server-test-glib-proxy-server.Po
3235-@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
3236-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-glib-proxy-server.c' object='test_glib_proxy_server-test-glib-proxy-server.obj' libtool=no @AMDEPBACKSLASH@
3237+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-glib-proxy-server.c' object='test_glib_proxy_server-test-glib-proxy-server.obj' libtool=no @AMDEPBACKSLASH@
3238 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3239-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_glib_proxy_server_CFLAGS) $(CFLAGS) -c -o test_glib_proxy_server-test-glib-proxy-server.obj `if test -f 'test-glib-proxy-server.c'; then $(CYGPATH_W) 'test-glib-proxy-server.c'; else $(CYGPATH_W) '$(srcdir)/test-glib-proxy-server.c'; fi`
3240+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_glib_proxy_server_CFLAGS) $(CFLAGS) -c -o test_glib_proxy_server-test-glib-proxy-server.obj `if test -f 'test-glib-proxy-server.c'; then $(CYGPATH_W) 'test-glib-proxy-server.c'; else $(CYGPATH_W) '$(srcdir)/test-glib-proxy-server.c'; fi`
3241
3242 test_glib_simple_items-test-glib-simple-items.o: test-glib-simple-items.c
3243 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_glib_simple_items_CFLAGS) $(CFLAGS) -MT test_glib_simple_items-test-glib-simple-items.o -MD -MP -MF $(DEPDIR)/test_glib_simple_items-test-glib-simple-items.Tpo -c -o test_glib_simple_items-test-glib-simple-items.o `test -f 'test-glib-simple-items.c' || echo '$(srcdir)/'`test-glib-simple-items.c
3244 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_glib_simple_items-test-glib-simple-items.Tpo $(DEPDIR)/test_glib_simple_items-test-glib-simple-items.Po
3245-@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
3246-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-glib-simple-items.c' object='test_glib_simple_items-test-glib-simple-items.o' libtool=no @AMDEPBACKSLASH@
3247+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-glib-simple-items.c' object='test_glib_simple_items-test-glib-simple-items.o' libtool=no @AMDEPBACKSLASH@
3248 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3249-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_glib_simple_items_CFLAGS) $(CFLAGS) -c -o test_glib_simple_items-test-glib-simple-items.o `test -f 'test-glib-simple-items.c' || echo '$(srcdir)/'`test-glib-simple-items.c
3250+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_glib_simple_items_CFLAGS) $(CFLAGS) -c -o test_glib_simple_items-test-glib-simple-items.o `test -f 'test-glib-simple-items.c' || echo '$(srcdir)/'`test-glib-simple-items.c
3251
3252 test_glib_simple_items-test-glib-simple-items.obj: test-glib-simple-items.c
3253 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_glib_simple_items_CFLAGS) $(CFLAGS) -MT test_glib_simple_items-test-glib-simple-items.obj -MD -MP -MF $(DEPDIR)/test_glib_simple_items-test-glib-simple-items.Tpo -c -o test_glib_simple_items-test-glib-simple-items.obj `if test -f 'test-glib-simple-items.c'; then $(CYGPATH_W) 'test-glib-simple-items.c'; else $(CYGPATH_W) '$(srcdir)/test-glib-simple-items.c'; fi`
3254 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_glib_simple_items-test-glib-simple-items.Tpo $(DEPDIR)/test_glib_simple_items-test-glib-simple-items.Po
3255-@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
3256-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-glib-simple-items.c' object='test_glib_simple_items-test-glib-simple-items.obj' libtool=no @AMDEPBACKSLASH@
3257+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-glib-simple-items.c' object='test_glib_simple_items-test-glib-simple-items.obj' libtool=no @AMDEPBACKSLASH@
3258 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3259-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_glib_simple_items_CFLAGS) $(CFLAGS) -c -o test_glib_simple_items-test-glib-simple-items.obj `if test -f 'test-glib-simple-items.c'; then $(CYGPATH_W) 'test-glib-simple-items.c'; else $(CYGPATH_W) '$(srcdir)/test-glib-simple-items.c'; fi`
3260+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_glib_simple_items_CFLAGS) $(CFLAGS) -c -o test_glib_simple_items-test-glib-simple-items.obj `if test -f 'test-glib-simple-items.c'; then $(CYGPATH_W) 'test-glib-simple-items.c'; else $(CYGPATH_W) '$(srcdir)/test-glib-simple-items.c'; fi`
3261
3262 test_glib_submenu_client-test-glib-submenu-client.o: test-glib-submenu-client.c
3263 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_glib_submenu_client_CFLAGS) $(CFLAGS) -MT test_glib_submenu_client-test-glib-submenu-client.o -MD -MP -MF $(DEPDIR)/test_glib_submenu_client-test-glib-submenu-client.Tpo -c -o test_glib_submenu_client-test-glib-submenu-client.o `test -f 'test-glib-submenu-client.c' || echo '$(srcdir)/'`test-glib-submenu-client.c
3264 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_glib_submenu_client-test-glib-submenu-client.Tpo $(DEPDIR)/test_glib_submenu_client-test-glib-submenu-client.Po
3265-@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
3266-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-glib-submenu-client.c' object='test_glib_submenu_client-test-glib-submenu-client.o' libtool=no @AMDEPBACKSLASH@
3267+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-glib-submenu-client.c' object='test_glib_submenu_client-test-glib-submenu-client.o' libtool=no @AMDEPBACKSLASH@
3268 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3269-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_glib_submenu_client_CFLAGS) $(CFLAGS) -c -o test_glib_submenu_client-test-glib-submenu-client.o `test -f 'test-glib-submenu-client.c' || echo '$(srcdir)/'`test-glib-submenu-client.c
3270+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_glib_submenu_client_CFLAGS) $(CFLAGS) -c -o test_glib_submenu_client-test-glib-submenu-client.o `test -f 'test-glib-submenu-client.c' || echo '$(srcdir)/'`test-glib-submenu-client.c
3271
3272 test_glib_submenu_client-test-glib-submenu-client.obj: test-glib-submenu-client.c
3273 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_glib_submenu_client_CFLAGS) $(CFLAGS) -MT test_glib_submenu_client-test-glib-submenu-client.obj -MD -MP -MF $(DEPDIR)/test_glib_submenu_client-test-glib-submenu-client.Tpo -c -o test_glib_submenu_client-test-glib-submenu-client.obj `if test -f 'test-glib-submenu-client.c'; then $(CYGPATH_W) 'test-glib-submenu-client.c'; else $(CYGPATH_W) '$(srcdir)/test-glib-submenu-client.c'; fi`
3274 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_glib_submenu_client-test-glib-submenu-client.Tpo $(DEPDIR)/test_glib_submenu_client-test-glib-submenu-client.Po
3275-@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
3276-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-glib-submenu-client.c' object='test_glib_submenu_client-test-glib-submenu-client.obj' libtool=no @AMDEPBACKSLASH@
3277+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-glib-submenu-client.c' object='test_glib_submenu_client-test-glib-submenu-client.obj' libtool=no @AMDEPBACKSLASH@
3278 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3279-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_glib_submenu_client_CFLAGS) $(CFLAGS) -c -o test_glib_submenu_client-test-glib-submenu-client.obj `if test -f 'test-glib-submenu-client.c'; then $(CYGPATH_W) 'test-glib-submenu-client.c'; else $(CYGPATH_W) '$(srcdir)/test-glib-submenu-client.c'; fi`
3280+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_glib_submenu_client_CFLAGS) $(CFLAGS) -c -o test_glib_submenu_client-test-glib-submenu-client.obj `if test -f 'test-glib-submenu-client.c'; then $(CYGPATH_W) 'test-glib-submenu-client.c'; else $(CYGPATH_W) '$(srcdir)/test-glib-submenu-client.c'; fi`
3281
3282 test_glib_submenu_server-test-glib-submenu-server.o: test-glib-submenu-server.c
3283 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_glib_submenu_server_CFLAGS) $(CFLAGS) -MT test_glib_submenu_server-test-glib-submenu-server.o -MD -MP -MF $(DEPDIR)/test_glib_submenu_server-test-glib-submenu-server.Tpo -c -o test_glib_submenu_server-test-glib-submenu-server.o `test -f 'test-glib-submenu-server.c' || echo '$(srcdir)/'`test-glib-submenu-server.c
3284 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_glib_submenu_server-test-glib-submenu-server.Tpo $(DEPDIR)/test_glib_submenu_server-test-glib-submenu-server.Po
3285-@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
3286-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-glib-submenu-server.c' object='test_glib_submenu_server-test-glib-submenu-server.o' libtool=no @AMDEPBACKSLASH@
3287+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-glib-submenu-server.c' object='test_glib_submenu_server-test-glib-submenu-server.o' libtool=no @AMDEPBACKSLASH@
3288 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3289-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_glib_submenu_server_CFLAGS) $(CFLAGS) -c -o test_glib_submenu_server-test-glib-submenu-server.o `test -f 'test-glib-submenu-server.c' || echo '$(srcdir)/'`test-glib-submenu-server.c
3290+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_glib_submenu_server_CFLAGS) $(CFLAGS) -c -o test_glib_submenu_server-test-glib-submenu-server.o `test -f 'test-glib-submenu-server.c' || echo '$(srcdir)/'`test-glib-submenu-server.c
3291
3292 test_glib_submenu_server-test-glib-submenu-server.obj: test-glib-submenu-server.c
3293 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_glib_submenu_server_CFLAGS) $(CFLAGS) -MT test_glib_submenu_server-test-glib-submenu-server.obj -MD -MP -MF $(DEPDIR)/test_glib_submenu_server-test-glib-submenu-server.Tpo -c -o test_glib_submenu_server-test-glib-submenu-server.obj `if test -f 'test-glib-submenu-server.c'; then $(CYGPATH_W) 'test-glib-submenu-server.c'; else $(CYGPATH_W) '$(srcdir)/test-glib-submenu-server.c'; fi`
3294 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_glib_submenu_server-test-glib-submenu-server.Tpo $(DEPDIR)/test_glib_submenu_server-test-glib-submenu-server.Po
3295-@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
3296-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-glib-submenu-server.c' object='test_glib_submenu_server-test-glib-submenu-server.obj' libtool=no @AMDEPBACKSLASH@
3297+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-glib-submenu-server.c' object='test_glib_submenu_server-test-glib-submenu-server.obj' libtool=no @AMDEPBACKSLASH@
3298 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3299-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_glib_submenu_server_CFLAGS) $(CFLAGS) -c -o test_glib_submenu_server-test-glib-submenu-server.obj `if test -f 'test-glib-submenu-server.c'; then $(CYGPATH_W) 'test-glib-submenu-server.c'; else $(CYGPATH_W) '$(srcdir)/test-glib-submenu-server.c'; fi`
3300+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_glib_submenu_server_CFLAGS) $(CFLAGS) -c -o test_glib_submenu_server-test-glib-submenu-server.obj `if test -f 'test-glib-submenu-server.c'; then $(CYGPATH_W) 'test-glib-submenu-server.c'; else $(CYGPATH_W) '$(srcdir)/test-glib-submenu-server.c'; fi`
3301
3302 test_gtk_label_client-test-gtk-label-client.o: test-gtk-label-client.c
3303 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_gtk_label_client_CFLAGS) $(CFLAGS) -MT test_gtk_label_client-test-gtk-label-client.o -MD -MP -MF $(DEPDIR)/test_gtk_label_client-test-gtk-label-client.Tpo -c -o test_gtk_label_client-test-gtk-label-client.o `test -f 'test-gtk-label-client.c' || echo '$(srcdir)/'`test-gtk-label-client.c
3304 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_gtk_label_client-test-gtk-label-client.Tpo $(DEPDIR)/test_gtk_label_client-test-gtk-label-client.Po
3305-@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
3306-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-gtk-label-client.c' object='test_gtk_label_client-test-gtk-label-client.o' libtool=no @AMDEPBACKSLASH@
3307+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-gtk-label-client.c' object='test_gtk_label_client-test-gtk-label-client.o' libtool=no @AMDEPBACKSLASH@
3308 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3309-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_gtk_label_client_CFLAGS) $(CFLAGS) -c -o test_gtk_label_client-test-gtk-label-client.o `test -f 'test-gtk-label-client.c' || echo '$(srcdir)/'`test-gtk-label-client.c
3310+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_gtk_label_client_CFLAGS) $(CFLAGS) -c -o test_gtk_label_client-test-gtk-label-client.o `test -f 'test-gtk-label-client.c' || echo '$(srcdir)/'`test-gtk-label-client.c
3311
3312 test_gtk_label_client-test-gtk-label-client.obj: test-gtk-label-client.c
3313 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_gtk_label_client_CFLAGS) $(CFLAGS) -MT test_gtk_label_client-test-gtk-label-client.obj -MD -MP -MF $(DEPDIR)/test_gtk_label_client-test-gtk-label-client.Tpo -c -o test_gtk_label_client-test-gtk-label-client.obj `if test -f 'test-gtk-label-client.c'; then $(CYGPATH_W) 'test-gtk-label-client.c'; else $(CYGPATH_W) '$(srcdir)/test-gtk-label-client.c'; fi`
3314 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_gtk_label_client-test-gtk-label-client.Tpo $(DEPDIR)/test_gtk_label_client-test-gtk-label-client.Po
3315-@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
3316-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-gtk-label-client.c' object='test_gtk_label_client-test-gtk-label-client.obj' libtool=no @AMDEPBACKSLASH@
3317+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-gtk-label-client.c' object='test_gtk_label_client-test-gtk-label-client.obj' libtool=no @AMDEPBACKSLASH@
3318 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3319-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_gtk_label_client_CFLAGS) $(CFLAGS) -c -o test_gtk_label_client-test-gtk-label-client.obj `if test -f 'test-gtk-label-client.c'; then $(CYGPATH_W) 'test-gtk-label-client.c'; else $(CYGPATH_W) '$(srcdir)/test-gtk-label-client.c'; fi`
3320+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_gtk_label_client_CFLAGS) $(CFLAGS) -c -o test_gtk_label_client-test-gtk-label-client.obj `if test -f 'test-gtk-label-client.c'; then $(CYGPATH_W) 'test-gtk-label-client.c'; else $(CYGPATH_W) '$(srcdir)/test-gtk-label-client.c'; fi`
3321
3322 test_gtk_label_server-test-gtk-label-server.o: test-gtk-label-server.c
3323 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_gtk_label_server_CFLAGS) $(CFLAGS) -MT test_gtk_label_server-test-gtk-label-server.o -MD -MP -MF $(DEPDIR)/test_gtk_label_server-test-gtk-label-server.Tpo -c -o test_gtk_label_server-test-gtk-label-server.o `test -f 'test-gtk-label-server.c' || echo '$(srcdir)/'`test-gtk-label-server.c
3324 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_gtk_label_server-test-gtk-label-server.Tpo $(DEPDIR)/test_gtk_label_server-test-gtk-label-server.Po
3325-@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
3326-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-gtk-label-server.c' object='test_gtk_label_server-test-gtk-label-server.o' libtool=no @AMDEPBACKSLASH@
3327+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-gtk-label-server.c' object='test_gtk_label_server-test-gtk-label-server.o' libtool=no @AMDEPBACKSLASH@
3328 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3329-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_gtk_label_server_CFLAGS) $(CFLAGS) -c -o test_gtk_label_server-test-gtk-label-server.o `test -f 'test-gtk-label-server.c' || echo '$(srcdir)/'`test-gtk-label-server.c
3330+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_gtk_label_server_CFLAGS) $(CFLAGS) -c -o test_gtk_label_server-test-gtk-label-server.o `test -f 'test-gtk-label-server.c' || echo '$(srcdir)/'`test-gtk-label-server.c
3331
3332 test_gtk_label_server-test-gtk-label-server.obj: test-gtk-label-server.c
3333 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_gtk_label_server_CFLAGS) $(CFLAGS) -MT test_gtk_label_server-test-gtk-label-server.obj -MD -MP -MF $(DEPDIR)/test_gtk_label_server-test-gtk-label-server.Tpo -c -o test_gtk_label_server-test-gtk-label-server.obj `if test -f 'test-gtk-label-server.c'; then $(CYGPATH_W) 'test-gtk-label-server.c'; else $(CYGPATH_W) '$(srcdir)/test-gtk-label-server.c'; fi`
3334 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_gtk_label_server-test-gtk-label-server.Tpo $(DEPDIR)/test_gtk_label_server-test-gtk-label-server.Po
3335-@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
3336-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-gtk-label-server.c' object='test_gtk_label_server-test-gtk-label-server.obj' libtool=no @AMDEPBACKSLASH@
3337+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-gtk-label-server.c' object='test_gtk_label_server-test-gtk-label-server.obj' libtool=no @AMDEPBACKSLASH@
3338 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3339-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_gtk_label_server_CFLAGS) $(CFLAGS) -c -o test_gtk_label_server-test-gtk-label-server.obj `if test -f 'test-gtk-label-server.c'; then $(CYGPATH_W) 'test-gtk-label-server.c'; else $(CYGPATH_W) '$(srcdir)/test-gtk-label-server.c'; fi`
3340+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_gtk_label_server_CFLAGS) $(CFLAGS) -c -o test_gtk_label_server-test-gtk-label-server.obj `if test -f 'test-gtk-label-server.c'; then $(CYGPATH_W) 'test-gtk-label-server.c'; else $(CYGPATH_W) '$(srcdir)/test-gtk-label-server.c'; fi`
3341
3342 test_gtk_objects-test-gtk-objects.o: test-gtk-objects.c
3343 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_gtk_objects_CFLAGS) $(CFLAGS) -MT test_gtk_objects-test-gtk-objects.o -MD -MP -MF $(DEPDIR)/test_gtk_objects-test-gtk-objects.Tpo -c -o test_gtk_objects-test-gtk-objects.o `test -f 'test-gtk-objects.c' || echo '$(srcdir)/'`test-gtk-objects.c
3344 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_gtk_objects-test-gtk-objects.Tpo $(DEPDIR)/test_gtk_objects-test-gtk-objects.Po
3345-@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
3346-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-gtk-objects.c' object='test_gtk_objects-test-gtk-objects.o' libtool=no @AMDEPBACKSLASH@
3347+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-gtk-objects.c' object='test_gtk_objects-test-gtk-objects.o' libtool=no @AMDEPBACKSLASH@
3348 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3349-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_gtk_objects_CFLAGS) $(CFLAGS) -c -o test_gtk_objects-test-gtk-objects.o `test -f 'test-gtk-objects.c' || echo '$(srcdir)/'`test-gtk-objects.c
3350+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_gtk_objects_CFLAGS) $(CFLAGS) -c -o test_gtk_objects-test-gtk-objects.o `test -f 'test-gtk-objects.c' || echo '$(srcdir)/'`test-gtk-objects.c
3351
3352 test_gtk_objects-test-gtk-objects.obj: test-gtk-objects.c
3353 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_gtk_objects_CFLAGS) $(CFLAGS) -MT test_gtk_objects-test-gtk-objects.obj -MD -MP -MF $(DEPDIR)/test_gtk_objects-test-gtk-objects.Tpo -c -o test_gtk_objects-test-gtk-objects.obj `if test -f 'test-gtk-objects.c'; then $(CYGPATH_W) 'test-gtk-objects.c'; else $(CYGPATH_W) '$(srcdir)/test-gtk-objects.c'; fi`
3354 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_gtk_objects-test-gtk-objects.Tpo $(DEPDIR)/test_gtk_objects-test-gtk-objects.Po
3355-@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
3356-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-gtk-objects.c' object='test_gtk_objects-test-gtk-objects.obj' libtool=no @AMDEPBACKSLASH@
3357+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-gtk-objects.c' object='test_gtk_objects-test-gtk-objects.obj' libtool=no @AMDEPBACKSLASH@
3358 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3359-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_gtk_objects_CFLAGS) $(CFLAGS) -c -o test_gtk_objects-test-gtk-objects.obj `if test -f 'test-gtk-objects.c'; then $(CYGPATH_W) 'test-gtk-objects.c'; else $(CYGPATH_W) '$(srcdir)/test-gtk-objects.c'; fi`
3360+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_gtk_objects_CFLAGS) $(CFLAGS) -c -o test_gtk_objects-test-gtk-objects.obj `if test -f 'test-gtk-objects.c'; then $(CYGPATH_W) 'test-gtk-objects.c'; else $(CYGPATH_W) '$(srcdir)/test-gtk-objects.c'; fi`
3361
3362 test_gtk_parser-test-gtk-parser.o: test-gtk-parser.c
3363 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_gtk_parser_CFLAGS) $(CFLAGS) -MT test_gtk_parser-test-gtk-parser.o -MD -MP -MF $(DEPDIR)/test_gtk_parser-test-gtk-parser.Tpo -c -o test_gtk_parser-test-gtk-parser.o `test -f 'test-gtk-parser.c' || echo '$(srcdir)/'`test-gtk-parser.c
3364 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_gtk_parser-test-gtk-parser.Tpo $(DEPDIR)/test_gtk_parser-test-gtk-parser.Po
3365-@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
3366-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-gtk-parser.c' object='test_gtk_parser-test-gtk-parser.o' libtool=no @AMDEPBACKSLASH@
3367+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-gtk-parser.c' object='test_gtk_parser-test-gtk-parser.o' libtool=no @AMDEPBACKSLASH@
3368 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3369-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_gtk_parser_CFLAGS) $(CFLAGS) -c -o test_gtk_parser-test-gtk-parser.o `test -f 'test-gtk-parser.c' || echo '$(srcdir)/'`test-gtk-parser.c
3370+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_gtk_parser_CFLAGS) $(CFLAGS) -c -o test_gtk_parser-test-gtk-parser.o `test -f 'test-gtk-parser.c' || echo '$(srcdir)/'`test-gtk-parser.c
3371
3372 test_gtk_parser-test-gtk-parser.obj: test-gtk-parser.c
3373 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_gtk_parser_CFLAGS) $(CFLAGS) -MT test_gtk_parser-test-gtk-parser.obj -MD -MP -MF $(DEPDIR)/test_gtk_parser-test-gtk-parser.Tpo -c -o test_gtk_parser-test-gtk-parser.obj `if test -f 'test-gtk-parser.c'; then $(CYGPATH_W) 'test-gtk-parser.c'; else $(CYGPATH_W) '$(srcdir)/test-gtk-parser.c'; fi`
3374 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_gtk_parser-test-gtk-parser.Tpo $(DEPDIR)/test_gtk_parser-test-gtk-parser.Po
3375-@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
3376-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-gtk-parser.c' object='test_gtk_parser-test-gtk-parser.obj' libtool=no @AMDEPBACKSLASH@
3377+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-gtk-parser.c' object='test_gtk_parser-test-gtk-parser.obj' libtool=no @AMDEPBACKSLASH@
3378 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3379-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_gtk_parser_CFLAGS) $(CFLAGS) -c -o test_gtk_parser-test-gtk-parser.obj `if test -f 'test-gtk-parser.c'; then $(CYGPATH_W) 'test-gtk-parser.c'; else $(CYGPATH_W) '$(srcdir)/test-gtk-parser.c'; fi`
3380+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_gtk_parser_CFLAGS) $(CFLAGS) -c -o test_gtk_parser-test-gtk-parser.obj `if test -f 'test-gtk-parser.c'; then $(CYGPATH_W) 'test-gtk-parser.c'; else $(CYGPATH_W) '$(srcdir)/test-gtk-parser.c'; fi`
3381
3382 test_gtk_reorder_server-test-gtk-reorder-server.o: test-gtk-reorder-server.c
3383 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_gtk_reorder_server_CFLAGS) $(CFLAGS) -MT test_gtk_reorder_server-test-gtk-reorder-server.o -MD -MP -MF $(DEPDIR)/test_gtk_reorder_server-test-gtk-reorder-server.Tpo -c -o test_gtk_reorder_server-test-gtk-reorder-server.o `test -f 'test-gtk-reorder-server.c' || echo '$(srcdir)/'`test-gtk-reorder-server.c
3384 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_gtk_reorder_server-test-gtk-reorder-server.Tpo $(DEPDIR)/test_gtk_reorder_server-test-gtk-reorder-server.Po
3385-@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
3386-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-gtk-reorder-server.c' object='test_gtk_reorder_server-test-gtk-reorder-server.o' libtool=no @AMDEPBACKSLASH@
3387+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-gtk-reorder-server.c' object='test_gtk_reorder_server-test-gtk-reorder-server.o' libtool=no @AMDEPBACKSLASH@
3388 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3389-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_gtk_reorder_server_CFLAGS) $(CFLAGS) -c -o test_gtk_reorder_server-test-gtk-reorder-server.o `test -f 'test-gtk-reorder-server.c' || echo '$(srcdir)/'`test-gtk-reorder-server.c
3390+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_gtk_reorder_server_CFLAGS) $(CFLAGS) -c -o test_gtk_reorder_server-test-gtk-reorder-server.o `test -f 'test-gtk-reorder-server.c' || echo '$(srcdir)/'`test-gtk-reorder-server.c
3391
3392 test_gtk_reorder_server-test-gtk-reorder-server.obj: test-gtk-reorder-server.c
3393 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_gtk_reorder_server_CFLAGS) $(CFLAGS) -MT test_gtk_reorder_server-test-gtk-reorder-server.obj -MD -MP -MF $(DEPDIR)/test_gtk_reorder_server-test-gtk-reorder-server.Tpo -c -o test_gtk_reorder_server-test-gtk-reorder-server.obj `if test -f 'test-gtk-reorder-server.c'; then $(CYGPATH_W) 'test-gtk-reorder-server.c'; else $(CYGPATH_W) '$(srcdir)/test-gtk-reorder-server.c'; fi`
3394 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_gtk_reorder_server-test-gtk-reorder-server.Tpo $(DEPDIR)/test_gtk_reorder_server-test-gtk-reorder-server.Po
3395-@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
3396-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-gtk-reorder-server.c' object='test_gtk_reorder_server-test-gtk-reorder-server.obj' libtool=no @AMDEPBACKSLASH@
3397+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-gtk-reorder-server.c' object='test_gtk_reorder_server-test-gtk-reorder-server.obj' libtool=no @AMDEPBACKSLASH@
3398 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3399-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_gtk_reorder_server_CFLAGS) $(CFLAGS) -c -o test_gtk_reorder_server-test-gtk-reorder-server.obj `if test -f 'test-gtk-reorder-server.c'; then $(CYGPATH_W) 'test-gtk-reorder-server.c'; else $(CYGPATH_W) '$(srcdir)/test-gtk-reorder-server.c'; fi`
3400+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_gtk_reorder_server_CFLAGS) $(CFLAGS) -c -o test_gtk_reorder_server-test-gtk-reorder-server.obj `if test -f 'test-gtk-reorder-server.c'; then $(CYGPATH_W) 'test-gtk-reorder-server.c'; else $(CYGPATH_W) '$(srcdir)/test-gtk-reorder-server.c'; fi`
3401
3402 test_gtk_shortcut_client-test-gtk-shortcut-client.o: test-gtk-shortcut-client.c
3403 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_gtk_shortcut_client_CFLAGS) $(CFLAGS) -MT test_gtk_shortcut_client-test-gtk-shortcut-client.o -MD -MP -MF $(DEPDIR)/test_gtk_shortcut_client-test-gtk-shortcut-client.Tpo -c -o test_gtk_shortcut_client-test-gtk-shortcut-client.o `test -f 'test-gtk-shortcut-client.c' || echo '$(srcdir)/'`test-gtk-shortcut-client.c
3404 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_gtk_shortcut_client-test-gtk-shortcut-client.Tpo $(DEPDIR)/test_gtk_shortcut_client-test-gtk-shortcut-client.Po
3405-@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
3406-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-gtk-shortcut-client.c' object='test_gtk_shortcut_client-test-gtk-shortcut-client.o' libtool=no @AMDEPBACKSLASH@
3407+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-gtk-shortcut-client.c' object='test_gtk_shortcut_client-test-gtk-shortcut-client.o' libtool=no @AMDEPBACKSLASH@
3408 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3409-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_gtk_shortcut_client_CFLAGS) $(CFLAGS) -c -o test_gtk_shortcut_client-test-gtk-shortcut-client.o `test -f 'test-gtk-shortcut-client.c' || echo '$(srcdir)/'`test-gtk-shortcut-client.c
3410+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_gtk_shortcut_client_CFLAGS) $(CFLAGS) -c -o test_gtk_shortcut_client-test-gtk-shortcut-client.o `test -f 'test-gtk-shortcut-client.c' || echo '$(srcdir)/'`test-gtk-shortcut-client.c
3411
3412 test_gtk_shortcut_client-test-gtk-shortcut-client.obj: test-gtk-shortcut-client.c
3413 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_gtk_shortcut_client_CFLAGS) $(CFLAGS) -MT test_gtk_shortcut_client-test-gtk-shortcut-client.obj -MD -MP -MF $(DEPDIR)/test_gtk_shortcut_client-test-gtk-shortcut-client.Tpo -c -o test_gtk_shortcut_client-test-gtk-shortcut-client.obj `if test -f 'test-gtk-shortcut-client.c'; then $(CYGPATH_W) 'test-gtk-shortcut-client.c'; else $(CYGPATH_W) '$(srcdir)/test-gtk-shortcut-client.c'; fi`
3414 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_gtk_shortcut_client-test-gtk-shortcut-client.Tpo $(DEPDIR)/test_gtk_shortcut_client-test-gtk-shortcut-client.Po
3415-@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
3416-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-gtk-shortcut-client.c' object='test_gtk_shortcut_client-test-gtk-shortcut-client.obj' libtool=no @AMDEPBACKSLASH@
3417+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-gtk-shortcut-client.c' object='test_gtk_shortcut_client-test-gtk-shortcut-client.obj' libtool=no @AMDEPBACKSLASH@
3418 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3419-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_gtk_shortcut_client_CFLAGS) $(CFLAGS) -c -o test_gtk_shortcut_client-test-gtk-shortcut-client.obj `if test -f 'test-gtk-shortcut-client.c'; then $(CYGPATH_W) 'test-gtk-shortcut-client.c'; else $(CYGPATH_W) '$(srcdir)/test-gtk-shortcut-client.c'; fi`
3420+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_gtk_shortcut_client_CFLAGS) $(CFLAGS) -c -o test_gtk_shortcut_client-test-gtk-shortcut-client.obj `if test -f 'test-gtk-shortcut-client.c'; then $(CYGPATH_W) 'test-gtk-shortcut-client.c'; else $(CYGPATH_W) '$(srcdir)/test-gtk-shortcut-client.c'; fi`
3421
3422 test_gtk_shortcut_server-test-gtk-shortcut-server.o: test-gtk-shortcut-server.c
3423 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_gtk_shortcut_server_CFLAGS) $(CFLAGS) -MT test_gtk_shortcut_server-test-gtk-shortcut-server.o -MD -MP -MF $(DEPDIR)/test_gtk_shortcut_server-test-gtk-shortcut-server.Tpo -c -o test_gtk_shortcut_server-test-gtk-shortcut-server.o `test -f 'test-gtk-shortcut-server.c' || echo '$(srcdir)/'`test-gtk-shortcut-server.c
3424 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_gtk_shortcut_server-test-gtk-shortcut-server.Tpo $(DEPDIR)/test_gtk_shortcut_server-test-gtk-shortcut-server.Po
3425-@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
3426-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-gtk-shortcut-server.c' object='test_gtk_shortcut_server-test-gtk-shortcut-server.o' libtool=no @AMDEPBACKSLASH@
3427+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-gtk-shortcut-server.c' object='test_gtk_shortcut_server-test-gtk-shortcut-server.o' libtool=no @AMDEPBACKSLASH@
3428 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3429-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_gtk_shortcut_server_CFLAGS) $(CFLAGS) -c -o test_gtk_shortcut_server-test-gtk-shortcut-server.o `test -f 'test-gtk-shortcut-server.c' || echo '$(srcdir)/'`test-gtk-shortcut-server.c
3430+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_gtk_shortcut_server_CFLAGS) $(CFLAGS) -c -o test_gtk_shortcut_server-test-gtk-shortcut-server.o `test -f 'test-gtk-shortcut-server.c' || echo '$(srcdir)/'`test-gtk-shortcut-server.c
3431
3432 test_gtk_shortcut_server-test-gtk-shortcut-server.obj: test-gtk-shortcut-server.c
3433 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_gtk_shortcut_server_CFLAGS) $(CFLAGS) -MT test_gtk_shortcut_server-test-gtk-shortcut-server.obj -MD -MP -MF $(DEPDIR)/test_gtk_shortcut_server-test-gtk-shortcut-server.Tpo -c -o test_gtk_shortcut_server-test-gtk-shortcut-server.obj `if test -f 'test-gtk-shortcut-server.c'; then $(CYGPATH_W) 'test-gtk-shortcut-server.c'; else $(CYGPATH_W) '$(srcdir)/test-gtk-shortcut-server.c'; fi`
3434 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_gtk_shortcut_server-test-gtk-shortcut-server.Tpo $(DEPDIR)/test_gtk_shortcut_server-test-gtk-shortcut-server.Po
3435-@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
3436-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-gtk-shortcut-server.c' object='test_gtk_shortcut_server-test-gtk-shortcut-server.obj' libtool=no @AMDEPBACKSLASH@
3437+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-gtk-shortcut-server.c' object='test_gtk_shortcut_server-test-gtk-shortcut-server.obj' libtool=no @AMDEPBACKSLASH@
3438 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3439-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_gtk_shortcut_server_CFLAGS) $(CFLAGS) -c -o test_gtk_shortcut_server-test-gtk-shortcut-server.obj `if test -f 'test-gtk-shortcut-server.c'; then $(CYGPATH_W) 'test-gtk-shortcut-server.c'; else $(CYGPATH_W) '$(srcdir)/test-gtk-shortcut-server.c'; fi`
3440+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_gtk_shortcut_server_CFLAGS) $(CFLAGS) -c -o test_gtk_shortcut_server-test-gtk-shortcut-server.obj `if test -f 'test-gtk-shortcut-server.c'; then $(CYGPATH_W) 'test-gtk-shortcut-server.c'; else $(CYGPATH_W) '$(srcdir)/test-gtk-shortcut-server.c'; fi`
3441
3442 test_gtk_submenu_client-test-gtk-submenu-client.o: test-gtk-submenu-client.c
3443 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_gtk_submenu_client_CFLAGS) $(CFLAGS) -MT test_gtk_submenu_client-test-gtk-submenu-client.o -MD -MP -MF $(DEPDIR)/test_gtk_submenu_client-test-gtk-submenu-client.Tpo -c -o test_gtk_submenu_client-test-gtk-submenu-client.o `test -f 'test-gtk-submenu-client.c' || echo '$(srcdir)/'`test-gtk-submenu-client.c
3444 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_gtk_submenu_client-test-gtk-submenu-client.Tpo $(DEPDIR)/test_gtk_submenu_client-test-gtk-submenu-client.Po
3445-@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
3446-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-gtk-submenu-client.c' object='test_gtk_submenu_client-test-gtk-submenu-client.o' libtool=no @AMDEPBACKSLASH@
3447+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-gtk-submenu-client.c' object='test_gtk_submenu_client-test-gtk-submenu-client.o' libtool=no @AMDEPBACKSLASH@
3448 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3449-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_gtk_submenu_client_CFLAGS) $(CFLAGS) -c -o test_gtk_submenu_client-test-gtk-submenu-client.o `test -f 'test-gtk-submenu-client.c' || echo '$(srcdir)/'`test-gtk-submenu-client.c
3450+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_gtk_submenu_client_CFLAGS) $(CFLAGS) -c -o test_gtk_submenu_client-test-gtk-submenu-client.o `test -f 'test-gtk-submenu-client.c' || echo '$(srcdir)/'`test-gtk-submenu-client.c
3451
3452 test_gtk_submenu_client-test-gtk-submenu-client.obj: test-gtk-submenu-client.c
3453 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_gtk_submenu_client_CFLAGS) $(CFLAGS) -MT test_gtk_submenu_client-test-gtk-submenu-client.obj -MD -MP -MF $(DEPDIR)/test_gtk_submenu_client-test-gtk-submenu-client.Tpo -c -o test_gtk_submenu_client-test-gtk-submenu-client.obj `if test -f 'test-gtk-submenu-client.c'; then $(CYGPATH_W) 'test-gtk-submenu-client.c'; else $(CYGPATH_W) '$(srcdir)/test-gtk-submenu-client.c'; fi`
3454 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_gtk_submenu_client-test-gtk-submenu-client.Tpo $(DEPDIR)/test_gtk_submenu_client-test-gtk-submenu-client.Po
3455-@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
3456-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-gtk-submenu-client.c' object='test_gtk_submenu_client-test-gtk-submenu-client.obj' libtool=no @AMDEPBACKSLASH@
3457+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-gtk-submenu-client.c' object='test_gtk_submenu_client-test-gtk-submenu-client.obj' libtool=no @AMDEPBACKSLASH@
3458 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3459-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_gtk_submenu_client_CFLAGS) $(CFLAGS) -c -o test_gtk_submenu_client-test-gtk-submenu-client.obj `if test -f 'test-gtk-submenu-client.c'; then $(CYGPATH_W) 'test-gtk-submenu-client.c'; else $(CYGPATH_W) '$(srcdir)/test-gtk-submenu-client.c'; fi`
3460+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_gtk_submenu_client_CFLAGS) $(CFLAGS) -c -o test_gtk_submenu_client-test-gtk-submenu-client.obj `if test -f 'test-gtk-submenu-client.c'; then $(CYGPATH_W) 'test-gtk-submenu-client.c'; else $(CYGPATH_W) '$(srcdir)/test-gtk-submenu-client.c'; fi`
3461
3462 test_gtk_submenu_server-test-gtk-submenu-server.o: test-gtk-submenu-server.c
3463 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_gtk_submenu_server_CFLAGS) $(CFLAGS) -MT test_gtk_submenu_server-test-gtk-submenu-server.o -MD -MP -MF $(DEPDIR)/test_gtk_submenu_server-test-gtk-submenu-server.Tpo -c -o test_gtk_submenu_server-test-gtk-submenu-server.o `test -f 'test-gtk-submenu-server.c' || echo '$(srcdir)/'`test-gtk-submenu-server.c
3464 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_gtk_submenu_server-test-gtk-submenu-server.Tpo $(DEPDIR)/test_gtk_submenu_server-test-gtk-submenu-server.Po
3465-@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
3466-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-gtk-submenu-server.c' object='test_gtk_submenu_server-test-gtk-submenu-server.o' libtool=no @AMDEPBACKSLASH@
3467+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-gtk-submenu-server.c' object='test_gtk_submenu_server-test-gtk-submenu-server.o' libtool=no @AMDEPBACKSLASH@
3468 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3469-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_gtk_submenu_server_CFLAGS) $(CFLAGS) -c -o test_gtk_submenu_server-test-gtk-submenu-server.o `test -f 'test-gtk-submenu-server.c' || echo '$(srcdir)/'`test-gtk-submenu-server.c
3470+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_gtk_submenu_server_CFLAGS) $(CFLAGS) -c -o test_gtk_submenu_server-test-gtk-submenu-server.o `test -f 'test-gtk-submenu-server.c' || echo '$(srcdir)/'`test-gtk-submenu-server.c
3471
3472 test_gtk_submenu_server-test-gtk-submenu-server.obj: test-gtk-submenu-server.c
3473 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_gtk_submenu_server_CFLAGS) $(CFLAGS) -MT test_gtk_submenu_server-test-gtk-submenu-server.obj -MD -MP -MF $(DEPDIR)/test_gtk_submenu_server-test-gtk-submenu-server.Tpo -c -o test_gtk_submenu_server-test-gtk-submenu-server.obj `if test -f 'test-gtk-submenu-server.c'; then $(CYGPATH_W) 'test-gtk-submenu-server.c'; else $(CYGPATH_W) '$(srcdir)/test-gtk-submenu-server.c'; fi`
3474 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_gtk_submenu_server-test-gtk-submenu-server.Tpo $(DEPDIR)/test_gtk_submenu_server-test-gtk-submenu-server.Po
3475-@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
3476-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-gtk-submenu-server.c' object='test_gtk_submenu_server-test-gtk-submenu-server.obj' libtool=no @AMDEPBACKSLASH@
3477+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-gtk-submenu-server.c' object='test_gtk_submenu_server-test-gtk-submenu-server.obj' libtool=no @AMDEPBACKSLASH@
3478 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3479-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_gtk_submenu_server_CFLAGS) $(CFLAGS) -c -o test_gtk_submenu_server-test-gtk-submenu-server.obj `if test -f 'test-gtk-submenu-server.c'; then $(CYGPATH_W) 'test-gtk-submenu-server.c'; else $(CYGPATH_W) '$(srcdir)/test-gtk-submenu-server.c'; fi`
3480+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_gtk_submenu_server_CFLAGS) $(CFLAGS) -c -o test_gtk_submenu_server-test-gtk-submenu-server.obj `if test -f 'test-gtk-submenu-server.c'; then $(CYGPATH_W) 'test-gtk-submenu-server.c'; else $(CYGPATH_W) '$(srcdir)/test-gtk-submenu-server.c'; fi`
3481
3482 test_json_client-test-json-client.o: test-json-client.c
3483 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_json_client_CFLAGS) $(CFLAGS) -MT test_json_client-test-json-client.o -MD -MP -MF $(DEPDIR)/test_json_client-test-json-client.Tpo -c -o test_json_client-test-json-client.o `test -f 'test-json-client.c' || echo '$(srcdir)/'`test-json-client.c
3484 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_json_client-test-json-client.Tpo $(DEPDIR)/test_json_client-test-json-client.Po
3485-@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
3486-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-json-client.c' object='test_json_client-test-json-client.o' libtool=no @AMDEPBACKSLASH@
3487+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-json-client.c' object='test_json_client-test-json-client.o' libtool=no @AMDEPBACKSLASH@
3488 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3489-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_json_client_CFLAGS) $(CFLAGS) -c -o test_json_client-test-json-client.o `test -f 'test-json-client.c' || echo '$(srcdir)/'`test-json-client.c
3490+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_json_client_CFLAGS) $(CFLAGS) -c -o test_json_client-test-json-client.o `test -f 'test-json-client.c' || echo '$(srcdir)/'`test-json-client.c
3491
3492 test_json_client-test-json-client.obj: test-json-client.c
3493 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_json_client_CFLAGS) $(CFLAGS) -MT test_json_client-test-json-client.obj -MD -MP -MF $(DEPDIR)/test_json_client-test-json-client.Tpo -c -o test_json_client-test-json-client.obj `if test -f 'test-json-client.c'; then $(CYGPATH_W) 'test-json-client.c'; else $(CYGPATH_W) '$(srcdir)/test-json-client.c'; fi`
3494 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_json_client-test-json-client.Tpo $(DEPDIR)/test_json_client-test-json-client.Po
3495-@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
3496-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-json-client.c' object='test_json_client-test-json-client.obj' libtool=no @AMDEPBACKSLASH@
3497+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-json-client.c' object='test_json_client-test-json-client.obj' libtool=no @AMDEPBACKSLASH@
3498 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3499-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_json_client_CFLAGS) $(CFLAGS) -c -o test_json_client-test-json-client.obj `if test -f 'test-json-client.c'; then $(CYGPATH_W) 'test-json-client.c'; else $(CYGPATH_W) '$(srcdir)/test-json-client.c'; fi`
3500+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_json_client_CFLAGS) $(CFLAGS) -c -o test_json_client-test-json-client.obj `if test -f 'test-json-client.c'; then $(CYGPATH_W) 'test-json-client.c'; else $(CYGPATH_W) '$(srcdir)/test-json-client.c'; fi`
3501
3502 test_json_server-test-json-server.o: test-json-server.c
3503 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_json_server_CFLAGS) $(CFLAGS) -MT test_json_server-test-json-server.o -MD -MP -MF $(DEPDIR)/test_json_server-test-json-server.Tpo -c -o test_json_server-test-json-server.o `test -f 'test-json-server.c' || echo '$(srcdir)/'`test-json-server.c
3504 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_json_server-test-json-server.Tpo $(DEPDIR)/test_json_server-test-json-server.Po
3505-@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
3506-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-json-server.c' object='test_json_server-test-json-server.o' libtool=no @AMDEPBACKSLASH@
3507+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-json-server.c' object='test_json_server-test-json-server.o' libtool=no @AMDEPBACKSLASH@
3508 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3509-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_json_server_CFLAGS) $(CFLAGS) -c -o test_json_server-test-json-server.o `test -f 'test-json-server.c' || echo '$(srcdir)/'`test-json-server.c
3510+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_json_server_CFLAGS) $(CFLAGS) -c -o test_json_server-test-json-server.o `test -f 'test-json-server.c' || echo '$(srcdir)/'`test-json-server.c
3511
3512 test_json_server-test-json-server.obj: test-json-server.c
3513 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_json_server_CFLAGS) $(CFLAGS) -MT test_json_server-test-json-server.obj -MD -MP -MF $(DEPDIR)/test_json_server-test-json-server.Tpo -c -o test_json_server-test-json-server.obj `if test -f 'test-json-server.c'; then $(CYGPATH_W) 'test-json-server.c'; else $(CYGPATH_W) '$(srcdir)/test-json-server.c'; fi`
3514 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_json_server-test-json-server.Tpo $(DEPDIR)/test_json_server-test-json-server.Po
3515-@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
3516-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-json-server.c' object='test_json_server-test-json-server.obj' libtool=no @AMDEPBACKSLASH@
3517+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-json-server.c' object='test_json_server-test-json-server.obj' libtool=no @AMDEPBACKSLASH@
3518 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3519-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_json_server_CFLAGS) $(CFLAGS) -c -o test_json_server-test-json-server.obj `if test -f 'test-json-server.c'; then $(CYGPATH_W) 'test-json-server.c'; else $(CYGPATH_W) '$(srcdir)/test-json-server.c'; fi`
3520+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_json_server_CFLAGS) $(CFLAGS) -c -o test_json_server-test-json-server.obj `if test -f 'test-json-server.c'; then $(CYGPATH_W) 'test-json-server.c'; else $(CYGPATH_W) '$(srcdir)/test-json-server.c'; fi`
3521
3522 mostlyclean-libtool:
3523 -rm -f *.lo
3524@@ -1737,9 +1691,7 @@
3525 @$(NORMAL_UNINSTALL)
3526 @list='$(examples_DATA)'; test -n "$(examplesdir)" || list=; \
3527 files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
3528- test -n "$$files" || exit 0; \
3529- echo " ( cd '$(DESTDIR)$(examplesdir)' && rm -f" $$files ")"; \
3530- cd "$(DESTDIR)$(examplesdir)" && rm -f $$files
3531+ dir='$(DESTDIR)$(examplesdir)'; $(am__uninstall_files_from_dir)
3532 install-jsonDATA: $(json_DATA)
3533 @$(NORMAL_INSTALL)
3534 test -z "$(jsondir)" || $(MKDIR_P) "$(DESTDIR)$(jsondir)"
3535@@ -1757,9 +1709,7 @@
3536 @$(NORMAL_UNINSTALL)
3537 @list='$(json_DATA)'; test -n "$(jsondir)" || list=; \
3538 files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
3539- test -n "$$files" || exit 0; \
3540- echo " ( cd '$(DESTDIR)$(jsondir)' && rm -f" $$files ")"; \
3541- cd "$(DESTDIR)$(jsondir)" && rm -f $$files
3542+ dir='$(DESTDIR)$(jsondir)'; $(am__uninstall_files_from_dir)
3543 install-pkgconfigDATA: $(pkgconfig_DATA)
3544 @$(NORMAL_INSTALL)
3545 test -z "$(pkgconfigdir)" || $(MKDIR_P) "$(DESTDIR)$(pkgconfigdir)"
3546@@ -1777,9 +1727,7 @@
3547 @$(NORMAL_UNINSTALL)
3548 @list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \
3549 files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
3550- test -n "$$files" || exit 0; \
3551- echo " ( cd '$(DESTDIR)$(pkgconfigdir)' && rm -f" $$files ")"; \
3552- cd "$(DESTDIR)$(pkgconfigdir)" && rm -f $$files
3553+ dir='$(DESTDIR)$(pkgconfigdir)'; $(am__uninstall_files_from_dir)
3554 install-libdbusmenu_jsonloaderincludeHEADERS: $(libdbusmenu_jsonloaderinclude_HEADERS)
3555 @$(NORMAL_INSTALL)
3556 test -z "$(libdbusmenu_jsonloaderincludedir)" || $(MKDIR_P) "$(DESTDIR)$(libdbusmenu_jsonloaderincludedir)"
3557@@ -1797,9 +1745,7 @@
3558 @$(NORMAL_UNINSTALL)
3559 @list='$(libdbusmenu_jsonloaderinclude_HEADERS)'; test -n "$(libdbusmenu_jsonloaderincludedir)" || list=; \
3560 files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
3561- test -n "$$files" || exit 0; \
3562- echo " ( cd '$(DESTDIR)$(libdbusmenu_jsonloaderincludedir)' && rm -f" $$files ")"; \
3563- cd "$(DESTDIR)$(libdbusmenu_jsonloaderincludedir)" && rm -f $$files
3564+ dir='$(DESTDIR)$(libdbusmenu_jsonloaderincludedir)'; $(am__uninstall_files_from_dir)
3565
3566 ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
3567 list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
3568@@ -1934,14 +1880,15 @@
3569 fi; \
3570 dashes=`echo "$$dashes" | sed s/./=/g`; \
3571 if test "$$failed" -eq 0; then \
3572- echo "$$grn$$dashes"; \
3573+ col="$$grn"; \
3574 else \
3575- echo "$$red$$dashes"; \
3576+ col="$$red"; \
3577 fi; \
3578- echo "$$banner"; \
3579- test -z "$$skipped" || echo "$$skipped"; \
3580- test -z "$$report" || echo "$$report"; \
3581- echo "$$dashes$$std"; \
3582+ echo "$${col}$$dashes$${std}"; \
3583+ echo "$${col}$$banner$${std}"; \
3584+ test -z "$$skipped" || echo "$${col}$$skipped$${std}"; \
3585+ test -z "$$report" || echo "$${col}$$report$${std}"; \
3586+ echo "$${col}$$dashes$${std}"; \
3587 test "$$failed" -eq 0; \
3588 else :; fi
3589
3590@@ -1994,10 +1941,15 @@
3591
3592 installcheck: installcheck-am
3593 install-strip:
3594- $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
3595- install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
3596- `test -z '$(STRIP)' || \
3597- echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
3598+ if test -z '$(STRIP)'; then \
3599+ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
3600+ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
3601+ install; \
3602+ else \
3603+ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
3604+ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
3605+ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
3606+ fi
3607 mostlyclean-generic:
3608
3609 clean-generic:
3610@@ -2116,6 +2068,8 @@
3611
3612 test-glib-layout: test-glib-layout-client test-glib-layout-server Makefile.am
3613 @echo "#!/bin/bash" > $@
3614+ @echo export UBUNTU_MENUPROXY="" >> $@
3615+ @echo export G_DEBUG=fatal_criticals >> $@
3616 @echo $(DBUS_RUNNER) --task ./test-glib-layout-client --task-name Client --task ./test-glib-layout-server --task-name Server --ignore-return >> $@
3617 @chmod +x $@
3618
3619@@ -2125,6 +2079,8 @@
3620
3621 test-glib-events: test-glib-events-client test-glib-events-server Makefile.am
3622 @echo "#!/bin/bash" > $@
3623+ @echo export UBUNTU_MENUPROXY="" >> $@
3624+ @echo export G_DEBUG=fatal_criticals >> $@
3625 @echo $(DBUS_RUNNER) --task ./test-glib-events-client --task-name Client --task ./test-glib-events-server --task-name Server --ignore-return >> $@
3626 @chmod +x $@
3627
3628@@ -2134,6 +2090,8 @@
3629
3630 test-json: test-json-client test-json-server Makefile.am
3631 @echo "#!/bin/bash" > $@
3632+ @echo export UBUNTU_MENUPROXY="" >> $@
3633+ @echo export G_DEBUG=fatal_criticals >> $@
3634 @echo $(XVFB_RUN) >> $@
3635 @echo $(DBUS_RUNNER) --task ./test-json-client --task-name Client --parameter $(top_builddir)/tools/dbusmenu-dumper --parameter test-json-01.output.json --ignore-return --task ./test-json-server --task-name Server --parameter $(srcdir)/test-json-01.json --ignore-return >> $@
3636 @echo diff $(srcdir)/test-json-01.json test-json-01.output.json \> /dev/null >> $@
3637@@ -2145,11 +2103,18 @@
3638
3639 test-glib-submenu: test-glib-submenu-client test-glib-submenu-server Makefile.am
3640 @echo "#!/bin/bash" > $@
3641+ @echo export UBUNTU_MENUPROXY="" >> $@
3642+# Removing the check for criticals here as there's one coming from GTK
3643+# in the grabbing code on GTK3. Since we can't add events to the stack
3644+# we can't remove this error from getting thrown :-(
3645+# @echo export G_DEBUG=fatal_criticals >> $@
3646 @echo $(DBUS_RUNNER) --task ./test-glib-submenu-client --task-name Client --task ./test-glib-submenu-server --task-name Server --ignore-return >> $@
3647 @chmod +x $@
3648
3649 test-glib-objects-test: test-glib-objects Makefile.am
3650 @echo "#!/bin/bash" > $@
3651+ @echo export UBUNTU_MENUPROXY="" >> $@
3652+ @echo export G_DEBUG=fatal_criticals >> $@
3653 @echo $(DBUS_RUNNER) --task gtester --task-name test --parameter --verbose --parameter -k --parameter -o --parameter $(OBJECT_XML_REPORT) --parameter ./test-glib-objects >> $@
3654 @chmod +x $@
3655
3656@@ -2159,6 +2124,8 @@
3657
3658 test-glib-properties: test-glib-properties-client test-glib-properties-server Makefile.am
3659 @echo "#!/bin/bash" > $@
3660+ @echo export UBUNTU_MENUPROXY="" >> $@
3661+ @echo export G_DEBUG=fatal_criticals >> $@
3662 @echo $(DBUS_RUNNER) --task ./test-glib-properties-client --task-name Client --task ./test-glib-properties-server --task-name Server --ignore-return >> $@
3663 @chmod +x $@
3664
3665@@ -2168,6 +2135,8 @@
3666
3667 test-glib-proxy: test-glib-proxy-client test-glib-proxy-server test-glib-proxy-proxy Makefile.am
3668 @echo "#!/bin/bash" > $@
3669+ @echo export UBUNTU_MENUPROXY="" >> $@
3670+ @echo export G_DEBUG=fatal_criticals >> $@
3671 @echo $(DBUS_RUNNER) --task ./test-glib-proxy-client --task-name Client --task ./test-glib-proxy-server --task-name Server --ignore-return \\ >> $@
3672 @echo --task ./test-glib-proxy-proxy --parameter test.proxy.first_proxy --parameter test.proxy.second_proxy --task-name Proxy01 --ignore-return \\ >> $@
3673 @echo --task ./test-glib-proxy-proxy --parameter test.proxy.second_proxy --parameter test.proxy.third_proxy --task-name Proxy02 --ignore-return \\ >> $@
3674@@ -2178,12 +2147,16 @@
3675
3676 test-gtk-objects-test: test-gtk-objects Makefile.am
3677 @echo "#!/bin/bash" > $@
3678+ @echo export UBUNTU_MENUPROXY="" >> $@
3679+ @echo export G_DEBUG=fatal_criticals >> $@
3680 @echo $(XVFB_RUN) >> $@
3681 @echo $(DBUS_RUNNER) --task gtester --task-name test --parameter --verbose --parameter -k --parameter -o --parameter $(GTK_OBJECT_XML_REPORT) --parameter ./test-gtk-objects >> $@
3682 @chmod +x $@
3683
3684 test-gtk-parser-test: test-gtk-parser Makefile.am
3685 @echo "#!/bin/bash" > $@
3686+ @echo export UBUNTU_MENUPROXY="" >> $@
3687+ @echo export G_DEBUG=fatal_criticals >> $@
3688 @echo $(XVFB_RUN) >> $@
3689 @echo gtester --verbose -k -o $(GTK_PARSER_XML_REPORT) ./test-gtk-parser >> $@
3690 @chmod +x $@
3691@@ -2194,6 +2167,8 @@
3692
3693 test-gtk-label: test-gtk-label-client test-gtk-label-server test-gtk-label.json Makefile.am
3694 @echo "#!/bin/bash" > $@
3695+ @echo export UBUNTU_MENUPROXY="" >> $@
3696+ @echo export G_DEBUG=fatal_criticals >> $@
3697 @echo $(XVFB_RUN) >> $@
3698 @echo $(DBUS_RUNNER) --task ./test-gtk-label-client --task-name Client --task ./test-gtk-label-server --parameter $(srcdir)/test-gtk-label.json --task-name Server --ignore-return >> $@
3699 @chmod +x $@
3700@@ -2204,6 +2179,8 @@
3701
3702 test-gtk-shortcut: test-gtk-shortcut-client test-gtk-shortcut-server Makefile.am
3703 @echo "#!/bin/bash" > $@
3704+ @echo export UBUNTU_MENUPROXY="" >> $@
3705+ @echo export G_DEBUG=fatal_criticals >> $@
3706 @echo $(XVFB_RUN) >> $@
3707 @echo $(DBUS_RUNNER) --task ./test-gtk-shortcut-client --task-name Client --task ./test-gtk-shortcut-server --task-name Server --ignore-return >> $@
3708 @chmod +x $@
3709@@ -2214,6 +2191,8 @@
3710
3711 test-gtk-shortcut-python: test-gtk-shortcut-server test-gtk-shortcut-client.py Makefile.am
3712 @echo "#!/bin/bash" > $@
3713+ @echo export UBUNTU_MENUPROXY="" >> $@
3714+ @echo export G_DEBUG=fatal_criticals >> $@
3715 @echo $(XVFB_RUN) >> $@
3716 @echo $(DBUS_RUNNER) --task $(srcdir)/test-gtk-shortcut-client.py --task-name Client --task ./test-gtk-shortcut-server --task-name Server --ignore-return >> $@
3717 @chmod +x $@
3718@@ -2224,6 +2203,8 @@
3719
3720 test-gtk-reorder: test-gtk-label-client test-gtk-reorder-server Makefile.am
3721 @echo "#!/bin/bash" > $@
3722+ @echo export UBUNTU_MENUPROXY="" >> $@
3723+ @echo export G_DEBUG=fatal_criticals >> $@
3724 @echo $(XVFB_RUN) >> $@
3725 @echo $(DBUS_RUNNER) --task ./test-gtk-label-client --task-name Client --task ./test-gtk-reorder-server --parameter $(srcdir)/test-gtk-label.json --task-name Server --ignore-return >> $@
3726 @chmod +x $@
3727@@ -2234,6 +2215,8 @@
3728
3729 test-gtk-submenu: test-gtk-submenu-client test-gtk-submenu-server Makefile.am
3730 @echo "#!/bin/bash" > $@
3731+ @echo export UBUNTU_MENUPROXY="" >> $@
3732+ @echo export G_DEBUG=fatal_criticals >> $@
3733 @echo $(XVFB_RUN) >> $@
3734 @echo $(DBUS_RUNNER) --task ./test-gtk-submenu-client --task-name Client --task ./test-gtk-submenu-server --task-name Server --ignore-return >> $@
3735 @chmod +x $@
3736@@ -2244,6 +2227,8 @@
3737
3738 test-mago: test-gtk-label-client test-gtk-label-server $(srcdir)/dbusmenu-gtk/mago_tests/dbusmenu.xml Makefile.am
3739 @echo "#!/bin/bash" > $@
3740+ @echo export UBUNTU_MENUPROXY="" >> $@
3741+ @echo export G_DEBUG=fatal_criticals >> $@
3742 @echo $(XVFB_RUN) >> $@
3743 @echo cd $(srcdir)/dbusmenu-gtk >> $@
3744 @echo /usr/lib/at-spi/at-spi-registryd \& >> $@
3745
3746=== modified file 'tests/test-gtk-submenu-server.c'
3747--- tests/test-gtk-submenu-server.c 2010-11-17 04:04:47 +0000
3748+++ tests/test-gtk-submenu-server.c 2012-02-23 06:13:18 +0000
3749@@ -64,6 +64,7 @@
3750
3751 DbusmenuMenuitem * item;
3752 item = add_item(root, "Folder 1");
3753+ dbusmenu_menuitem_property_set(item, "disposition", "alert");
3754 add_item(item, "1.1");
3755 add_item(item, "1.2");
3756 add_item(item, "1.3");
3757
3758=== modified file 'tools/Makefile.in'
3759--- tools/Makefile.in 2011-09-20 05:03:25 +0000
3760+++ tools/Makefile.in 2012-02-23 06:13:18 +0000
3761@@ -1,9 +1,9 @@
3762-# Makefile.in generated by automake 1.11.1 from Makefile.am.
3763+# Makefile.in generated by automake 1.11.3 from Makefile.am.
3764 # @configure_input@
3765
3766 # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
3767-# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation,
3768-# Inc.
3769+# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software
3770+# Foundation, Inc.
3771 # This Makefile.in is free software; the Free Software Foundation
3772 # gives unlimited permission to copy and/or distribute it,
3773 # with or without modifications, as long as this notice is preserved.
3774@@ -64,8 +64,8 @@
3775 dbusmenu_dumper_DEPENDENCIES = \
3776 ../libdbusmenu-glib/libdbusmenu-glib.la $(am__DEPENDENCIES_1) \
3777 $(am__DEPENDENCIES_1)
3778-AM_V_lt = $(am__v_lt_$(V))
3779-am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY))
3780+AM_V_lt = $(am__v_lt_@AM_V@)
3781+am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@)
3782 am__v_lt_0 = --silent
3783 dbusmenu_dumper_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
3784 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
3785@@ -92,6 +92,12 @@
3786 am__base_list = \
3787 sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
3788 sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
3789+am__uninstall_files_from_dir = { \
3790+ test -z "$$files" \
3791+ || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
3792+ || { echo " ( cd '$$dir' && rm -f" $$files ")"; \
3793+ $(am__cd) "$$dir" && rm -f $$files; }; \
3794+ }
3795 SCRIPTS = $(libexec_SCRIPTS)
3796 DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)
3797 depcomp = $(SHELL) $(top_srcdir)/depcomp
3798@@ -103,21 +109,21 @@
3799 $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \
3800 $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
3801 $(AM_CFLAGS) $(CFLAGS)
3802-AM_V_CC = $(am__v_CC_$(V))
3803-am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY))
3804+AM_V_CC = $(am__v_CC_@AM_V@)
3805+am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@)
3806 am__v_CC_0 = @echo " CC " $@;
3807-AM_V_at = $(am__v_at_$(V))
3808-am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))
3809+AM_V_at = $(am__v_at_@AM_V@)
3810+am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
3811 am__v_at_0 = @
3812 CCLD = $(CC)
3813 LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
3814 $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
3815 $(AM_LDFLAGS) $(LDFLAGS) -o $@
3816-AM_V_CCLD = $(am__v_CCLD_$(V))
3817-am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY))
3818+AM_V_CCLD = $(am__v_CCLD_@AM_V@)
3819+am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@)
3820 am__v_CCLD_0 = @echo " CCLD " $@;
3821-AM_V_GEN = $(am__v_GEN_$(V))
3822-am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY))
3823+AM_V_GEN = $(am__v_GEN_@AM_V@)
3824+am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
3825 am__v_GEN_0 = @echo " GEN " $@;
3826 SOURCES = $(dbusmenu_dumper_SOURCES)
3827 DIST_SOURCES = $(dbusmenu_dumper_SOURCES)
3828@@ -434,7 +440,7 @@
3829 list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \
3830 echo " rm -f" $$list; \
3831 rm -f $$list
3832-dbusmenu-dumper$(EXEEXT): $(dbusmenu_dumper_OBJECTS) $(dbusmenu_dumper_DEPENDENCIES)
3833+dbusmenu-dumper$(EXEEXT): $(dbusmenu_dumper_OBJECTS) $(dbusmenu_dumper_DEPENDENCIES) $(EXTRA_dbusmenu_dumper_DEPENDENCIES)
3834 @rm -f dbusmenu-dumper$(EXEEXT)
3835 $(AM_V_CCLD)$(dbusmenu_dumper_LINK) $(dbusmenu_dumper_OBJECTS) $(dbusmenu_dumper_LDADD) $(LIBS)
3836 install-libexecSCRIPTS: $(libexec_SCRIPTS)
3837@@ -468,9 +474,7 @@
3838 @list='$(libexec_SCRIPTS)'; test -n "$(libexecdir)" || exit 0; \
3839 files=`for p in $$list; do echo "$$p"; done | \
3840 sed -e 's,.*/,,;$(transform)'`; \
3841- test -n "$$list" || exit 0; \
3842- echo " ( cd '$(DESTDIR)$(libexecdir)' && rm -f" $$files ")"; \
3843- cd "$(DESTDIR)$(libexecdir)" && rm -f $$files
3844+ dir='$(DESTDIR)$(libexecdir)'; $(am__uninstall_files_from_dir)
3845
3846 mostlyclean-compile:
3847 -rm -f *.$(OBJEXT)
3848@@ -483,42 +487,37 @@
3849 .c.o:
3850 @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
3851 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
3852-@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
3853-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
3854+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
3855 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3856-@am__fastdepCC_FALSE@ $(COMPILE) -c $<
3857+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c $<
3858
3859 .c.obj:
3860 @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
3861 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
3862-@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
3863-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
3864+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
3865 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3866-@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'`
3867+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c `$(CYGPATH_W) '$<'`
3868
3869 .c.lo:
3870 @am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
3871 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
3872-@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
3873-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
3874+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
3875 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3876-@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $<
3877+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $<
3878
3879 dbusmenu_dumper-dbusmenu-dumper.o: dbusmenu-dumper.c
3880 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(dbusmenu_dumper_CFLAGS) $(CFLAGS) -MT dbusmenu_dumper-dbusmenu-dumper.o -MD -MP -MF $(DEPDIR)/dbusmenu_dumper-dbusmenu-dumper.Tpo -c -o dbusmenu_dumper-dbusmenu-dumper.o `test -f 'dbusmenu-dumper.c' || echo '$(srcdir)/'`dbusmenu-dumper.c
3881 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/dbusmenu_dumper-dbusmenu-dumper.Tpo $(DEPDIR)/dbusmenu_dumper-dbusmenu-dumper.Po
3882-@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
3883-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='dbusmenu-dumper.c' object='dbusmenu_dumper-dbusmenu-dumper.o' libtool=no @AMDEPBACKSLASH@
3884+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='dbusmenu-dumper.c' object='dbusmenu_dumper-dbusmenu-dumper.o' libtool=no @AMDEPBACKSLASH@
3885 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3886-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(dbusmenu_dumper_CFLAGS) $(CFLAGS) -c -o dbusmenu_dumper-dbusmenu-dumper.o `test -f 'dbusmenu-dumper.c' || echo '$(srcdir)/'`dbusmenu-dumper.c
3887+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(dbusmenu_dumper_CFLAGS) $(CFLAGS) -c -o dbusmenu_dumper-dbusmenu-dumper.o `test -f 'dbusmenu-dumper.c' || echo '$(srcdir)/'`dbusmenu-dumper.c
3888
3889 dbusmenu_dumper-dbusmenu-dumper.obj: dbusmenu-dumper.c
3890 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(dbusmenu_dumper_CFLAGS) $(CFLAGS) -MT dbusmenu_dumper-dbusmenu-dumper.obj -MD -MP -MF $(DEPDIR)/dbusmenu_dumper-dbusmenu-dumper.Tpo -c -o dbusmenu_dumper-dbusmenu-dumper.obj `if test -f 'dbusmenu-dumper.c'; then $(CYGPATH_W) 'dbusmenu-dumper.c'; else $(CYGPATH_W) '$(srcdir)/dbusmenu-dumper.c'; fi`
3891 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/dbusmenu_dumper-dbusmenu-dumper.Tpo $(DEPDIR)/dbusmenu_dumper-dbusmenu-dumper.Po
3892-@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
3893-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='dbusmenu-dumper.c' object='dbusmenu_dumper-dbusmenu-dumper.obj' libtool=no @AMDEPBACKSLASH@
3894+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='dbusmenu-dumper.c' object='dbusmenu_dumper-dbusmenu-dumper.obj' libtool=no @AMDEPBACKSLASH@
3895 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3896-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(dbusmenu_dumper_CFLAGS) $(CFLAGS) -c -o dbusmenu_dumper-dbusmenu-dumper.obj `if test -f 'dbusmenu-dumper.c'; then $(CYGPATH_W) 'dbusmenu-dumper.c'; else $(CYGPATH_W) '$(srcdir)/dbusmenu-dumper.c'; fi`
3897+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(dbusmenu_dumper_CFLAGS) $(CFLAGS) -c -o dbusmenu_dumper-dbusmenu-dumper.obj `if test -f 'dbusmenu-dumper.c'; then $(CYGPATH_W) 'dbusmenu-dumper.c'; else $(CYGPATH_W) '$(srcdir)/dbusmenu-dumper.c'; fi`
3898
3899 mostlyclean-libtool:
3900 -rm -f *.lo
3901@@ -542,9 +541,7 @@
3902 @$(NORMAL_UNINSTALL)
3903 @list='$(doc_DATA)'; test -n "$(docdir)" || list=; \
3904 files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
3905- test -n "$$files" || exit 0; \
3906- echo " ( cd '$(DESTDIR)$(docdir)' && rm -f" $$files ")"; \
3907- cd "$(DESTDIR)$(docdir)" && rm -f $$files
3908+ dir='$(DESTDIR)$(docdir)'; $(am__uninstall_files_from_dir)
3909
3910 # This directory's subdirectories are mostly independent; you can cd
3911 # into them and run `make' without going through this Makefile.
3912@@ -757,10 +754,15 @@
3913
3914 installcheck: installcheck-recursive
3915 install-strip:
3916- $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
3917- install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
3918- `test -z '$(STRIP)' || \
3919- echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
3920+ if test -z '$(STRIP)'; then \
3921+ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
3922+ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
3923+ install; \
3924+ else \
3925+ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
3926+ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
3927+ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
3928+ fi
3929 mostlyclean-generic:
3930
3931 clean-generic:
3932
3933=== modified file 'tools/testapp/Makefile.in'
3934--- tools/testapp/Makefile.in 2011-09-20 05:03:25 +0000
3935+++ tools/testapp/Makefile.in 2012-02-23 06:13:18 +0000
3936@@ -1,9 +1,9 @@
3937-# Makefile.in generated by automake 1.11.1 from Makefile.am.
3938+# Makefile.in generated by automake 1.11.3 from Makefile.am.
3939 # @configure_input@
3940
3941 # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
3942-# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation,
3943-# Inc.
3944+# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software
3945+# Foundation, Inc.
3946 # This Makefile.in is free software; the Free Software Foundation
3947 # gives unlimited permission to copy and/or distribute it,
3948 # with or without modifications, as long as this notice is preserved.
3949@@ -60,8 +60,8 @@
3950 dbusmenu_testapp_DEPENDENCIES = \
3951 $(builddir)/../../libdbusmenu-glib/libdbusmenu-glib.la \
3952 $(am__DEPENDENCIES_1)
3953-AM_V_lt = $(am__v_lt_$(V))
3954-am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY))
3955+AM_V_lt = $(am__v_lt_@AM_V@)
3956+am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@)
3957 am__v_lt_0 = --silent
3958 dbusmenu_testapp_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
3959 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
3960@@ -77,21 +77,21 @@
3961 $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \
3962 $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
3963 $(AM_CFLAGS) $(CFLAGS)
3964-AM_V_CC = $(am__v_CC_$(V))
3965-am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY))
3966+AM_V_CC = $(am__v_CC_@AM_V@)
3967+am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@)
3968 am__v_CC_0 = @echo " CC " $@;
3969-AM_V_at = $(am__v_at_$(V))
3970-am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))
3971+AM_V_at = $(am__v_at_@AM_V@)
3972+am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
3973 am__v_at_0 = @
3974 CCLD = $(CC)
3975 LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
3976 $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
3977 $(AM_LDFLAGS) $(LDFLAGS) -o $@
3978-AM_V_CCLD = $(am__v_CCLD_$(V))
3979-am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY))
3980+AM_V_CCLD = $(am__v_CCLD_@AM_V@)
3981+am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@)
3982 am__v_CCLD_0 = @echo " CCLD " $@;
3983-AM_V_GEN = $(am__v_GEN_$(V))
3984-am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY))
3985+AM_V_GEN = $(am__v_GEN_@AM_V@)
3986+am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
3987 am__v_GEN_0 = @echo " GEN " $@;
3988 SOURCES = $(dbusmenu_testapp_SOURCES)
3989 DIST_SOURCES = $(dbusmenu_testapp_SOURCES)
3990@@ -361,7 +361,7 @@
3991 list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \
3992 echo " rm -f" $$list; \
3993 rm -f $$list
3994-dbusmenu-testapp$(EXEEXT): $(dbusmenu_testapp_OBJECTS) $(dbusmenu_testapp_DEPENDENCIES)
3995+dbusmenu-testapp$(EXEEXT): $(dbusmenu_testapp_OBJECTS) $(dbusmenu_testapp_DEPENDENCIES) $(EXTRA_dbusmenu_testapp_DEPENDENCIES)
3996 @rm -f dbusmenu-testapp$(EXEEXT)
3997 $(AM_V_CCLD)$(dbusmenu_testapp_LINK) $(dbusmenu_testapp_OBJECTS) $(dbusmenu_testapp_LDADD) $(LIBS)
3998
3999@@ -376,42 +376,37 @@
4000 .c.o:
4001 @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
4002 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
4003-@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
4004-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
4005+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
4006 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4007-@am__fastdepCC_FALSE@ $(COMPILE) -c $<
4008+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c $<
4009
4010 .c.obj:
4011 @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
4012 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
4013-@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
4014-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
4015+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
4016 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4017-@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'`
4018+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c `$(CYGPATH_W) '$<'`
4019
4020 .c.lo:
4021 @am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
4022 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
4023-@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
4024-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
4025+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
4026 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4027-@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $<
4028+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $<
4029
4030 dbusmenu_testapp-main.o: main.c
4031 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(dbusmenu_testapp_CFLAGS) $(CFLAGS) -MT dbusmenu_testapp-main.o -MD -MP -MF $(DEPDIR)/dbusmenu_testapp-main.Tpo -c -o dbusmenu_testapp-main.o `test -f 'main.c' || echo '$(srcdir)/'`main.c
4032 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/dbusmenu_testapp-main.Tpo $(DEPDIR)/dbusmenu_testapp-main.Po
4033-@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
4034-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='main.c' object='dbusmenu_testapp-main.o' libtool=no @AMDEPBACKSLASH@
4035+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='main.c' object='dbusmenu_testapp-main.o' libtool=no @AMDEPBACKSLASH@
4036 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4037-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(dbusmenu_testapp_CFLAGS) $(CFLAGS) -c -o dbusmenu_testapp-main.o `test -f 'main.c' || echo '$(srcdir)/'`main.c
4038+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(dbusmenu_testapp_CFLAGS) $(CFLAGS) -c -o dbusmenu_testapp-main.o `test -f 'main.c' || echo '$(srcdir)/'`main.c
4039
4040 dbusmenu_testapp-main.obj: main.c
4041 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(dbusmenu_testapp_CFLAGS) $(CFLAGS) -MT dbusmenu_testapp-main.obj -MD -MP -MF $(DEPDIR)/dbusmenu_testapp-main.Tpo -c -o dbusmenu_testapp-main.obj `if test -f 'main.c'; then $(CYGPATH_W) 'main.c'; else $(CYGPATH_W) '$(srcdir)/main.c'; fi`
4042 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/dbusmenu_testapp-main.Tpo $(DEPDIR)/dbusmenu_testapp-main.Po
4043-@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
4044-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='main.c' object='dbusmenu_testapp-main.obj' libtool=no @AMDEPBACKSLASH@
4045+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='main.c' object='dbusmenu_testapp-main.obj' libtool=no @AMDEPBACKSLASH@
4046 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4047-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(dbusmenu_testapp_CFLAGS) $(CFLAGS) -c -o dbusmenu_testapp-main.obj `if test -f 'main.c'; then $(CYGPATH_W) 'main.c'; else $(CYGPATH_W) '$(srcdir)/main.c'; fi`
4048+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(dbusmenu_testapp_CFLAGS) $(CFLAGS) -c -o dbusmenu_testapp-main.obj `if test -f 'main.c'; then $(CYGPATH_W) 'main.c'; else $(CYGPATH_W) '$(srcdir)/main.c'; fi`
4049
4050 mostlyclean-libtool:
4051 -rm -f *.lo
4052@@ -518,10 +513,15 @@
4053
4054 installcheck: installcheck-am
4055 install-strip:
4056- $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
4057- install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
4058- `test -z '$(STRIP)' || \
4059- echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
4060+ if test -z '$(STRIP)'; then \
4061+ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
4062+ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
4063+ install; \
4064+ else \
4065+ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
4066+ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
4067+ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
4068+ fi
4069 mostlyclean-generic:
4070
4071 clean-generic:

Subscribers

People subscribed via source and target branches

to all changes: