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
=== modified file 'AUTHORS'
--- AUTHORS 2012-01-31 05:20:48 +0000
+++ AUTHORS 2012-02-23 06:13:18 +0000
@@ -1,5 +1,6 @@
1# Generated by Makefile. Do not edit.1# Generated by Makefile. Do not edit.
22
3 Alberto Mardegan
3 Alex Launi 4 Alex Launi
4 Ara Pulido 5 Ara Pulido
5 Aurelien Gateau 6 Aurelien Gateau
@@ -17,6 +18,7 @@
17 Martin Pitt 18 Martin Pitt
18 Mathieu Trudel-Lapierre 19 Mathieu Trudel-Lapierre
19 Michael Terry 20 Michael Terry
21 Michal Hruby
20 Mikkel Kamstrup Erlandsen 22 Mikkel Kamstrup Erlandsen
21 Oleg Shparber 23 Oleg Shparber
22 Robert Collins 24 Robert Collins
2325
=== modified file 'ChangeLog'
--- ChangeLog 2012-01-31 05:20:48 +0000
+++ ChangeLog 2012-02-23 06:13:18 +0000
@@ -1,5 +1,167 @@
1# Generated by Makefile. Do not edit.1# Generated by Makefile. Do not edit.
22
32012-02-22 Ted Gould <ted@gould.cx>
4
5 0.5.92
6
72012-02-22 Ted Gould <ted@gould.cx>
8
9 Removing this test as it doesn't work properly with GTK currently
10
112012-02-22 Ted Gould <ted@gould.cx>
12
13 Ensure labels don't leak and don't contain disposition markup
14
152012-02-22 Alberto Mardegan <alberto.mardegan@canonical.com>
16
17 Do not leak the label text
18
19 Also, fix the indentation from the previous commit.
20
212012-02-22 Alberto Mardegan <alberto.mardegan@canonical.com>
22
23 Do not read the label text from the label widget
24
25 The label text stored in the widget might have been modified with markup.
26 Instead of reading it back from the widget, return the text as set by the
27 client, unmodified.
28
29 Alter the test-gtk-submenu so that the correct behaviour is checked for.
30
312012-02-15 Ted Gould <ted@gould.cx>
32
33 0.5.91
34
352012-02-15 Ted Gould <ted@gould.cx>
36
37 Use defines instead of strings
38
392012-02-12 Ted Gould <ted@gould.cx>
40
41 Making sure our strings come from defines to avoid typos
42
432012-02-15 Ted Gould <ted@gould.cx>
44
45 Remove unused const on GStrv's
46
472012-02-10 Ted Gould <ted@gould.cx>
48
49 Removing useless const on dbusmenu_client_get_icon_paths()
50
512012-02-10 Ted Gould <ted@gould.cx>
52
53 Removing useless const on dbusmenu_server_get_icon_paths()
54
552012-02-15 Ted Gould <ted@gould.cx>
56
57 Only free when there is data to free
58
592012-02-10 Ted Gould <ted@gould.cx>
60
61 Actually checking the NULL case properly
62
632012-02-15 Ted Gould <ted@gould.cx>
64
65 Ensure that we only return once even with error
66
672012-02-09 Ted Gould <ted@gould.cx>
68
69 Ensure that we only return the invocation one way
70
712012-02-15 Ted Gould <ted@gould.cx>
72
73 Fix an error on a failure to send properties
74
752012-02-09 Ted Gould <ted@gould.cx>
76
77 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
78
792012-02-15 Ted Gould <ted@gould.cx>
80
81 Ensure the hash variant isn't NULL in the comparison
82
832012-02-09 Ted Gould <ted@gould.cx>
84
85 Because of the change of inhash above we could have hash_variant be NULL here
86
872012-02-15 Ted Gould <ted@gould.cx>
88
89 Fix some of the issues with throwing criticals
90
912012-02-07 Ted Gould <ted@gould.cx>
92
93 Making sure there is no menu proxy in our tests
94
952012-02-07 Ted Gould <ted@gould.cx>
96
97 Don't get the string to check if something is being cleared, use whether the variant is NULL or not
98
992012-02-07 Ted Gould <ted@gould.cx>
100
101 Ensuring that we don't just unparent a menu item, we remove it from the list of children that it has
102
1032012-02-07 Ted Gould <ted@gould.cx>
104
105 Removing criticals for submenu test
106
1072012-02-15 Ted Gould <ted@gould.cx>
108
109 Ensure our tests fail if they throw criticals
110
1112012-02-03 Ted Gould <ted@gould.cx>
112
113 Make it so that critical messages cause the test suite to fail
114
1152012-02-10 Ted Gould <ted@gould.cx>
116
117 Parse and handle a11y descriptions
118
1192012-02-10 Ted Gould <ted@gould.cx>
120
121 Heh, wrote the code but forgot to handle the error
122
1232012-02-10 Ted Gould <ted@gould.cx>
124
125 Refactor setting the ATK Object name into a function that can do all the error handling needed.
126
1272012-02-10 Ted Gould <ted@gould.cx>
128
129 Don't pass a NULL name to set_name
130
1312012-02-10 Ted Gould <ted@gould.cx>
132
133 Use the #define property name instead of a string
134
1352012-02-10 Ted Gould <ted@gould.cx>
136
137 Adding a detail hint on the notify signal
138
1392012-02-01 Luke Yelavich <luke.yelavich@canonical.com>
140
141 Fix up monitoring of the atk object, didn't understand that notification was the same as the GTK widgets as well.
142
1432012-01-31 Luke Yelavich <luke.yelavich@canonical.com>
144
145 When parsing an existing GTK menu hierarchy, we should also set the
146 DBUSMENU_MENU_ITEM_ACCESSIBLE_DESC property, if the accessible name for the menu
147 differs from the text of the menu item label.
148
1492012-02-10 Ted Gould <ted@gould.cx>
150
151 Don't pass NULL to ATK
152
1532012-02-01 Luke Yelavich <luke.yelavich@canonical.com>
154
155 If the ACCESSIBLE_DESC property is set to NULL, set an empty string as the atk object's accessible name, as per atk docs.
156
1572012-02-10 Ted Gould <ted@gould.cx>
158
159 Non-srcdir build fixes
160
1612012-01-27 Michal Hruby <michal.mhr@gmail.com>
162
163 Fix non-srcdir build issues
164
32012-01-30 Ted Gould <ted@gould.cx>1652012-01-30 Ted Gould <ted@gould.cx>
4166
5 0.5.90167 0.5.90
6168
=== modified file 'Makefile.in'
--- Makefile.in 2011-09-20 05:03:25 +0000
+++ Makefile.in 2012-02-23 06:13:18 +0000
@@ -1,9 +1,9 @@
1# Makefile.in generated by automake 1.11.1 from Makefile.am.1# Makefile.in generated by automake 1.11.3 from Makefile.am.
2# @configure_input@2# @configure_input@
33
4# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,4# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
5# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation,5# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software
6# Inc.6# Foundation, Inc.
7# This Makefile.in is free software; the Free Software Foundation7# This Makefile.in is free software; the Free Software Foundation
8# gives unlimited permission to copy and/or distribute it,8# gives unlimited permission to copy and/or distribute it,
9# with or without modifications, as long as this notice is preserved.9# with or without modifications, as long as this notice is preserved.
@@ -54,11 +54,11 @@
54CONFIG_HEADER = config.h54CONFIG_HEADER = config.h
55CONFIG_CLEAN_FILES =55CONFIG_CLEAN_FILES =
56CONFIG_CLEAN_VPATH_FILES =56CONFIG_CLEAN_VPATH_FILES =
57AM_V_GEN = $(am__v_GEN_$(V))57AM_V_GEN = $(am__v_GEN_@AM_V@)
58am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY))58am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
59am__v_GEN_0 = @echo " GEN " $@;59am__v_GEN_0 = @echo " GEN " $@;
60AM_V_at = $(am__v_at_$(V))60AM_V_at = $(am__v_at_@AM_V@)
61am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))61am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
62am__v_at_0 = @62am__v_at_0 = @
63SOURCES =63SOURCES =
64DIST_SOURCES =64DIST_SOURCES =
@@ -81,9 +81,11 @@
81distdir = $(PACKAGE)-$(VERSION)81distdir = $(PACKAGE)-$(VERSION)
82top_distdir = $(distdir)82top_distdir = $(distdir)
83am__remove_distdir = \83am__remove_distdir = \
84 { test ! -d "$(distdir)" \84 if test -d "$(distdir)"; then \
85 || { find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \85 find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \
86 && rm -fr "$(distdir)"; }; }86 && rm -rf "$(distdir)" \
87 || { sleep 5 && rm -rf "$(distdir)"; }; \
88 else :; fi
87am__relativize = \89am__relativize = \
88 dir0=`pwd`; \90 dir0=`pwd`; \
89 sed_first='s,^\([^/]*\)/.*$$,\1,'; \91 sed_first='s,^\([^/]*\)/.*$$,\1,'; \
@@ -112,6 +114,8 @@
112DIST_ARCHIVES = $(distdir).tar.gz114DIST_ARCHIVES = $(distdir).tar.gz
113GZIP_ENV = --best115GZIP_ENV = --best
114distuninstallcheck_listfiles = find . -type f -print116distuninstallcheck_listfiles = find . -type f -print
117am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \
118 | sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$'
115distcleancheck_listfiles = find . -type f -print119distcleancheck_listfiles = find . -type f -print
116ACLOCAL = @ACLOCAL@120ACLOCAL = @ACLOCAL@
117ALL_LINGUAS = @ALL_LINGUAS@121ALL_LINGUAS = @ALL_LINGUAS@
@@ -306,7 +310,7 @@
306 $(MAKE) $(AM_MAKEFLAGS) all-recursive310 $(MAKE) $(AM_MAKEFLAGS) all-recursive
307311
308.SUFFIXES:312.SUFFIXES:
309am--refresh:313am--refresh: Makefile
310 @:314 @:
311$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps)315$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps)
312 @for dep in $?; do \316 @for dep in $?; do \
@@ -342,10 +346,8 @@
342$(am__aclocal_m4_deps):346$(am__aclocal_m4_deps):
343347
344config.h: stamp-h1348config.h: stamp-h1
345 @if test ! -f $@; then \349 @if test ! -f $@; then rm -f stamp-h1; else :; fi
346 rm -f stamp-h1; \350 @if test ! -f $@; then $(MAKE) $(AM_MAKEFLAGS) stamp-h1; else :; fi
347 $(MAKE) $(AM_MAKEFLAGS) stamp-h1; \
348 else :; fi
349351
350stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status352stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status
351 @rm -f stamp-h1353 @rm -f stamp-h1
@@ -577,7 +579,11 @@
577 $(am__remove_distdir)579 $(am__remove_distdir)
578580
579dist-bzip2: distdir581dist-bzip2: distdir
580 tardir=$(distdir) && $(am__tar) | bzip2 -9 -c >$(distdir).tar.bz2582 tardir=$(distdir) && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2
583 $(am__remove_distdir)
584
585dist-lzip: distdir
586 tardir=$(distdir) && $(am__tar) | lzip -c $${LZIP_OPT--9} >$(distdir).tar.lz
581 $(am__remove_distdir)587 $(am__remove_distdir)
582588
583dist-lzma: distdir589dist-lzma: distdir
@@ -585,7 +591,7 @@
585 $(am__remove_distdir)591 $(am__remove_distdir)
586592
587dist-xz: distdir593dist-xz: distdir
588 tardir=$(distdir) && $(am__tar) | xz -c >$(distdir).tar.xz594 tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz
589 $(am__remove_distdir)595 $(am__remove_distdir)
590596
591dist-tarZ: distdir597dist-tarZ: distdir
@@ -616,6 +622,8 @@
616 bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\622 bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\
617 *.tar.lzma*) \623 *.tar.lzma*) \
618 lzma -dc $(distdir).tar.lzma | $(am__untar) ;;\624 lzma -dc $(distdir).tar.lzma | $(am__untar) ;;\
625 *.tar.lz*) \
626 lzip -dc $(distdir).tar.lz | $(am__untar) ;;\
619 *.tar.xz*) \627 *.tar.xz*) \
620 xz -dc $(distdir).tar.xz | $(am__untar) ;;\628 xz -dc $(distdir).tar.xz | $(am__untar) ;;\
621 *.tar.Z*) \629 *.tar.Z*) \
@@ -635,6 +643,7 @@
635 && am__cwd=`pwd` \643 && am__cwd=`pwd` \
636 && $(am__cd) $(distdir)/_build \644 && $(am__cd) $(distdir)/_build \
637 && ../configure --srcdir=.. --prefix="$$dc_install_base" \645 && ../configure --srcdir=.. --prefix="$$dc_install_base" \
646 $(AM_DISTCHECK_CONFIGURE_FLAGS) \
638 $(DISTCHECK_CONFIGURE_FLAGS) \647 $(DISTCHECK_CONFIGURE_FLAGS) \
639 && $(MAKE) $(AM_MAKEFLAGS) \648 && $(MAKE) $(AM_MAKEFLAGS) \
640 && $(MAKE) $(AM_MAKEFLAGS) dvi \649 && $(MAKE) $(AM_MAKEFLAGS) dvi \
@@ -663,8 +672,16 @@
663 list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \672 list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \
664 sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x'673 sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x'
665distuninstallcheck:674distuninstallcheck:
666 @$(am__cd) '$(distuninstallcheck_dir)' \675 @test -n '$(distuninstallcheck_dir)' || { \
667 && test `$(distuninstallcheck_listfiles) | wc -l` -le 1 \676 echo 'ERROR: trying to run $@ with an empty' \
677 '$$(distuninstallcheck_dir)' >&2; \
678 exit 1; \
679 }; \
680 $(am__cd) '$(distuninstallcheck_dir)' || { \
681 echo 'ERROR: cannot chdir into $(distuninstallcheck_dir)' >&2; \
682 exit 1; \
683 }; \
684 test `$(am__distuninstallcheck_listfiles) | wc -l` -eq 0 \
668 || { echo "ERROR: files left after uninstall:" ; \685 || { echo "ERROR: files left after uninstall:" ; \
669 if test -n "$(DESTDIR)"; then \686 if test -n "$(DESTDIR)"; then \
670 echo " (check DESTDIR support)"; \687 echo " (check DESTDIR support)"; \
@@ -695,10 +712,15 @@
695712
696installcheck: installcheck-recursive713installcheck: installcheck-recursive
697install-strip:714install-strip:
698 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \715 if test -z '$(STRIP)'; then \
699 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \716 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
700 `test -z '$(STRIP)' || \717 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
701 echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install718 install; \
719 else \
720 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
721 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
722 "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
723 fi
702mostlyclean-generic:724mostlyclean-generic:
703725
704clean-generic:726clean-generic:
@@ -786,18 +808,19 @@
786.PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \808.PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \
787 all all-am am--refresh check check-am clean clean-generic \809 all all-am am--refresh check check-am clean clean-generic \
788 clean-libtool ctags ctags-recursive dist dist-all dist-bzip2 \810 clean-libtool ctags ctags-recursive dist dist-all dist-bzip2 \
789 dist-gzip dist-hook dist-lzma dist-shar dist-tarZ dist-xz \811 dist-gzip dist-hook dist-lzip dist-lzma dist-shar dist-tarZ \
790 dist-zip distcheck distclean distclean-generic distclean-hdr \812 dist-xz dist-zip distcheck distclean distclean-generic \
791 distclean-libtool distclean-tags distcleancheck distdir \813 distclean-hdr distclean-libtool distclean-tags distcleancheck \
792 distuninstallcheck dvi dvi-am html html-am info info-am \814 distdir distuninstallcheck dvi dvi-am html html-am info \
793 install install-am install-data install-data-am install-dvi \815 info-am install install-am install-data install-data-am \
794 install-dvi-am install-exec install-exec-am install-html \816 install-dvi install-dvi-am install-exec install-exec-am \
795 install-html-am install-info install-info-am install-man \817 install-html install-html-am install-info install-info-am \
796 install-pdf install-pdf-am install-ps install-ps-am \818 install-man install-pdf install-pdf-am install-ps \
797 install-strip installcheck installcheck-am installdirs \819 install-ps-am install-strip installcheck installcheck-am \
798 installdirs-am maintainer-clean maintainer-clean-generic \820 installdirs installdirs-am maintainer-clean \
799 mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \821 maintainer-clean-generic mostlyclean mostlyclean-generic \
800 ps ps-am tags tags-recursive uninstall uninstall-am822 mostlyclean-libtool pdf pdf-am ps ps-am tags tags-recursive \
823 uninstall uninstall-am
801824
802825
803#826#
804827
=== modified file 'aclocal.m4'
--- aclocal.m4 2012-01-31 05:25:37 +0000
+++ aclocal.m4 2012-02-23 06:13:18 +0000
@@ -1,7 +1,8 @@
1# generated automatically by aclocal 1.11.1 -*- Autoconf -*-1# generated automatically by aclocal 1.11.3 -*- Autoconf -*-
22
3# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,3# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
4# 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.4# 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation,
5# Inc.
5# This file is free software; the Free Software Foundation6# This file is free software; the Free Software Foundation
6# gives unlimited permission to copy and/or distribute it,7# gives unlimited permission to copy and/or distribute it,
7# with or without modifications, as long as this notice is preserved.8# with or without modifications, as long as this notice is preserved.
@@ -649,12 +650,15 @@
649fi[]dnl650fi[]dnl
650])# PKG_CHECK_MODULES651])# PKG_CHECK_MODULES
651652
652# Copyright (C) 2002, 2003, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.653# Copyright (C) 2002, 2003, 2005, 2006, 2007, 2008, 2011 Free Software
654# Foundation, Inc.
653#655#
654# This file is free software; the Free Software Foundation656# This file is free software; the Free Software Foundation
655# gives unlimited permission to copy and/or distribute it,657# gives unlimited permission to copy and/or distribute it,
656# with or without modifications, as long as this notice is preserved.658# with or without modifications, as long as this notice is preserved.
657659
660# serial 1
661
658# AM_AUTOMAKE_VERSION(VERSION)662# AM_AUTOMAKE_VERSION(VERSION)
659# ----------------------------663# ----------------------------
660# Automake X.Y traces this macro to ensure aclocal.m4 has been664# Automake X.Y traces this macro to ensure aclocal.m4 has been
@@ -664,7 +668,7 @@
664[am__api_version='1.11'668[am__api_version='1.11'
665dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to669dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to
666dnl require some minimum version. Point them to the right macro.670dnl require some minimum version. Point them to the right macro.
667m4_if([$1], [1.11.1], [],671m4_if([$1], [1.11.3], [],
668 [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl672 [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl
669])673])
670674
@@ -680,19 +684,21 @@
680# Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced.684# Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced.
681# This function is AC_REQUIREd by AM_INIT_AUTOMAKE.685# This function is AC_REQUIREd by AM_INIT_AUTOMAKE.
682AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION],686AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION],
683[AM_AUTOMAKE_VERSION([1.11.1])dnl687[AM_AUTOMAKE_VERSION([1.11.3])dnl
684m4_ifndef([AC_AUTOCONF_VERSION],688m4_ifndef([AC_AUTOCONF_VERSION],
685 [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl689 [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
686_AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))])690_AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))])
687691
688# AM_AUX_DIR_EXPAND -*- Autoconf -*-692# AM_AUX_DIR_EXPAND -*- Autoconf -*-
689693
690# Copyright (C) 2001, 2003, 2005 Free Software Foundation, Inc.694# Copyright (C) 2001, 2003, 2005, 2011 Free Software Foundation, Inc.
691#695#
692# This file is free software; the Free Software Foundation696# This file is free software; the Free Software Foundation
693# gives unlimited permission to copy and/or distribute it,697# gives unlimited permission to copy and/or distribute it,
694# with or without modifications, as long as this notice is preserved.698# with or without modifications, as long as this notice is preserved.
695699
700# serial 1
701
696# For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets702# For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets
697# $ac_aux_dir to `$srcdir/foo'. In other projects, it is set to703# $ac_aux_dir to `$srcdir/foo'. In other projects, it is set to
698# `$srcdir', `$srcdir/..', or `$srcdir/../..'.704# `$srcdir', `$srcdir/..', or `$srcdir/../..'.
@@ -740,13 +746,13 @@
740746
741# AM_COND_IF -*- Autoconf -*-747# AM_COND_IF -*- Autoconf -*-
742748
743# Copyright (C) 2008 Free Software Foundation, Inc.749# Copyright (C) 2008, 2010 Free Software Foundation, Inc.
744#750#
745# This file is free software; the Free Software Foundation751# This file is free software; the Free Software Foundation
746# gives unlimited permission to copy and/or distribute it,752# gives unlimited permission to copy and/or distribute it,
747# with or without modifications, as long as this notice is preserved.753# with or without modifications, as long as this notice is preserved.
748754
749# serial 1755# serial 3
750756
751# _AM_COND_IF757# _AM_COND_IF
752# _AM_COND_ELSE758# _AM_COND_ELSE
@@ -760,15 +766,15 @@
760766
761# AM_COND_IF(COND, [IF-TRUE], [IF-FALSE])767# AM_COND_IF(COND, [IF-TRUE], [IF-FALSE])
762# ---------------------------------------768# ---------------------------------------
763# If the shell condition matching COND is true, execute IF-TRUE,769# If the shell condition COND is true, execute IF-TRUE, otherwise execute
764# otherwise execute IF-FALSE. Allow automake to learn about conditional770# IF-FALSE. Allow automake to learn about conditional instantiating macros
765# instantiating macros (the AC_CONFIG_FOOS).771# (the AC_CONFIG_FOOS).
766AC_DEFUN([AM_COND_IF],772AC_DEFUN([AM_COND_IF],
767[m4_ifndef([_AM_COND_VALUE_$1],773[m4_ifndef([_AM_COND_VALUE_$1],
768 [m4_fatal([$0: no such condition "$1"])])dnl774 [m4_fatal([$0: no such condition "$1"])])dnl
769_AM_COND_IF([$1])dnl775_AM_COND_IF([$1])dnl
770if _AM_COND_VALUE_$1; then776if test -z "$$1_TRUE"; then :
771 m4_default([$2], [:])777 m4_n([$2])[]dnl
772m4_ifval([$3],778m4_ifval([$3],
773[_AM_COND_ELSE([$1])dnl779[_AM_COND_ELSE([$1])dnl
774else780else
@@ -814,14 +820,14 @@
814Usually this means the macro was only invoked conditionally.]])820Usually this means the macro was only invoked conditionally.]])
815fi])])821fi])])
816822
817# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2009823# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2009,
818# Free Software Foundation, Inc.824# 2010, 2011 Free Software Foundation, Inc.
819#825#
820# This file is free software; the Free Software Foundation826# This file is free software; the Free Software Foundation
821# gives unlimited permission to copy and/or distribute it,827# gives unlimited permission to copy and/or distribute it,
822# with or without modifications, as long as this notice is preserved.828# with or without modifications, as long as this notice is preserved.
823829
824# serial 10830# serial 12
825831
826# There are a few dirty hacks below to avoid letting `AC_PROG_CC' be832# There are a few dirty hacks below to avoid letting `AC_PROG_CC' be
827# written in clear, in which case automake, when reading aclocal.m4,833# written in clear, in which case automake, when reading aclocal.m4,
@@ -861,6 +867,7 @@
861 # instance it was reported that on HP-UX the gcc test will end up867 # 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 output868 # making a dummy file named `D' -- because `-MD' means `put the output
863 # in D'.869 # in D'.
870 rm -rf conftest.dir
864 mkdir conftest.dir871 mkdir conftest.dir
865 # Copy depcomp to subdir because otherwise we won't find it if we're872 # Copy depcomp to subdir because otherwise we won't find it if we're
866 # using a relative directory.873 # using a relative directory.
@@ -925,7 +932,7 @@
925 break932 break
926 fi933 fi
927 ;;934 ;;
928 msvisualcpp | msvcmsys)935 msvc7 | msvc7msys | msvisualcpp | msvcmsys)
929 # This compiler won't grok `-c -o', but also, the minuso test has936 # This compiler won't grok `-c -o', but also, the minuso test has
930 # not run yet. These depmodes are late enough in the game, and937 # not run yet. These depmodes are late enough in the game, and
931 # so weak that their functioning should not be impacted.938 # so weak that their functioning should not be impacted.
@@ -990,10 +997,13 @@
990if test "x$enable_dependency_tracking" != xno; then997if test "x$enable_dependency_tracking" != xno; then
991 am_depcomp="$ac_aux_dir/depcomp"998 am_depcomp="$ac_aux_dir/depcomp"
992 AMDEPBACKSLASH='\'999 AMDEPBACKSLASH='\'
1000 am__nodep='_no'
993fi1001fi
994AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno])1002AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno])
995AC_SUBST([AMDEPBACKSLASH])dnl1003AC_SUBST([AMDEPBACKSLASH])dnl
996_AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl1004_AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl
1005AC_SUBST([am__nodep])dnl
1006_AM_SUBST_NOTMAKE([am__nodep])dnl
997])1007])
9981008
999# Generate code to set up dependency tracking. -*- Autoconf -*-1009# Generate code to set up dependency tracking. -*- Autoconf -*-
@@ -1227,12 +1237,15 @@
1227done1237done
1228echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count])1238echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count])
12291239
1230# Copyright (C) 2001, 2003, 2005, 2008 Free Software Foundation, Inc.1240# Copyright (C) 2001, 2003, 2005, 2008, 2011 Free Software Foundation,
1241# Inc.
1231#1242#
1232# This file is free software; the Free Software Foundation1243# This file is free software; the Free Software Foundation
1233# gives unlimited permission to copy and/or distribute it,1244# gives unlimited permission to copy and/or distribute it,
1234# with or without modifications, as long as this notice is preserved.1245# with or without modifications, as long as this notice is preserved.
12351246
1247# serial 1
1248
1236# AM_PROG_INSTALL_SH1249# AM_PROG_INSTALL_SH
1237# ------------------1250# ------------------
1238# Define $install_sh.1251# Define $install_sh.
@@ -1272,8 +1285,8 @@
1272# Add --enable-maintainer-mode option to configure. -*- Autoconf -*-1285# Add --enable-maintainer-mode option to configure. -*- Autoconf -*-
1273# From Jim Meyering1286# From Jim Meyering
12741287
1275# Copyright (C) 1996, 1998, 2000, 2001, 2002, 2003, 2004, 2005, 20081288# Copyright (C) 1996, 1998, 2000, 2001, 2002, 2003, 2004, 2005, 2008,
1276# Free Software Foundation, Inc.1289# 2011 Free Software Foundation, Inc.
1277#1290#
1278# This file is free software; the Free Software Foundation1291# This file is free software; the Free Software Foundation
1279# gives unlimited permission to copy and/or distribute it,1292# gives unlimited permission to copy and/or distribute it,
@@ -1293,7 +1306,7 @@
1293 [disable], [m4_define([am_maintainer_other], [enable])],1306 [disable], [m4_define([am_maintainer_other], [enable])],
1294 [m4_define([am_maintainer_other], [enable])1307 [m4_define([am_maintainer_other], [enable])
1295 m4_warn([syntax], [unexpected argument to AM@&t@_MAINTAINER_MODE: $1])])1308 m4_warn([syntax], [unexpected argument to AM@&t@_MAINTAINER_MODE: $1])])
1296AC_MSG_CHECKING([whether to am_maintainer_other maintainer-specific portions of Makefiles])1309AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles])
1297 dnl maintainer-mode's default is 'disable' unless 'enable' is passed1310 dnl maintainer-mode's default is 'disable' unless 'enable' is passed
1298 AC_ARG_ENABLE([maintainer-mode],1311 AC_ARG_ENABLE([maintainer-mode],
1299[ --][am_maintainer_other][-maintainer-mode am_maintainer_other make rules and dependencies not useful1312[ --][am_maintainer_other][-maintainer-mode am_maintainer_other make rules and dependencies not useful
@@ -1439,12 +1452,15 @@
1439fi1452fi
1440])1453])
14411454
1442# Copyright (C) 2003, 2004, 2005, 2006 Free Software Foundation, Inc.1455# Copyright (C) 2003, 2004, 2005, 2006, 2011 Free Software Foundation,
1456# Inc.
1443#1457#
1444# This file is free software; the Free Software Foundation1458# This file is free software; the Free Software Foundation
1445# gives unlimited permission to copy and/or distribute it,1459# gives unlimited permission to copy and/or distribute it,
1446# with or without modifications, as long as this notice is preserved.1460# with or without modifications, as long as this notice is preserved.
14471461
1462# serial 1
1463
1448# AM_PROG_MKDIR_P1464# AM_PROG_MKDIR_P
1449# ---------------1465# ---------------
1450# Check for `mkdir -p'.1466# Check for `mkdir -p'.
@@ -1467,13 +1483,14 @@
14671483
1468# Helper functions for option handling. -*- Autoconf -*-1484# Helper functions for option handling. -*- Autoconf -*-
14691485
1470# Copyright (C) 2001, 2002, 2003, 2005, 2008 Free Software Foundation, Inc.1486# Copyright (C) 2001, 2002, 2003, 2005, 2008, 2010 Free Software
1487# Foundation, Inc.
1471#1488#
1472# This file is free software; the Free Software Foundation1489# This file is free software; the Free Software Foundation
1473# gives unlimited permission to copy and/or distribute it,1490# gives unlimited permission to copy and/or distribute it,
1474# with or without modifications, as long as this notice is preserved.1491# with or without modifications, as long as this notice is preserved.
14751492
1476# serial 41493# serial 5
14771494
1478# _AM_MANGLE_OPTION(NAME)1495# _AM_MANGLE_OPTION(NAME)
1479# -----------------------1496# -----------------------
@@ -1481,13 +1498,13 @@
1481[[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])])1498[[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])])
14821499
1483# _AM_SET_OPTION(NAME)1500# _AM_SET_OPTION(NAME)
1484# ------------------------------1501# --------------------
1485# Set option NAME. Presently that only means defining a flag for this option.1502# Set option NAME. Presently that only means defining a flag for this option.
1486AC_DEFUN([_AM_SET_OPTION],1503AC_DEFUN([_AM_SET_OPTION],
1487[m4_define(_AM_MANGLE_OPTION([$1]), 1)])1504[m4_define(_AM_MANGLE_OPTION([$1]), 1)])
14881505
1489# _AM_SET_OPTIONS(OPTIONS)1506# _AM_SET_OPTIONS(OPTIONS)
1490# ----------------------------------1507# ------------------------
1491# OPTIONS is a space-separated list of Automake options.1508# OPTIONS is a space-separated list of Automake options.
1492AC_DEFUN([_AM_SET_OPTIONS],1509AC_DEFUN([_AM_SET_OPTIONS],
1493[m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])])1510[m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])])
@@ -1563,13 +1580,13 @@
1563fi1580fi
1564AC_MSG_RESULT(yes)])1581AC_MSG_RESULT(yes)])
15651582
1566# Copyright (C) 2009 Free Software Foundation, Inc.1583# Copyright (C) 2009, 2011 Free Software Foundation, Inc.
1567#1584#
1568# This file is free software; the Free Software Foundation1585# This file is free software; the Free Software Foundation
1569# gives unlimited permission to copy and/or distribute it,1586# gives unlimited permission to copy and/or distribute it,
1570# with or without modifications, as long as this notice is preserved.1587# with or without modifications, as long as this notice is preserved.
15711588
1572# serial 11589# serial 2
15731590
1574# AM_SILENT_RULES([DEFAULT])1591# AM_SILENT_RULES([DEFAULT])
1575# --------------------------1592# --------------------------
@@ -1584,18 +1601,50 @@
1584no) AM_DEFAULT_VERBOSITY=1;;1601no) AM_DEFAULT_VERBOSITY=1;;
1585*) AM_DEFAULT_VERBOSITY=m4_if([$1], [yes], [0], [1]);;1602*) AM_DEFAULT_VERBOSITY=m4_if([$1], [yes], [0], [1]);;
1586esac1603esac
1604dnl
1605dnl A few `make' implementations (e.g., NonStop OS and NextStep)
1606dnl do not support nested variable expansions.
1607dnl See automake bug#9928 and bug#10237.
1608am_make=${MAKE-make}
1609AC_CACHE_CHECK([whether $am_make supports nested variables],
1610 [am_cv_make_support_nested_variables],
1611 [if AS_ECHO([['TRUE=$(BAR$(V))
1612BAR0=false
1613BAR1=true
1614V=1
1615am__doit:
1616 @$(TRUE)
1617.PHONY: am__doit']]) | $am_make -f - >/dev/null 2>&1; then
1618 am_cv_make_support_nested_variables=yes
1619else
1620 am_cv_make_support_nested_variables=no
1621fi])
1622if test $am_cv_make_support_nested_variables = yes; then
1623 dnl Using `$V' instead of `$(V)' breaks IRIX make.
1624 AM_V='$(V)'
1625 AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)'
1626else
1627 AM_V=$AM_DEFAULT_VERBOSITY
1628 AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY
1629fi
1630AC_SUBST([AM_V])dnl
1631AM_SUBST_NOTMAKE([AM_V])dnl
1632AC_SUBST([AM_DEFAULT_V])dnl
1633AM_SUBST_NOTMAKE([AM_DEFAULT_V])dnl
1587AC_SUBST([AM_DEFAULT_VERBOSITY])dnl1634AC_SUBST([AM_DEFAULT_VERBOSITY])dnl
1588AM_BACKSLASH='\'1635AM_BACKSLASH='\'
1589AC_SUBST([AM_BACKSLASH])dnl1636AC_SUBST([AM_BACKSLASH])dnl
1590_AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl1637_AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl
1591])1638])
15921639
1593# Copyright (C) 2001, 2003, 2005 Free Software Foundation, Inc.1640# Copyright (C) 2001, 2003, 2005, 2011 Free Software Foundation, Inc.
1594#1641#
1595# This file is free software; the Free Software Foundation1642# This file is free software; the Free Software Foundation
1596# gives unlimited permission to copy and/or distribute it,1643# gives unlimited permission to copy and/or distribute it,
1597# with or without modifications, as long as this notice is preserved.1644# with or without modifications, as long as this notice is preserved.
15981645
1646# serial 1
1647
1599# AM_PROG_INSTALL_STRIP1648# AM_PROG_INSTALL_STRIP
1600# ---------------------1649# ---------------------
1601# One issue with vendor `install' (even GNU) is that you can't1650# One issue with vendor `install' (even GNU) is that you can't
@@ -1618,13 +1667,13 @@
1618INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"1667INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"
1619AC_SUBST([INSTALL_STRIP_PROGRAM])])1668AC_SUBST([INSTALL_STRIP_PROGRAM])])
16201669
1621# Copyright (C) 2006, 2008 Free Software Foundation, Inc.1670# Copyright (C) 2006, 2008, 2010 Free Software Foundation, Inc.
1622#1671#
1623# This file is free software; the Free Software Foundation1672# This file is free software; the Free Software Foundation
1624# gives unlimited permission to copy and/or distribute it,1673# gives unlimited permission to copy and/or distribute it,
1625# with or without modifications, as long as this notice is preserved.1674# with or without modifications, as long as this notice is preserved.
16261675
1627# serial 21676# serial 3
16281677
1629# _AM_SUBST_NOTMAKE(VARIABLE)1678# _AM_SUBST_NOTMAKE(VARIABLE)
1630# ---------------------------1679# ---------------------------
@@ -1633,13 +1682,13 @@
1633AC_DEFUN([_AM_SUBST_NOTMAKE])1682AC_DEFUN([_AM_SUBST_NOTMAKE])
16341683
1635# AM_SUBST_NOTMAKE(VARIABLE)1684# AM_SUBST_NOTMAKE(VARIABLE)
1636# ---------------------------1685# --------------------------
1637# Public sister of _AM_SUBST_NOTMAKE.1686# Public sister of _AM_SUBST_NOTMAKE.
1638AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)])1687AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)])
16391688
1640# Check how to create a tarball. -*- Autoconf -*-1689# Check how to create a tarball. -*- Autoconf -*-
16411690
1642# Copyright (C) 2004, 2005 Free Software Foundation, Inc.1691# Copyright (C) 2004, 2005, 2012 Free Software Foundation, Inc.
1643#1692#
1644# This file is free software; the Free Software Foundation1693# This file is free software; the Free Software Foundation
1645# gives unlimited permission to copy and/or distribute it,1694# gives unlimited permission to copy and/or distribute it,
@@ -1661,10 +1710,11 @@
1661# a tarball read from stdin.1710# a tarball read from stdin.
1662# $(am__untar) < result.tar1711# $(am__untar) < result.tar
1663AC_DEFUN([_AM_PROG_TAR],1712AC_DEFUN([_AM_PROG_TAR],
1664[# Always define AMTAR for backward compatibility.1713[# Always define AMTAR for backward compatibility. Yes, it's still used
1665AM_MISSING_PROG([AMTAR], [tar])1714# in the wild :-( We should find a proper way to deprecate it ...
1715AC_SUBST([AMTAR], ['$${TAR-tar}'])
1666m4_if([$1], [v7],1716m4_if([$1], [v7],
1667 [am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -'],1717 [am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -'],
1668 [m4_case([$1], [ustar],, [pax],,1718 [m4_case([$1], [ustar],, [pax],,
1669 [m4_fatal([Unknown tar format])])1719 [m4_fatal([Unknown tar format])])
1670AC_MSG_CHECKING([how to create a $1 tar archive])1720AC_MSG_CHECKING([how to create a $1 tar archive])
16711721
=== modified file 'configure'
--- configure 2012-01-31 05:25:37 +0000
+++ configure 2012-02-23 06:13:18 +0000
@@ -1,6 +1,6 @@
1#! /bin/sh1#! /bin/sh
2# Guess values for system-dependent variables and create Makefiles.2# Guess values for system-dependent variables and create Makefiles.
3# Generated by GNU Autoconf 2.68 for libdbusmenu 0.5.90.3# Generated by GNU Autoconf 2.68 for libdbusmenu 0.5.92.
4#4#
5# Report bugs to <ted@canonical.com>.5# Report bugs to <ted@canonical.com>.
6#6#
@@ -572,8 +572,8 @@
572# Identity of this package.572# Identity of this package.
573PACKAGE_NAME='libdbusmenu'573PACKAGE_NAME='libdbusmenu'
574PACKAGE_TARNAME='libdbusmenu'574PACKAGE_TARNAME='libdbusmenu'
575PACKAGE_VERSION='0.5.90'575PACKAGE_VERSION='0.5.92'
576PACKAGE_STRING='libdbusmenu 0.5.90'576PACKAGE_STRING='libdbusmenu 0.5.92'
577PACKAGE_BUGREPORT='ted@canonical.com'577PACKAGE_BUGREPORT='ted@canonical.com'
578PACKAGE_URL=''578PACKAGE_URL=''
579579
@@ -694,6 +694,8 @@
694GLIB_MKENUMS694GLIB_MKENUMS
695AM_BACKSLASH695AM_BACKSLASH
696AM_DEFAULT_VERBOSITY696AM_DEFAULT_VERBOSITY
697AM_DEFAULT_V
698AM_V
697OTOOL64699OTOOL64
698OTOOL700OTOOL
699LIPO701LIPO
@@ -728,6 +730,7 @@
728am__fastdepCC_FALSE730am__fastdepCC_FALSE
729am__fastdepCC_TRUE731am__fastdepCC_TRUE
730CCDEPMODE732CCDEPMODE
733am__nodep
731AMDEPBACKSLASH734AMDEPBACKSLASH
732AMDEP_FALSE735AMDEP_FALSE
733AMDEP_TRUE736AMDEP_TRUE
@@ -1428,7 +1431,7 @@
1428 # Omit some internal or obsolete options to make the list less imposing.1431 # Omit some internal or obsolete options to make the list less imposing.
1429 # This message is too long to be a string in the A/UX 3.1 sh.1432 # This message is too long to be a string in the A/UX 3.1 sh.
1430 cat <<_ACEOF1433 cat <<_ACEOF
1431\`configure' configures libdbusmenu 0.5.90 to adapt to many kinds of systems.1434\`configure' configures libdbusmenu 0.5.92 to adapt to many kinds of systems.
14321435
1433Usage: $0 [OPTION]... [VAR=VALUE]...1436Usage: $0 [OPTION]... [VAR=VALUE]...
14341437
@@ -1498,7 +1501,7 @@
14981501
1499if test -n "$ac_init_help"; then1502if test -n "$ac_init_help"; then
1500 case $ac_init_help in1503 case $ac_init_help in
1501 short | recursive ) echo "Configuration of libdbusmenu 0.5.90:";;1504 short | recursive ) echo "Configuration of libdbusmenu 0.5.92:";;
1502 esac1505 esac
1503 cat <<\_ACEOF1506 cat <<\_ACEOF
15041507
@@ -1647,7 +1650,7 @@
1647test -n "$ac_init_help" && exit $ac_status1650test -n "$ac_init_help" && exit $ac_status
1648if $ac_init_version; then1651if $ac_init_version; then
1649 cat <<\_ACEOF1652 cat <<\_ACEOF
1650libdbusmenu configure 0.5.901653libdbusmenu configure 0.5.92
1651generated by GNU Autoconf 2.681654generated by GNU Autoconf 2.68
16521655
1653Copyright (C) 2010 Free Software Foundation, Inc.1656Copyright (C) 2010 Free Software Foundation, Inc.
@@ -2018,7 +2021,7 @@
2018This file contains any messages produced by compilers while2021This file contains any messages produced by compilers while
2019running configure, to aid debugging if configure makes a mistake.2022running configure, to aid debugging if configure makes a mistake.
20202023
2021It was created by libdbusmenu $as_me 0.5.90, which was2024It was created by libdbusmenu $as_me 0.5.92, which was
2022generated by GNU Autoconf 2.68. Invocation command line was2025generated by GNU Autoconf 2.68. Invocation command line was
20232026
2024 $ $0 $@2027 $ $0 $@
@@ -2839,7 +2842,7 @@
28392842
2840# Define the identity of the package.2843# Define the identity of the package.
2841 PACKAGE=libdbusmenu2844 PACKAGE=libdbusmenu
2842 VERSION=0.5.902845 VERSION=0.5.92
28432846
28442847
2845# Some tools Automake needs.2848# Some tools Automake needs.
@@ -2860,11 +2863,11 @@
28602863
2861# We need awk for the "check" target. The system "awk" is bad on2864# We need awk for the "check" target. The system "awk" is bad on
2862# some platforms.2865# some platforms.
2863# Always define AMTAR for backward compatibility.2866# Always define AMTAR for backward compatibility. Yes, it's still used
28642867# in the wild :-( We should find a proper way to deprecate it ...
2865AMTAR=${AMTAR-"${am_missing_run}tar"}2868AMTAR='$${TAR-tar}'
28662869
2867am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -'2870am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -'
28682871
28692872
28702873
@@ -2961,6 +2964,7 @@
2961if test "x$enable_dependency_tracking" != xno; then2964if test "x$enable_dependency_tracking" != xno; then
2962 am_depcomp="$ac_aux_dir/depcomp"2965 am_depcomp="$ac_aux_dir/depcomp"
2963 AMDEPBACKSLASH='\'2966 AMDEPBACKSLASH='\'
2967 am__nodep='_no'
2964fi2968fi
2965 if test "x$enable_dependency_tracking" != xno; then2969 if test "x$enable_dependency_tracking" != xno; then
2966 AMDEP_TRUE=2970 AMDEP_TRUE=
@@ -3774,6 +3778,7 @@
3774 # instance it was reported that on HP-UX the gcc test will end up3778 # instance it was reported that on HP-UX the gcc test will end up
3775 # making a dummy file named `D' -- because `-MD' means `put the output3779 # making a dummy file named `D' -- because `-MD' means `put the output
3776 # in D'.3780 # in D'.
3781 rm -rf conftest.dir
3777 mkdir conftest.dir3782 mkdir conftest.dir
3778 # Copy depcomp to subdir because otherwise we won't find it if we're3783 # Copy depcomp to subdir because otherwise we won't find it if we're
3779 # using a relative directory.3784 # using a relative directory.
@@ -3833,7 +3838,7 @@
3833 break3838 break
3834 fi3839 fi
3835 ;;3840 ;;
3836 msvisualcpp | msvcmsys)3841 msvc7 | msvc7msys | msvisualcpp | msvcmsys)
3837 # This compiler won't grok `-c -o', but also, the minuso test has3842 # This compiler won't grok `-c -o', but also, the minuso test has
3838 # not run yet. These depmodes are late enough in the game, and3843 # not run yet. These depmodes are late enough in the game, and
3839 # so weak that their functioning should not be impacted.3844 # so weak that their functioning should not be impacted.
@@ -5042,6 +5047,7 @@
5042 # instance it was reported that on HP-UX the gcc test will end up5047 # instance it was reported that on HP-UX the gcc test will end up
5043 # making a dummy file named `D' -- because `-MD' means `put the output5048 # making a dummy file named `D' -- because `-MD' means `put the output
5044 # in D'.5049 # in D'.
5050 rm -rf conftest.dir
5045 mkdir conftest.dir5051 mkdir conftest.dir
5046 # Copy depcomp to subdir because otherwise we won't find it if we're5052 # Copy depcomp to subdir because otherwise we won't find it if we're
5047 # using a relative directory.5053 # using a relative directory.
@@ -5101,7 +5107,7 @@
5101 break5107 break
5102 fi5108 fi
5103 ;;5109 ;;
5104 msvisualcpp | msvcmsys)5110 msvc7 | msvc7msys | msvisualcpp | msvcmsys)
5105 # This compiler won't grok `-c -o', but also, the minuso test has5111 # This compiler won't grok `-c -o', but also, the minuso test has
5106 # not run yet. These depmodes are late enough in the game, and5112 # not run yet. These depmodes are late enough in the game, and
5107 # so weak that their functioning should not be impacted.5113 # so weak that their functioning should not be impacted.
@@ -12893,6 +12899,33 @@
12893no) AM_DEFAULT_VERBOSITY=1;;12899no) AM_DEFAULT_VERBOSITY=1;;
12894*) AM_DEFAULT_VERBOSITY=0;;12900*) AM_DEFAULT_VERBOSITY=0;;
12895esac12901esac
12902am_make=${MAKE-make}
12903{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $am_make supports nested variables" >&5
12904$as_echo_n "checking whether $am_make supports nested variables... " >&6; }
12905if ${am_cv_make_support_nested_variables+:} false; then :
12906 $as_echo_n "(cached) " >&6
12907else
12908 if $as_echo 'TRUE=$(BAR$(V))
12909BAR0=false
12910BAR1=true
12911V=1
12912am__doit:
12913 @$(TRUE)
12914.PHONY: am__doit' | $am_make -f - >/dev/null 2>&1; then
12915 am_cv_make_support_nested_variables=yes
12916else
12917 am_cv_make_support_nested_variables=no
12918fi
12919fi
12920{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_make_support_nested_variables" >&5
12921$as_echo "$am_cv_make_support_nested_variables" >&6; }
12922if test $am_cv_make_support_nested_variables = yes; then
12923 AM_V='$(V)'
12924 AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)'
12925else
12926 AM_V=$AM_DEFAULT_VERBOSITY
12927 AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY
12928fi
12896AM_BACKSLASH='\'12929AM_BACKSLASH='\'
1289712930
1289812931
@@ -14258,9 +14291,8 @@
1425814291
14259if test "x$enable_vala" != "xno"; then :14292if test "x$enable_vala" != "xno"; then :
1426014293
14261 if test "x$found_introspection" = "xyes"; then14294 if test -z "$HAVE_INTROSPECTION_TRUE"; then :
14262 :14295 else
14263else
1426414296
14265 as_fn_error $? "Vala bindings require introspection support, please --enable-introspection" "$LINENO" 514297 as_fn_error $? "Vala bindings require introspection support, please --enable-introspection" "$LINENO" 5
1426614298
@@ -14366,7 +14398,7 @@
14366###########################14398###########################
1436714399
14368LIBDBUSMENU_CURRENT=414400LIBDBUSMENU_CURRENT=4
14369LIBDBUSMENU_REVISION=714401LIBDBUSMENU_REVISION=9
14370LIBDBUSMENU_AGE=014402LIBDBUSMENU_AGE=0
1437114403
1437214404
@@ -15720,7 +15752,7 @@
15720# report actual input values of CONFIG_FILES etc. instead of their15752# report actual input values of CONFIG_FILES etc. instead of their
15721# values after options handling.15753# values after options handling.
15722ac_log="15754ac_log="
15723This file was extended by libdbusmenu $as_me 0.5.90, which was15755This file was extended by libdbusmenu $as_me 0.5.92, which was
15724generated by GNU Autoconf 2.68. Invocation command line was15756generated by GNU Autoconf 2.68. Invocation command line was
1572515757
15726 CONFIG_FILES = $CONFIG_FILES15758 CONFIG_FILES = $CONFIG_FILES
@@ -15786,7 +15818,7 @@
15786cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=115818cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
15787ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"15819ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
15788ac_cs_version="\\15820ac_cs_version="\\
15789libdbusmenu config.status 0.5.9015821libdbusmenu config.status 0.5.92
15790configured by $0, generated by GNU Autoconf 2.68,15822configured by $0, generated by GNU Autoconf 2.68,
15791 with options \\"\$ac_cs_config\\"15823 with options \\"\$ac_cs_config\\"
1579215824
@@ -17637,7 +17669,7 @@
1763717669
17638fi17670fi
1763917671
17640if test -n "$VALA_API_GEN"; then17672if test -z "$HAVE_VALA_TRUE"; then :
17641 { $as_echo "$as_me:${as_lineno-$LINENO}: Vala bindings: yes" >&517673 { $as_echo "$as_me:${as_lineno-$LINENO}: Vala bindings: yes" >&5
17642$as_echo "$as_me: Vala bindings: yes" >&6;}17674$as_echo "$as_me: Vala bindings: yes" >&6;}
17643else17675else
1764417676
=== modified file 'configure.ac'
--- configure.ac 2012-01-31 05:25:37 +0000
+++ configure.ac 2012-02-23 06:13:18 +0000
@@ -1,11 +1,11 @@
11
2AC_INIT(libdbusmenu, 0.5.90, ted@canonical.com)2AC_INIT(libdbusmenu, 0.5.92, ted@canonical.com)
3AC_COPYRIGHT([Copyright 2009,2010 Canonical])3AC_COPYRIGHT([Copyright 2009,2010 Canonical])
44
5AC_PREREQ(2.62)5AC_PREREQ(2.62)
66
7AM_CONFIG_HEADER(config.h)7AM_CONFIG_HEADER(config.h)
8AM_INIT_AUTOMAKE(libdbusmenu, 0.5.90, [-Wno-portability])8AM_INIT_AUTOMAKE(libdbusmenu, 0.5.92, [-Wno-portability])
99
10AM_MAINTAINER_MODE10AM_MAINTAINER_MODE
1111
@@ -165,7 +165,7 @@
165###########################165###########################
166166
167LIBDBUSMENU_CURRENT=4167LIBDBUSMENU_CURRENT=4
168LIBDBUSMENU_REVISION=7168LIBDBUSMENU_REVISION=9
169LIBDBUSMENU_AGE=0169LIBDBUSMENU_AGE=0
170170
171AC_SUBST(LIBDBUSMENU_CURRENT)171AC_SUBST(LIBDBUSMENU_CURRENT)
172172
=== modified file 'debian/changelog'
--- debian/changelog 2012-02-02 19:10:02 +0000
+++ debian/changelog 2012-02-23 06:13:18 +0000
@@ -1,3 +1,26 @@
1libdbusmenu (0.5.92-0ubuntu1~ppa1) precise; urgency=low
2
3 * New upstream release.
4 * Fix label leak and make it not have disposition (LP: #937829)
5
6 -- Ted Gould <ted@ubuntu.com> Thu, 23 Feb 2012 00:10:04 -0600
7
8libdbusmenu (0.5.91-0ubuntu1~ppa1) precise; urgency=low
9
10 * New upstream release.
11 * Remove unused const on GStrv's
12 * Only free when there is data to free
13 * Ensure that we only return once even with error (LP: #929856)
14 * Fix an error on a failure to send properties (LP: #929707)
15 * Ensure the hash variant isn't NULL in the comparison (LP: #929710)
16 * Fix some of the issues with throwing criticals
17 * Ensure our tests fail if they throw criticals
18 * Parse and handle a11y descriptions
19 * Don't pass NULL to ATK
20 * Non-srcdir build fixes
21
22 -- Ted Gould <ted@ubuntu.com> Wed, 15 Feb 2012 11:43:39 -0600
23
1libdbusmenu (0.5.90-0ubuntu1) precise; urgency=low24libdbusmenu (0.5.90-0ubuntu1) precise; urgency=low
225
3 [ Ted Gould ]26 [ Ted Gould ]
427
=== modified file 'docs/Makefile.in'
--- docs/Makefile.in 2011-09-20 05:03:25 +0000
+++ docs/Makefile.in 2012-02-23 06:13:18 +0000
@@ -1,9 +1,9 @@
1# Makefile.in generated by automake 1.11.1 from Makefile.am.1# Makefile.in generated by automake 1.11.3 from Makefile.am.
2# @configure_input@2# @configure_input@
33
4# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,4# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
5# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation,5# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software
6# Inc.6# Foundation, Inc.
7# This Makefile.in is free software; the Free Software Foundation7# This Makefile.in is free software; the Free Software Foundation
8# gives unlimited permission to copy and/or distribute it,8# gives unlimited permission to copy and/or distribute it,
9# with or without modifications, as long as this notice is preserved.9# with or without modifications, as long as this notice is preserved.
@@ -48,11 +48,11 @@
48CONFIG_HEADER = $(top_builddir)/config.h48CONFIG_HEADER = $(top_builddir)/config.h
49CONFIG_CLEAN_FILES =49CONFIG_CLEAN_FILES =
50CONFIG_CLEAN_VPATH_FILES =50CONFIG_CLEAN_VPATH_FILES =
51AM_V_GEN = $(am__v_GEN_$(V))51AM_V_GEN = $(am__v_GEN_@AM_V@)
52am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY))52am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
53am__v_GEN_0 = @echo " GEN " $@;53am__v_GEN_0 = @echo " GEN " $@;
54AM_V_at = $(am__v_at_$(V))54AM_V_at = $(am__v_at_@AM_V@)
55am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))55am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
56am__v_at_0 = @56am__v_at_0 = @
57SOURCES =57SOURCES =
58DIST_SOURCES =58DIST_SOURCES =
@@ -523,10 +523,15 @@
523523
524installcheck: installcheck-recursive524installcheck: installcheck-recursive
525install-strip:525install-strip:
526 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \526 if test -z '$(STRIP)'; then \
527 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \527 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
528 `test -z '$(STRIP)' || \528 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
529 echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install529 install; \
530 else \
531 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
532 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
533 "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
534 fi
530mostlyclean-generic:535mostlyclean-generic:
531536
532clean-generic:537clean-generic:
533538
=== modified file 'docs/libdbusmenu-glib/Makefile.in'
--- docs/libdbusmenu-glib/Makefile.in 2011-09-20 05:03:25 +0000
+++ docs/libdbusmenu-glib/Makefile.in 2012-02-23 06:13:18 +0000
@@ -1,9 +1,9 @@
1# Makefile.in generated by automake 1.11.1 from Makefile.am.1# Makefile.in generated by automake 1.11.3 from Makefile.am.
2# @configure_input@2# @configure_input@
33
4# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,4# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
5# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation,5# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software
6# Inc.6# Foundation, Inc.
7# This Makefile.in is free software; the Free Software Foundation7# This Makefile.in is free software; the Free Software Foundation
8# gives unlimited permission to copy and/or distribute it,8# gives unlimited permission to copy and/or distribute it,
9# with or without modifications, as long as this notice is preserved.9# with or without modifications, as long as this notice is preserved.
@@ -48,11 +48,11 @@
48CONFIG_HEADER = $(top_builddir)/config.h48CONFIG_HEADER = $(top_builddir)/config.h
49CONFIG_CLEAN_FILES =49CONFIG_CLEAN_FILES =
50CONFIG_CLEAN_VPATH_FILES =50CONFIG_CLEAN_VPATH_FILES =
51AM_V_GEN = $(am__v_GEN_$(V))51AM_V_GEN = $(am__v_GEN_@AM_V@)
52am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY))52am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
53am__v_GEN_0 = @echo " GEN " $@;53am__v_GEN_0 = @echo " GEN " $@;
54AM_V_at = $(am__v_at_$(V))54AM_V_at = $(am__v_at_@AM_V@)
55am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))55am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
56am__v_at_0 = @56am__v_at_0 = @
57SOURCES =57SOURCES =
58DIST_SOURCES =58DIST_SOURCES =
@@ -519,10 +519,15 @@
519519
520installcheck: installcheck-recursive520installcheck: installcheck-recursive
521install-strip:521install-strip:
522 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \522 if test -z '$(STRIP)'; then \
523 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \523 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
524 `test -z '$(STRIP)' || \524 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
525 echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install525 install; \
526 else \
527 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
528 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
529 "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
530 fi
526mostlyclean-generic:531mostlyclean-generic:
527532
528clean-generic:533clean-generic:
529534
=== modified file 'docs/libdbusmenu-glib/reference/Makefile.in'
--- docs/libdbusmenu-glib/reference/Makefile.in 2011-09-20 05:03:25 +0000
+++ docs/libdbusmenu-glib/reference/Makefile.in 2012-02-23 06:13:18 +0000
@@ -1,9 +1,9 @@
1# Makefile.in generated by automake 1.11.1 from Makefile.am.1# Makefile.in generated by automake 1.11.3 from Makefile.am.
2# @configure_input@2# @configure_input@
33
4# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,4# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
5# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation,5# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software
6# Inc.6# Foundation, Inc.
7# This Makefile.in is free software; the Free Software Foundation7# This Makefile.in is free software; the Free Software Foundation
8# gives unlimited permission to copy and/or distribute it,8# gives unlimited permission to copy and/or distribute it,
9# with or without modifications, as long as this notice is preserved.9# with or without modifications, as long as this notice is preserved.
@@ -55,11 +55,11 @@
55CONFIG_HEADER = $(top_builddir)/config.h55CONFIG_HEADER = $(top_builddir)/config.h
56CONFIG_CLEAN_FILES = version.xml56CONFIG_CLEAN_FILES = version.xml
57CONFIG_CLEAN_VPATH_FILES =57CONFIG_CLEAN_VPATH_FILES =
58AM_V_GEN = $(am__v_GEN_$(V))58AM_V_GEN = $(am__v_GEN_@AM_V@)
59am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY))59am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
60am__v_GEN_0 = @echo " GEN " $@;60am__v_GEN_0 = @echo " GEN " $@;
61AM_V_at = $(am__v_at_$(V))61AM_V_at = $(am__v_at_@AM_V@)
62am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))62am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
63am__v_at_0 = @63am__v_at_0 = @
64SOURCES =64SOURCES =
65DIST_SOURCES =65DIST_SOURCES =
@@ -387,6 +387,7 @@
387 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \387 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
388 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \388 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
389 esac;389 esac;
390$(top_srcdir)/gtk-doc.local.make:
390391
391$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)392$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
392 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh393 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
@@ -492,14 +493,15 @@
492 fi; \493 fi; \
493 dashes=`echo "$$dashes" | sed s/./=/g`; \494 dashes=`echo "$$dashes" | sed s/./=/g`; \
494 if test "$$failed" -eq 0; then \495 if test "$$failed" -eq 0; then \
495 echo "$$grn$$dashes"; \496 col="$$grn"; \
496 else \497 else \
497 echo "$$red$$dashes"; \498 col="$$red"; \
498 fi; \499 fi; \
499 echo "$$banner"; \500 echo "$${col}$$dashes$${std}"; \
500 test -z "$$skipped" || echo "$$skipped"; \501 echo "$${col}$$banner$${std}"; \
501 test -z "$$report" || echo "$$report"; \502 test -z "$$skipped" || echo "$${col}$$skipped$${std}"; \
502 echo "$$dashes$$std"; \503 test -z "$$report" || echo "$${col}$$report$${std}"; \
504 echo "$${col}$$dashes$${std}"; \
503 test "$$failed" -eq 0; \505 test "$$failed" -eq 0; \
504 else :; fi506 else :; fi
505507
@@ -551,10 +553,15 @@
551553
552installcheck: installcheck-am554installcheck: installcheck-am
553install-strip:555install-strip:
554 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \556 if test -z '$(STRIP)'; then \
555 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \557 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
556 `test -z '$(STRIP)' || \558 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
557 echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install559 install; \
560 else \
561 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
562 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
563 "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
564 fi
558mostlyclean-generic:565mostlyclean-generic:
559566
560clean-generic:567clean-generic:
561568
=== modified file 'docs/libdbusmenu-glib/reference/html/libdbusmenu-glib-DbusmenuClient.html'
--- docs/libdbusmenu-glib/reference/html/libdbusmenu-glib-DbusmenuClient.html 2012-01-31 05:20:48 +0000
+++ docs/libdbusmenu-glib/reference/html/libdbusmenu-glib-DbusmenuClient.html 2012-02-23 06:13:18 +0000
@@ -65,7 +65,7 @@
65 <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>);65 <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>);
66<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>,66<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>,
67 <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>);67 <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>);
68const <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>);68<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>);
69<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>);69<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>);
70<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>);70<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>);
71<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>71<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>
@@ -385,7 +385,7 @@
385<hr>385<hr>
386<div class="refsect2">386<div class="refsect2">
387<a name="dbusmenu-client-get-icon-paths"></a><h3>dbusmenu_client_get_icon_paths ()</h3>387<a name="dbusmenu-client-get-icon-paths"></a><h3>dbusmenu_client_get_icon_paths ()</h3>
388<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>388<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>
389<p>389<p>
390Gets the stored and exported icon paths from the client.390Gets the stored and exported icon paths from the client.
391</p>391</p>
392392
=== modified file 'docs/libdbusmenu-glib/reference/tmpl/client.sgml'
--- docs/libdbusmenu-glib/reference/tmpl/client.sgml 2011-08-25 14:44:13 +0000
+++ docs/libdbusmenu-glib/reference/tmpl/client.sgml 2012-02-23 06:13:18 +0000
@@ -9,13 +9,11 @@
99
10</para>10</para>
1111
12
13<!-- ##### SECTION See_Also ##### -->12<!-- ##### SECTION See_Also ##### -->
14<para>13<para>
1514
16</para>15</para>
1716
18
19<!-- ##### SECTION Stability_Level ##### -->17<!-- ##### SECTION Stability_Level ##### -->
2018
2119
2220
=== modified file 'docs/libdbusmenu-glib/reference/tmpl/menuitem-proxy.sgml'
--- docs/libdbusmenu-glib/reference/tmpl/menuitem-proxy.sgml 2011-08-25 14:44:13 +0000
+++ docs/libdbusmenu-glib/reference/tmpl/menuitem-proxy.sgml 2012-02-23 06:13:18 +0000
@@ -9,13 +9,11 @@
99
10</para>10</para>
1111
12
13<!-- ##### SECTION See_Also ##### -->12<!-- ##### SECTION See_Also ##### -->
14<para>13<para>
1514
16</para>15</para>
1716
18
19<!-- ##### SECTION Stability_Level ##### -->17<!-- ##### SECTION Stability_Level ##### -->
2018
2119
2220
=== modified file 'docs/libdbusmenu-glib/reference/tmpl/menuitem.sgml'
--- docs/libdbusmenu-glib/reference/tmpl/menuitem.sgml 2012-01-31 05:20:48 +0000
+++ docs/libdbusmenu-glib/reference/tmpl/menuitem.sgml 2012-02-23 06:13:18 +0000
@@ -9,13 +9,11 @@
99
10</para>10</para>
1111
12
13<!-- ##### SECTION See_Also ##### -->12<!-- ##### SECTION See_Also ##### -->
14<para>13<para>
1514
16</para>15</para>
1716
18
19<!-- ##### SECTION Stability_Level ##### -->17<!-- ##### SECTION Stability_Level ##### -->
2018
2119
2220
=== modified file 'docs/libdbusmenu-glib/reference/tmpl/server.sgml'
--- docs/libdbusmenu-glib/reference/tmpl/server.sgml 2011-08-25 14:44:13 +0000
+++ docs/libdbusmenu-glib/reference/tmpl/server.sgml 2012-02-23 06:13:18 +0000
@@ -9,13 +9,11 @@
99
10</para>10</para>
1111
12
13<!-- ##### SECTION See_Also ##### -->12<!-- ##### SECTION See_Also ##### -->
14<para>13<para>
1514
16</para>15</para>
1716
18
19<!-- ##### SECTION Stability_Level ##### -->17<!-- ##### SECTION Stability_Level ##### -->
2018
2119
2220
=== modified file 'docs/libdbusmenu-glib/reference/tmpl/types.sgml'
--- docs/libdbusmenu-glib/reference/tmpl/types.sgml 2011-08-25 14:44:13 +0000
+++ docs/libdbusmenu-glib/reference/tmpl/types.sgml 2012-02-23 06:13:18 +0000
@@ -9,13 +9,11 @@
99
10</para>10</para>
1111
12
13<!-- ##### SECTION See_Also ##### -->12<!-- ##### SECTION See_Also ##### -->
14<para>13<para>
1514
16</para>15</para>
1716
18
19<!-- ##### SECTION Stability_Level ##### -->17<!-- ##### SECTION Stability_Level ##### -->
2018
2119
2220
=== modified file 'docs/libdbusmenu-glib/reference/version.xml'
--- docs/libdbusmenu-glib/reference/version.xml 2012-01-31 05:25:37 +0000
+++ docs/libdbusmenu-glib/reference/version.xml 2012-02-23 06:13:18 +0000
@@ -1,1 +1,1 @@
10.5.9010.5.92
22
=== modified file 'docs/libdbusmenu-glib/reference/xml/client.xml'
--- docs/libdbusmenu-glib/reference/xml/client.xml 2011-09-20 05:02:09 +0000
+++ docs/libdbusmenu-glib/reference/xml/client.xml 2012-02-23 06:13:18 +0000
@@ -48,7 +48,7 @@
48 <parameter><link linkend="gpointer"><type>gpointer</type></link> user_data</parameter>);48 <parameter><link linkend="gpointer"><type>gpointer</type></link> user_data</parameter>);
49<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>,49<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>,
50 <parameter>const <link linkend="gchar"><type>gchar</type></link> *object</parameter>);50 <parameter>const <link linkend="gchar"><type>gchar</type></link> *object</parameter>);
51const <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>);51<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>);
52<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>);52<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>);
53<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>);53<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>);
54<link linkend="DbusmenuTextDirection"><returnvalue>DbusmenuTextDirection</returnvalue></link> <link linkend="dbusmenu-client-get-text-direction">dbusmenu_client_get_text_direction</link>54<link linkend="DbusmenuTextDirection"><returnvalue>DbusmenuTextDirection</returnvalue></link> <link linkend="dbusmenu-client-get-text-direction">dbusmenu_client_get_text_direction</link>
@@ -308,7 +308,7 @@
308<refsect2 id="dbusmenu-client-get-icon-paths" role="function">308<refsect2 id="dbusmenu-client-get-icon-paths" role="function">
309<title>dbusmenu_client_get_icon_paths ()</title>309<title>dbusmenu_client_get_icon_paths ()</title>
310<indexterm zone="dbusmenu-client-get-icon-paths"><primary>dbusmenu_client_get_icon_paths</primary></indexterm>310<indexterm zone="dbusmenu-client-get-icon-paths"><primary>dbusmenu_client_get_icon_paths</primary></indexterm>
311<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>311<programlisting><link linkend="GStrv"><returnvalue>GStrv</returnvalue></link> dbusmenu_client_get_icon_paths (<parameter><link linkend="DbusmenuClient"><type>DbusmenuClient</type></link> *client</parameter>);</programlisting>
312<para>312<para>
313Gets the stored and exported icon paths from the client.313Gets the stored and exported icon paths from the client.
314</para><variablelist role="params">314</para><variablelist role="params">
315315
=== modified file 'docs/libdbusmenu-gtk/Makefile.in'
--- docs/libdbusmenu-gtk/Makefile.in 2011-09-20 05:03:25 +0000
+++ docs/libdbusmenu-gtk/Makefile.in 2012-02-23 06:13:18 +0000
@@ -1,9 +1,9 @@
1# Makefile.in generated by automake 1.11.1 from Makefile.am.1# Makefile.in generated by automake 1.11.3 from Makefile.am.
2# @configure_input@2# @configure_input@
33
4# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,4# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
5# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation,5# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software
6# Inc.6# Foundation, Inc.
7# This Makefile.in is free software; the Free Software Foundation7# This Makefile.in is free software; the Free Software Foundation
8# gives unlimited permission to copy and/or distribute it,8# gives unlimited permission to copy and/or distribute it,
9# with or without modifications, as long as this notice is preserved.9# with or without modifications, as long as this notice is preserved.
@@ -48,11 +48,11 @@
48CONFIG_HEADER = $(top_builddir)/config.h48CONFIG_HEADER = $(top_builddir)/config.h
49CONFIG_CLEAN_FILES =49CONFIG_CLEAN_FILES =
50CONFIG_CLEAN_VPATH_FILES =50CONFIG_CLEAN_VPATH_FILES =
51AM_V_GEN = $(am__v_GEN_$(V))51AM_V_GEN = $(am__v_GEN_@AM_V@)
52am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY))52am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
53am__v_GEN_0 = @echo " GEN " $@;53am__v_GEN_0 = @echo " GEN " $@;
54AM_V_at = $(am__v_at_$(V))54AM_V_at = $(am__v_at_@AM_V@)
55am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))55am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
56am__v_at_0 = @56am__v_at_0 = @
57SOURCES =57SOURCES =
58DIST_SOURCES =58DIST_SOURCES =
@@ -519,10 +519,15 @@
519519
520installcheck: installcheck-recursive520installcheck: installcheck-recursive
521install-strip:521install-strip:
522 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \522 if test -z '$(STRIP)'; then \
523 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \523 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
524 `test -z '$(STRIP)' || \524 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
525 echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install525 install; \
526 else \
527 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
528 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
529 "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
530 fi
526mostlyclean-generic:531mostlyclean-generic:
527532
528clean-generic:533clean-generic:
529534
=== modified file 'docs/libdbusmenu-gtk/reference/Makefile.in'
--- docs/libdbusmenu-gtk/reference/Makefile.in 2011-09-20 05:03:25 +0000
+++ docs/libdbusmenu-gtk/reference/Makefile.in 2012-02-23 06:13:18 +0000
@@ -1,9 +1,9 @@
1# Makefile.in generated by automake 1.11.1 from Makefile.am.1# Makefile.in generated by automake 1.11.3 from Makefile.am.
2# @configure_input@2# @configure_input@
33
4# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,4# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
5# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation,5# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software
6# Inc.6# Foundation, Inc.
7# This Makefile.in is free software; the Free Software Foundation7# This Makefile.in is free software; the Free Software Foundation
8# gives unlimited permission to copy and/or distribute it,8# gives unlimited permission to copy and/or distribute it,
9# with or without modifications, as long as this notice is preserved.9# with or without modifications, as long as this notice is preserved.
@@ -55,11 +55,11 @@
55CONFIG_HEADER = $(top_builddir)/config.h55CONFIG_HEADER = $(top_builddir)/config.h
56CONFIG_CLEAN_FILES = version.xml56CONFIG_CLEAN_FILES = version.xml
57CONFIG_CLEAN_VPATH_FILES =57CONFIG_CLEAN_VPATH_FILES =
58AM_V_GEN = $(am__v_GEN_$(V))58AM_V_GEN = $(am__v_GEN_@AM_V@)
59am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY))59am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
60am__v_GEN_0 = @echo " GEN " $@;60am__v_GEN_0 = @echo " GEN " $@;
61AM_V_at = $(am__v_at_$(V))61AM_V_at = $(am__v_at_@AM_V@)
62am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))62am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
63am__v_at_0 = @63am__v_at_0 = @
64SOURCES =64SOURCES =
65DIST_SOURCES =65DIST_SOURCES =
@@ -381,6 +381,7 @@
381 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \381 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
382 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \382 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
383 esac;383 esac;
384$(top_srcdir)/gtk-doc.local.make:
384385
385$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)386$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
386 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh387 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
@@ -486,14 +487,15 @@
486 fi; \487 fi; \
487 dashes=`echo "$$dashes" | sed s/./=/g`; \488 dashes=`echo "$$dashes" | sed s/./=/g`; \
488 if test "$$failed" -eq 0; then \489 if test "$$failed" -eq 0; then \
489 echo "$$grn$$dashes"; \490 col="$$grn"; \
490 else \491 else \
491 echo "$$red$$dashes"; \492 col="$$red"; \
492 fi; \493 fi; \
493 echo "$$banner"; \494 echo "$${col}$$dashes$${std}"; \
494 test -z "$$skipped" || echo "$$skipped"; \495 echo "$${col}$$banner$${std}"; \
495 test -z "$$report" || echo "$$report"; \496 test -z "$$skipped" || echo "$${col}$$skipped$${std}"; \
496 echo "$$dashes$$std"; \497 test -z "$$report" || echo "$${col}$$report$${std}"; \
498 echo "$${col}$$dashes$${std}"; \
497 test "$$failed" -eq 0; \499 test "$$failed" -eq 0; \
498 else :; fi500 else :; fi
499501
@@ -545,10 +547,15 @@
545547
546installcheck: installcheck-am548installcheck: installcheck-am
547install-strip:549install-strip:
548 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \550 if test -z '$(STRIP)'; then \
549 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \551 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
550 `test -z '$(STRIP)' || \552 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
551 echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install553 install; \
554 else \
555 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
556 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
557 "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
558 fi
552mostlyclean-generic:559mostlyclean-generic:
553560
554clean-generic:561clean-generic:
555562
=== modified file 'docs/libdbusmenu-gtk/reference/version.xml'
--- docs/libdbusmenu-gtk/reference/version.xml 2012-01-31 05:25:37 +0000
+++ docs/libdbusmenu-gtk/reference/version.xml 2012-02-23 06:13:18 +0000
@@ -1,1 +1,1 @@
10.5.9010.5.92
22
=== modified file 'libdbusmenu-glib/Makefile.in'
--- libdbusmenu-glib/Makefile.in 2012-01-31 05:25:37 +0000
+++ libdbusmenu-glib/Makefile.in 2012-02-23 06:13:18 +0000
@@ -1,9 +1,9 @@
1# Makefile.in generated by automake 1.11.1 from Makefile.am.1# Makefile.in generated by automake 1.11.3 from Makefile.am.
2# @configure_input@2# @configure_input@
33
4# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,4# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
5# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation,5# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software
6# Inc.6# Foundation, Inc.
7# This Makefile.in is free software; the Free Software Foundation7# This Makefile.in is free software; the Free Software Foundation
8# gives unlimited permission to copy and/or distribute it,8# gives unlimited permission to copy and/or distribute it,
9# with or without modifications, as long as this notice is preserved.9# with or without modifications, as long as this notice is preserved.
@@ -94,6 +94,12 @@
94am__base_list = \94am__base_list = \
95 sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \95 sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
96 sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'96 sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
97am__uninstall_files_from_dir = { \
98 test -z "$$files" \
99 || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
100 || { echo " ( cd '$$dir' && rm -f" $$files ")"; \
101 $(am__cd) "$$dir" && rm -f $$files; }; \
102 }
97am__installdirs = "$(DESTDIR)$(libdir)" "$(DESTDIR)$(girdir)" \103am__installdirs = "$(DESTDIR)$(libdir)" "$(DESTDIR)$(girdir)" \
98 "$(DESTDIR)$(pkgconfigdir)" "$(DESTDIR)$(typelibdir)" \104 "$(DESTDIR)$(pkgconfigdir)" "$(DESTDIR)$(typelibdir)" \
99 "$(DESTDIR)$(vapidir)" \105 "$(DESTDIR)$(vapidir)" \
@@ -114,8 +120,8 @@
114 libdbusmenu_glib_la-client-menuitem.lo \120 libdbusmenu_glib_la-client-menuitem.lo \
115 libdbusmenu_glib_la-client.lo121 libdbusmenu_glib_la-client.lo
116libdbusmenu_glib_la_OBJECTS = $(am_libdbusmenu_glib_la_OBJECTS)122libdbusmenu_glib_la_OBJECTS = $(am_libdbusmenu_glib_la_OBJECTS)
117AM_V_lt = $(am__v_lt_$(V))123AM_V_lt = $(am__v_lt_@AM_V@)
118am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY))124am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@)
119am__v_lt_0 = --silent125am__v_lt_0 = --silent
120libdbusmenu_glib_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \126libdbusmenu_glib_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
121 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \127 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
@@ -131,21 +137,21 @@
131 $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \137 $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \
132 $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \138 $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
133 $(AM_CFLAGS) $(CFLAGS)139 $(AM_CFLAGS) $(CFLAGS)
134AM_V_CC = $(am__v_CC_$(V))140AM_V_CC = $(am__v_CC_@AM_V@)
135am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY))141am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@)
136am__v_CC_0 = @echo " CC " $@;142am__v_CC_0 = @echo " CC " $@;
137AM_V_at = $(am__v_at_$(V))143AM_V_at = $(am__v_at_@AM_V@)
138am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))144am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
139am__v_at_0 = @145am__v_at_0 = @
140CCLD = $(CC)146CCLD = $(CC)
141LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \147LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
142 $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \148 $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
143 $(AM_LDFLAGS) $(LDFLAGS) -o $@149 $(AM_LDFLAGS) $(LDFLAGS) -o $@
144AM_V_CCLD = $(am__v_CCLD_$(V))150AM_V_CCLD = $(am__v_CCLD_@AM_V@)
145am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY))151am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@)
146am__v_CCLD_0 = @echo " CCLD " $@;152am__v_CCLD_0 = @echo " CCLD " $@;
147AM_V_GEN = $(am__v_GEN_$(V))153AM_V_GEN = $(am__v_GEN_@AM_V@)
148am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY))154am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
149am__v_GEN_0 = @echo " GEN " $@;155am__v_GEN_0 = @echo " GEN " $@;
150SOURCES = $(libdbusmenu_glib_la_SOURCES)156SOURCES = $(libdbusmenu_glib_la_SOURCES)
151DIST_SOURCES = $(libdbusmenu_glib_la_SOURCES)157DIST_SOURCES = $(libdbusmenu_glib_la_SOURCES)
@@ -477,6 +483,7 @@
477 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \483 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
478 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \484 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
479 esac;485 esac;
486$(top_srcdir)/Makefile.am.enum:
480487
481$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)488$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
482 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh489 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
@@ -519,7 +526,7 @@
519 echo "rm -f \"$${dir}/so_locations\""; \526 echo "rm -f \"$${dir}/so_locations\""; \
520 rm -f "$${dir}/so_locations"; \527 rm -f "$${dir}/so_locations"; \
521 done528 done
522libdbusmenu-glib.la: $(libdbusmenu_glib_la_OBJECTS) $(libdbusmenu_glib_la_DEPENDENCIES) 529libdbusmenu-glib.la: $(libdbusmenu_glib_la_OBJECTS) $(libdbusmenu_glib_la_DEPENDENCIES) $(EXTRA_libdbusmenu_glib_la_DEPENDENCIES)
523 $(AM_V_CCLD)$(libdbusmenu_glib_la_LINK) -rpath $(libdir) $(libdbusmenu_glib_la_OBJECTS) $(libdbusmenu_glib_la_LIBADD) $(LIBS)530 $(AM_V_CCLD)$(libdbusmenu_glib_la_LINK) -rpath $(libdir) $(libdbusmenu_glib_la_OBJECTS) $(libdbusmenu_glib_la_LIBADD) $(LIBS)
524531
525mostlyclean-compile:532mostlyclean-compile:
@@ -543,114 +550,100 @@
543.c.o:550.c.o:
544@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<551@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
545@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po552@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
546@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@553@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
547@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
548@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@554@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
549@am__fastdepCC_FALSE@ $(COMPILE) -c $<555@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c $<
550556
551.c.obj:557.c.obj:
552@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`558@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
553@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po559@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
554@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@560@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
555@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
556@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@561@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
557@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'`562@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c `$(CYGPATH_W) '$<'`
558563
559.c.lo:564.c.lo:
560@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<565@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
561@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo566@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
562@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@567@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
563@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
564@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@568@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
565@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $<569@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $<
566570
567libdbusmenu_glib_la-dbus-menu-clean.xml.lo: dbus-menu-clean.xml.c571libdbusmenu_glib_la-dbus-menu-clean.xml.lo: dbus-menu-clean.xml.c
568@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.c572@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
569@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.Plo573@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
570@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@574@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@
571@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='dbus-menu-clean.xml.c' object='libdbusmenu_glib_la-dbus-menu-clean.xml.lo' libtool=yes @AMDEPBACKSLASH@
572@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@575@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
573@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.c576@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
574577
575libdbusmenu_glib_la-defaults.lo: defaults.c578libdbusmenu_glib_la-defaults.lo: defaults.c
576@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.c579@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
577@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libdbusmenu_glib_la-defaults.Tpo $(DEPDIR)/libdbusmenu_glib_la-defaults.Plo580@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libdbusmenu_glib_la-defaults.Tpo $(DEPDIR)/libdbusmenu_glib_la-defaults.Plo
578@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@581@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='defaults.c' object='libdbusmenu_glib_la-defaults.lo' libtool=yes @AMDEPBACKSLASH@
579@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='defaults.c' object='libdbusmenu_glib_la-defaults.lo' libtool=yes @AMDEPBACKSLASH@
580@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@582@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
581@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.c583@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
582584
583libdbusmenu_glib_la-enum-types.lo: enum-types.c585libdbusmenu_glib_la-enum-types.lo: enum-types.c
584@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.c586@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
585@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libdbusmenu_glib_la-enum-types.Tpo $(DEPDIR)/libdbusmenu_glib_la-enum-types.Plo587@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libdbusmenu_glib_la-enum-types.Tpo $(DEPDIR)/libdbusmenu_glib_la-enum-types.Plo
586@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@588@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='enum-types.c' object='libdbusmenu_glib_la-enum-types.lo' libtool=yes @AMDEPBACKSLASH@
587@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='enum-types.c' object='libdbusmenu_glib_la-enum-types.lo' libtool=yes @AMDEPBACKSLASH@
588@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@589@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
589@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.c590@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
590591
591libdbusmenu_glib_la-menuitem.lo: menuitem.c592libdbusmenu_glib_la-menuitem.lo: menuitem.c
592@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.c593@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
593@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libdbusmenu_glib_la-menuitem.Tpo $(DEPDIR)/libdbusmenu_glib_la-menuitem.Plo594@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libdbusmenu_glib_la-menuitem.Tpo $(DEPDIR)/libdbusmenu_glib_la-menuitem.Plo
594@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@595@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='menuitem.c' object='libdbusmenu_glib_la-menuitem.lo' libtool=yes @AMDEPBACKSLASH@
595@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='menuitem.c' object='libdbusmenu_glib_la-menuitem.lo' libtool=yes @AMDEPBACKSLASH@
596@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@596@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
597@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.c597@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
598598
599libdbusmenu_glib_la-menuitem-marshal.lo: menuitem-marshal.c599libdbusmenu_glib_la-menuitem-marshal.lo: menuitem-marshal.c
600@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.c600@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
601@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libdbusmenu_glib_la-menuitem-marshal.Tpo $(DEPDIR)/libdbusmenu_glib_la-menuitem-marshal.Plo601@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libdbusmenu_glib_la-menuitem-marshal.Tpo $(DEPDIR)/libdbusmenu_glib_la-menuitem-marshal.Plo
602@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@602@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='menuitem-marshal.c' object='libdbusmenu_glib_la-menuitem-marshal.lo' libtool=yes @AMDEPBACKSLASH@
603@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='menuitem-marshal.c' object='libdbusmenu_glib_la-menuitem-marshal.lo' libtool=yes @AMDEPBACKSLASH@
604@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@603@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
605@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.c604@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
606605
607libdbusmenu_glib_la-menuitem-proxy.lo: menuitem-proxy.c606libdbusmenu_glib_la-menuitem-proxy.lo: menuitem-proxy.c
608@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.c607@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
609@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libdbusmenu_glib_la-menuitem-proxy.Tpo $(DEPDIR)/libdbusmenu_glib_la-menuitem-proxy.Plo608@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libdbusmenu_glib_la-menuitem-proxy.Tpo $(DEPDIR)/libdbusmenu_glib_la-menuitem-proxy.Plo
610@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@609@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='menuitem-proxy.c' object='libdbusmenu_glib_la-menuitem-proxy.lo' libtool=yes @AMDEPBACKSLASH@
611@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='menuitem-proxy.c' object='libdbusmenu_glib_la-menuitem-proxy.lo' libtool=yes @AMDEPBACKSLASH@
612@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@610@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
613@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.c611@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
614612
615libdbusmenu_glib_la-server.lo: server.c613libdbusmenu_glib_la-server.lo: server.c
616@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.c614@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
617@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libdbusmenu_glib_la-server.Tpo $(DEPDIR)/libdbusmenu_glib_la-server.Plo615@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libdbusmenu_glib_la-server.Tpo $(DEPDIR)/libdbusmenu_glib_la-server.Plo
618@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@616@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='server.c' object='libdbusmenu_glib_la-server.lo' libtool=yes @AMDEPBACKSLASH@
619@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='server.c' object='libdbusmenu_glib_la-server.lo' libtool=yes @AMDEPBACKSLASH@
620@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@617@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
621@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.c618@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
622619
623libdbusmenu_glib_la-server-marshal.lo: server-marshal.c620libdbusmenu_glib_la-server-marshal.lo: server-marshal.c
624@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.c621@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
625@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libdbusmenu_glib_la-server-marshal.Tpo $(DEPDIR)/libdbusmenu_glib_la-server-marshal.Plo622@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libdbusmenu_glib_la-server-marshal.Tpo $(DEPDIR)/libdbusmenu_glib_la-server-marshal.Plo
626@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@623@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='server-marshal.c' object='libdbusmenu_glib_la-server-marshal.lo' libtool=yes @AMDEPBACKSLASH@
627@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='server-marshal.c' object='libdbusmenu_glib_la-server-marshal.lo' libtool=yes @AMDEPBACKSLASH@
628@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@624@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
629@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.c625@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
630626
631libdbusmenu_glib_la-client-marshal.lo: client-marshal.c627libdbusmenu_glib_la-client-marshal.lo: client-marshal.c
632@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.c628@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
633@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libdbusmenu_glib_la-client-marshal.Tpo $(DEPDIR)/libdbusmenu_glib_la-client-marshal.Plo629@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libdbusmenu_glib_la-client-marshal.Tpo $(DEPDIR)/libdbusmenu_glib_la-client-marshal.Plo
634@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@630@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='client-marshal.c' object='libdbusmenu_glib_la-client-marshal.lo' libtool=yes @AMDEPBACKSLASH@
635@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='client-marshal.c' object='libdbusmenu_glib_la-client-marshal.lo' libtool=yes @AMDEPBACKSLASH@
636@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@631@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
637@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.c632@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
638633
639libdbusmenu_glib_la-client-menuitem.lo: client-menuitem.c634libdbusmenu_glib_la-client-menuitem.lo: client-menuitem.c
640@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.c635@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
641@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libdbusmenu_glib_la-client-menuitem.Tpo $(DEPDIR)/libdbusmenu_glib_la-client-menuitem.Plo636@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libdbusmenu_glib_la-client-menuitem.Tpo $(DEPDIR)/libdbusmenu_glib_la-client-menuitem.Plo
642@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@637@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='client-menuitem.c' object='libdbusmenu_glib_la-client-menuitem.lo' libtool=yes @AMDEPBACKSLASH@
643@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='client-menuitem.c' object='libdbusmenu_glib_la-client-menuitem.lo' libtool=yes @AMDEPBACKSLASH@
644@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@638@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
645@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.c639@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
646640
647libdbusmenu_glib_la-client.lo: client.c641libdbusmenu_glib_la-client.lo: client.c
648@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.c642@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
649@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libdbusmenu_glib_la-client.Tpo $(DEPDIR)/libdbusmenu_glib_la-client.Plo643@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libdbusmenu_glib_la-client.Tpo $(DEPDIR)/libdbusmenu_glib_la-client.Plo
650@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@644@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='client.c' object='libdbusmenu_glib_la-client.lo' libtool=yes @AMDEPBACKSLASH@
651@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='client.c' object='libdbusmenu_glib_la-client.lo' libtool=yes @AMDEPBACKSLASH@
652@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@645@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
653@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.c646@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
654647
655mostlyclean-libtool:648mostlyclean-libtool:
656 -rm -f *.lo649 -rm -f *.lo
@@ -674,9 +667,7 @@
674 @$(NORMAL_UNINSTALL)667 @$(NORMAL_UNINSTALL)
675 @list='$(gir_DATA)'; test -n "$(girdir)" || list=; \668 @list='$(gir_DATA)'; test -n "$(girdir)" || list=; \
676 files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \669 files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
677 test -n "$$files" || exit 0; \670 dir='$(DESTDIR)$(girdir)'; $(am__uninstall_files_from_dir)
678 echo " ( cd '$(DESTDIR)$(girdir)' && rm -f" $$files ")"; \
679 cd "$(DESTDIR)$(girdir)" && rm -f $$files
680install-pkgconfigDATA: $(pkgconfig_DATA)671install-pkgconfigDATA: $(pkgconfig_DATA)
681 @$(NORMAL_INSTALL)672 @$(NORMAL_INSTALL)
682 test -z "$(pkgconfigdir)" || $(MKDIR_P) "$(DESTDIR)$(pkgconfigdir)"673 test -z "$(pkgconfigdir)" || $(MKDIR_P) "$(DESTDIR)$(pkgconfigdir)"
@@ -694,9 +685,7 @@
694 @$(NORMAL_UNINSTALL)685 @$(NORMAL_UNINSTALL)
695 @list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \686 @list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \
696 files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \687 files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
697 test -n "$$files" || exit 0; \688 dir='$(DESTDIR)$(pkgconfigdir)'; $(am__uninstall_files_from_dir)
698 echo " ( cd '$(DESTDIR)$(pkgconfigdir)' && rm -f" $$files ")"; \
699 cd "$(DESTDIR)$(pkgconfigdir)" && rm -f $$files
700install-typelibDATA: $(typelib_DATA)689install-typelibDATA: $(typelib_DATA)
701 @$(NORMAL_INSTALL)690 @$(NORMAL_INSTALL)
702 test -z "$(typelibdir)" || $(MKDIR_P) "$(DESTDIR)$(typelibdir)"691 test -z "$(typelibdir)" || $(MKDIR_P) "$(DESTDIR)$(typelibdir)"
@@ -714,9 +703,7 @@
714 @$(NORMAL_UNINSTALL)703 @$(NORMAL_UNINSTALL)
715 @list='$(typelib_DATA)'; test -n "$(typelibdir)" || list=; \704 @list='$(typelib_DATA)'; test -n "$(typelibdir)" || list=; \
716 files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \705 files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
717 test -n "$$files" || exit 0; \706 dir='$(DESTDIR)$(typelibdir)'; $(am__uninstall_files_from_dir)
718 echo " ( cd '$(DESTDIR)$(typelibdir)' && rm -f" $$files ")"; \
719 cd "$(DESTDIR)$(typelibdir)" && rm -f $$files
720install-vapiDATA: $(vapi_DATA)707install-vapiDATA: $(vapi_DATA)
721 @$(NORMAL_INSTALL)708 @$(NORMAL_INSTALL)
722 test -z "$(vapidir)" || $(MKDIR_P) "$(DESTDIR)$(vapidir)"709 test -z "$(vapidir)" || $(MKDIR_P) "$(DESTDIR)$(vapidir)"
@@ -734,9 +721,7 @@
734 @$(NORMAL_UNINSTALL)721 @$(NORMAL_UNINSTALL)
735 @list='$(vapi_DATA)'; test -n "$(vapidir)" || list=; \722 @list='$(vapi_DATA)'; test -n "$(vapidir)" || list=; \
736 files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \723 files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
737 test -n "$$files" || exit 0; \724 dir='$(DESTDIR)$(vapidir)'; $(am__uninstall_files_from_dir)
738 echo " ( cd '$(DESTDIR)$(vapidir)' && rm -f" $$files ")"; \
739 cd "$(DESTDIR)$(vapidir)" && rm -f $$files
740install-libdbusmenu_glibincludeHEADERS: $(libdbusmenu_glibinclude_HEADERS)725install-libdbusmenu_glibincludeHEADERS: $(libdbusmenu_glibinclude_HEADERS)
741 @$(NORMAL_INSTALL)726 @$(NORMAL_INSTALL)
742 test -z "$(libdbusmenu_glibincludedir)" || $(MKDIR_P) "$(DESTDIR)$(libdbusmenu_glibincludedir)"727 test -z "$(libdbusmenu_glibincludedir)" || $(MKDIR_P) "$(DESTDIR)$(libdbusmenu_glibincludedir)"
@@ -754,9 +739,7 @@
754 @$(NORMAL_UNINSTALL)739 @$(NORMAL_UNINSTALL)
755 @list='$(libdbusmenu_glibinclude_HEADERS)'; test -n "$(libdbusmenu_glibincludedir)" || list=; \740 @list='$(libdbusmenu_glibinclude_HEADERS)'; test -n "$(libdbusmenu_glibincludedir)" || list=; \
756 files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \741 files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
757 test -n "$$files" || exit 0; \742 dir='$(DESTDIR)$(libdbusmenu_glibincludedir)'; $(am__uninstall_files_from_dir)
758 echo " ( cd '$(DESTDIR)$(libdbusmenu_glibincludedir)' && rm -f" $$files ")"; \
759 cd "$(DESTDIR)$(libdbusmenu_glibincludedir)" && rm -f $$files
760743
761ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)744ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
762 list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \745 list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
@@ -859,10 +842,15 @@
859842
860installcheck: installcheck-am843installcheck: installcheck-am
861install-strip:844install-strip:
862 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \845 if test -z '$(STRIP)'; then \
863 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \846 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
864 `test -z '$(STRIP)' || \847 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
865 echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install848 install; \
849 else \
850 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
851 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
852 "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
853 fi
866mostlyclean-generic:854mostlyclean-generic:
867855
868clean-generic:856clean-generic:
869857
=== modified file 'libdbusmenu-glib/client.c'
--- libdbusmenu-glib/client.c 2012-01-31 05:25:37 +0000
+++ libdbusmenu-glib/client.c 2012-02-23 06:13:18 +0000
@@ -395,7 +395,7 @@
395395
396 /* Only used for queueing up a new command, so we can396 /* Only used for queueing up a new command, so we can
397 just drop this array. */397 just drop this array. */
398 if (priv->delayed_property_list == NULL) {398 if (priv->delayed_property_list != NULL) {
399 gchar ** dataregion = (gchar **)g_array_free(priv->delayed_property_list, FALSE);399 gchar ** dataregion = (gchar **)g_array_free(priv->delayed_property_list, FALSE);
400 if (dataregion != NULL) {400 if (dataregion != NULL) {
401 g_strfreev(dataregion);401 g_strfreev(dataregion);
@@ -403,7 +403,7 @@
403 priv->delayed_property_list = NULL;403 priv->delayed_property_list = NULL;
404 }404 }
405405
406 if (priv->delayed_property_listeners == NULL) {406 if (priv->delayed_property_listeners != NULL) {
407 gint i;407 gint i;
408 GError * localerror = NULL;408 GError * localerror = NULL;
409409
@@ -2210,7 +2210,7 @@
2210 * memory managed by the client. Duplicate if you want2210 * memory managed by the client. Duplicate if you want
2211 * to keep them.2211 * to keep them.
2212 */2212 */
2213const GStrv2213GStrv
2214dbusmenu_client_get_icon_paths (DbusmenuClient * client)2214dbusmenu_client_get_icon_paths (DbusmenuClient * client)
2215{2215{
2216 g_return_val_if_fail(DBUSMENU_IS_CLIENT(client), NULL);2216 g_return_val_if_fail(DBUSMENU_IS_CLIENT(client), NULL);
22172217
=== modified file 'libdbusmenu-glib/client.h'
--- libdbusmenu-glib/client.h 2011-03-03 19:48:56 +0000
+++ libdbusmenu-glib/client.h 2012-02-23 06:13:18 +0000
@@ -212,7 +212,7 @@
212 GDestroyNotify destroy_func);212 GDestroyNotify destroy_func);
213DbusmenuTextDirection dbusmenu_client_get_text_direction (DbusmenuClient * client);213DbusmenuTextDirection dbusmenu_client_get_text_direction (DbusmenuClient * client);
214DbusmenuStatus dbusmenu_client_get_status (DbusmenuClient * client);214DbusmenuStatus dbusmenu_client_get_status (DbusmenuClient * client);
215const GStrv dbusmenu_client_get_icon_paths (DbusmenuClient * client);215GStrv dbusmenu_client_get_icon_paths (DbusmenuClient * client);
216216
217/**217/**
218 SECTION:client218 SECTION:client
219219
=== modified file 'libdbusmenu-glib/menuitem.c'
--- libdbusmenu-glib/menuitem.c 2012-01-31 05:25:37 +0000
+++ libdbusmenu-glib/menuitem.c 2012-02-23 06:13:18 +0000
@@ -1222,7 +1222,7 @@
1222 but we're actually replacing it no matter. This is so that1222 but we're actually replacing it no matter. This is so that
1223 the variant passed in sticks around which the caller may1223 the variant passed in sticks around which the caller may
1224 expect. They shouldn't, but it's low cost to remove bugs. */1224 expect. They shouldn't, but it's low cost to remove bugs. */
1225 if (!inhash || !g_variant_equal(hash_variant, value)) {1225 if (!inhash || (hash_variant != NULL && !g_variant_equal(hash_variant, value))) {
1226 replaced = TRUE;1226 replaced = TRUE;
1227 }1227 }
12281228
12291229
=== modified file 'libdbusmenu-glib/server.c'
--- libdbusmenu-glib/server.c 2012-01-31 05:25:37 +0000
+++ libdbusmenu-glib/server.c 2012-02-23 06:13:18 +0000
@@ -990,6 +990,7 @@
990 /* these are going to be standard references in all code paths and must be unrefed */990 /* these are going to be standard references in all code paths and must be unrefed */
991 GVariant * megadata[2];991 GVariant * megadata[2];
992 gboolean gotsomething = FALSE;992 gboolean gotsomething = FALSE;
993 gboolean error_nosend = FALSE;
993994
994 if (item_init) {995 if (item_init) {
995 megadata[0] = g_variant_builder_end(&itembuilder);996 megadata[0] = g_variant_builder_end(&itembuilder);
@@ -1002,6 +1003,10 @@
1002 if (error != NULL) {1003 if (error != NULL) {
1003 g_warning("Unable to parse '[ ]' as a 'a(ia{sv})': %s", error->message);1004 g_warning("Unable to parse '[ ]' as a 'a(ia{sv})': %s", error->message);
1004 g_error_free(error);1005 g_error_free(error);
1006 megadata[0] = NULL;
1007 error_nosend = TRUE;
1008 } else {
1009 g_variant_ref_sink(megadata[0]);
1005 }1010 }
1006 }1011 }
10071012
@@ -1016,10 +1021,14 @@
1016 if (error != NULL) {1021 if (error != NULL) {
1017 g_warning("Unable to parse '[ ]' as a 'a(ias)': %s", error->message);1022 g_warning("Unable to parse '[ ]' as a 'a(ias)': %s", error->message);
1018 g_error_free(error);1023 g_error_free(error);
1024 megadata[1] = NULL;
1025 error_nosend = TRUE;
1026 } else {
1027 g_variant_ref_sink(megadata[1]);
1019 }1028 }
1020 }1029 }
10211030
1022 if (gotsomething && priv->dbusobject != NULL && priv->bus != NULL) {1031 if (gotsomething && !error_nosend && priv->dbusobject != NULL && priv->bus != NULL) {
1023 g_dbus_connection_emit_signal(priv->bus,1032 g_dbus_connection_emit_signal(priv->bus,
1024 NULL,1033 NULL,
1025 priv->dbusobject,1034 priv->dbusobject,
@@ -1029,8 +1038,13 @@
1029 NULL);1038 NULL);
1030 }1039 }
10311040
1032 g_variant_unref(megadata[0]);1041 if (megadata[0] != NULL) {
1033 g_variant_unref(megadata[1]);1042 g_variant_unref(megadata[0]);
1043 }
1044
1045 if (megadata[1] != NULL) {
1046 g_variant_unref(megadata[1]);
1047 }
10341048
1035 /* Clean everything up */1049 /* Clean everything up */
1036 prop_array_teardown(priv->prop_array);1050 prop_array_teardown(priv->prop_array);
@@ -1595,7 +1609,6 @@
1595 DbusmenuMenuitem * mi = dbusmenu_menuitem_find_id(priv->root, id);1609 DbusmenuMenuitem * mi = dbusmenu_menuitem_find_id(priv->root, id);
15961610
1597 if (mi == NULL) {1611 if (mi == NULL) {
1598
1599 g_dbus_method_invocation_return_error(invocation,1612 g_dbus_method_invocation_return_error(invocation,
1600 error_quark(),1613 error_quark(),
1601 INVALID_MENUITEM_ID,1614 INVALID_MENUITEM_ID,
@@ -1605,17 +1618,17 @@
1605 g_variant_unref(data);1618 g_variant_unref(data);
16061619
1607 } else {1620 } else {
1608
1609 idle_event_t * event_data = g_new0(idle_event_t, 1);1621 idle_event_t * event_data = g_new0(idle_event_t, 1);
1610 event_data->mi = g_object_ref(mi);1622 event_data->mi = g_object_ref(mi);
1611 event_data->eventid = etype;1623 event_data->eventid = etype; /* give away our allocation */
1612 event_data->timestamp = ts;1624 event_data->timestamp = ts;
1613 event_data->variant = data; /* give away our reference */1625 event_data->variant = data; /* give away our reference */
16141626
1615 g_timeout_add(0, event_local_handler, event_data);1627 g_timeout_add(0, event_local_handler, event_data);
1628
1629 g_dbus_method_invocation_return_value(invocation, NULL);
1616 }1630 }
16171631
1618 g_dbus_method_invocation_return_value(invocation, NULL);
1619 return;1632 return;
1620}1633}
16211634
@@ -1809,7 +1822,7 @@
1809 * memory managed by the server. Duplicate if you want1822 * memory managed by the server. Duplicate if you want
1810 * to keep them.1823 * to keep them.
1811 */1824 */
1812const GStrv1825GStrv
1813dbusmenu_server_get_icon_paths (DbusmenuServer * server)1826dbusmenu_server_get_icon_paths (DbusmenuServer * server)
1814{1827{
1815 g_return_val_if_fail(DBUSMENU_IS_SERVER(server), NULL);1828 g_return_val_if_fail(DBUSMENU_IS_SERVER(server), NULL);
18161829
=== modified file 'libdbusmenu-glib/server.h'
--- libdbusmenu-glib/server.h 2011-03-02 22:53:34 +0000
+++ libdbusmenu-glib/server.h 2012-02-23 06:13:18 +0000
@@ -167,7 +167,7 @@
167DbusmenuStatus dbusmenu_server_get_status (DbusmenuServer * server);167DbusmenuStatus dbusmenu_server_get_status (DbusmenuServer * server);
168void dbusmenu_server_set_status (DbusmenuServer * server,168void dbusmenu_server_set_status (DbusmenuServer * server,
169 DbusmenuStatus status);169 DbusmenuStatus status);
170const GStrv dbusmenu_server_get_icon_paths (DbusmenuServer * server);170GStrv dbusmenu_server_get_icon_paths (DbusmenuServer * server);
171void dbusmenu_server_set_icon_paths (DbusmenuServer * server,171void dbusmenu_server_set_icon_paths (DbusmenuServer * server,
172 GStrv icon_paths);172 GStrv icon_paths);
173173
174174
=== modified file 'libdbusmenu-gtk/Makefile.am'
--- libdbusmenu-gtk/Makefile.am 2012-01-31 05:25:37 +0000
+++ libdbusmenu-gtk/Makefile.am 2012-02-23 06:13:18 +0000
@@ -68,7 +68,7 @@
68 -DG_LOG_DOMAIN="\"LIBDBUSMENU-GTK\""68 -DG_LOG_DOMAIN="\"LIBDBUSMENU-GTK\""
6969
70libdbusmenu_gtk_la_LIBADD = \70libdbusmenu_gtk_la_LIBADD = \
71 ../libdbusmenu-glib/libdbusmenu-glib.la \71 $(top_builddir)/libdbusmenu-glib/libdbusmenu-glib.la \
72 $(DBUSMENUGTK_LIBS)72 $(DBUSMENUGTK_LIBS)
7373
74# We duplicate these here because Automake won't let us use $(VER) on the left hand side.74# We duplicate these here because Automake won't let us use $(VER) on the left hand side.
@@ -118,7 +118,8 @@
118 $(GTKGIR) \118 $(GTKGIR) \
119 Dbusmenu-0.4 119 Dbusmenu-0.4
120DbusmenuGtk_0_4_gir_CFLAGS = $(DBUSMENUGTK_CFLAGS) -I$(top_srcdir)120DbusmenuGtk_0_4_gir_CFLAGS = $(DBUSMENUGTK_CFLAGS) -I$(top_srcdir)
121DbusmenuGtk_0_4_gir_LIBS = libdbusmenu-gtk$(VER).la121DbusmenuGtk_0_4_gir_LIBS = libdbusmenu-gtk$(VER).la \
122 $(top_builddir)/libdbusmenu-glib/libdbusmenu-glib.la
122DbusmenuGtk_0_4_gir_FILES = $(addprefix $(srcdir)/, $(introspection_sources))123DbusmenuGtk_0_4_gir_FILES = $(addprefix $(srcdir)/, $(introspection_sources))
123DbusmenuGtk_0_4_gir_NAMESPACE = DbusmenuGtk$(VER)124DbusmenuGtk_0_4_gir_NAMESPACE = DbusmenuGtk$(VER)
124DbusmenuGtk_0_4_gir_EXPORT_PACKAGES = dbusmenu-gtk$(VER)-0.4125DbusmenuGtk_0_4_gir_EXPORT_PACKAGES = dbusmenu-gtk$(VER)-0.4
125126
=== modified file 'libdbusmenu-gtk/Makefile.in'
--- libdbusmenu-gtk/Makefile.in 2012-01-31 05:25:37 +0000
+++ libdbusmenu-gtk/Makefile.in 2012-02-23 06:13:18 +0000
@@ -1,9 +1,9 @@
1# Makefile.in generated by automake 1.11.1 from Makefile.am.1# Makefile.in generated by automake 1.11.3 from Makefile.am.
2# @configure_input@2# @configure_input@
33
4# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,4# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
5# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation,5# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software
6# Inc.6# Foundation, Inc.
7# This Makefile.in is free software; the Free Software Foundation7# This Makefile.in is free software; the Free Software Foundation
8# gives unlimited permission to copy and/or distribute it,8# gives unlimited permission to copy and/or distribute it,
9# with or without modifications, as long as this notice is preserved.9# with or without modifications, as long as this notice is preserved.
@@ -96,6 +96,12 @@
96am__base_list = \96am__base_list = \
97 sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \97 sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
98 sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'98 sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
99am__uninstall_files_from_dir = { \
100 test -z "$$files" \
101 || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
102 || { echo " ( cd '$$dir' && rm -f" $$files ")"; \
103 $(am__cd) "$$dir" && rm -f $$files; }; \
104 }
99am__installdirs = "$(DESTDIR)$(libdir)" "$(DESTDIR)$(girdir)" \105am__installdirs = "$(DESTDIR)$(libdir)" "$(DESTDIR)$(girdir)" \
100 "$(DESTDIR)$(pkgconfigdir)" "$(DESTDIR)$(typelibdir)" \106 "$(DESTDIR)$(pkgconfigdir)" "$(DESTDIR)$(typelibdir)" \
101 "$(DESTDIR)$(vapidir)" \107 "$(DESTDIR)$(vapidir)" \
@@ -104,22 +110,24 @@
104LTLIBRARIES = $(lib_LTLIBRARIES)110LTLIBRARIES = $(lib_LTLIBRARIES)
105am__DEPENDENCIES_1 =111am__DEPENDENCIES_1 =
106libdbusmenu_gtk_la_DEPENDENCIES = \112libdbusmenu_gtk_la_DEPENDENCIES = \
107 ../libdbusmenu-glib/libdbusmenu-glib.la $(am__DEPENDENCIES_1)113 $(top_builddir)/libdbusmenu-glib/libdbusmenu-glib.la \
114 $(am__DEPENDENCIES_1)
108am_libdbusmenu_gtk_la_OBJECTS = libdbusmenu_gtk_la-client.lo \115am_libdbusmenu_gtk_la_OBJECTS = libdbusmenu_gtk_la-client.lo \
109 libdbusmenu_gtk_la-genericmenuitem.lo \116 libdbusmenu_gtk_la-genericmenuitem.lo \
110 libdbusmenu_gtk_la-genericmenuitem-enum-types.lo \117 libdbusmenu_gtk_la-genericmenuitem-enum-types.lo \
111 libdbusmenu_gtk_la-menu.lo libdbusmenu_gtk_la-menuitem.lo \118 libdbusmenu_gtk_la-menu.lo libdbusmenu_gtk_la-menuitem.lo \
112 libdbusmenu_gtk_la-parser.lo119 libdbusmenu_gtk_la-parser.lo
113libdbusmenu_gtk_la_OBJECTS = $(am_libdbusmenu_gtk_la_OBJECTS)120libdbusmenu_gtk_la_OBJECTS = $(am_libdbusmenu_gtk_la_OBJECTS)
114AM_V_lt = $(am__v_lt_$(V))121AM_V_lt = $(am__v_lt_@AM_V@)
115am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY))122am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@)
116am__v_lt_0 = --silent123am__v_lt_0 = --silent
117libdbusmenu_gtk_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \124libdbusmenu_gtk_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
118 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \125 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
119 $(libdbusmenu_gtk_la_CFLAGS) $(CFLAGS) \126 $(libdbusmenu_gtk_la_CFLAGS) $(CFLAGS) \
120 $(libdbusmenu_gtk_la_LDFLAGS) $(LDFLAGS) -o $@127 $(libdbusmenu_gtk_la_LDFLAGS) $(LDFLAGS) -o $@
121@USE_GTK3_FALSE@am_libdbusmenu_gtk_la_rpath = -rpath $(libdir)128@USE_GTK3_FALSE@am_libdbusmenu_gtk_la_rpath = -rpath $(libdir)
122am__DEPENDENCIES_2 = ../libdbusmenu-glib/libdbusmenu-glib.la \129am__DEPENDENCIES_2 = \
130 $(top_builddir)/libdbusmenu-glib/libdbusmenu-glib.la \
123 $(am__DEPENDENCIES_1)131 $(am__DEPENDENCIES_1)
124libdbusmenu_gtk3_la_DEPENDENCIES = $(am__DEPENDENCIES_2)132libdbusmenu_gtk3_la_DEPENDENCIES = $(am__DEPENDENCIES_2)
125am__objects_1 = libdbusmenu_gtk3_la-client.lo \133am__objects_1 = libdbusmenu_gtk3_la-client.lo \
@@ -144,21 +152,21 @@
144 $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \152 $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \
145 $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \153 $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
146 $(AM_CFLAGS) $(CFLAGS)154 $(AM_CFLAGS) $(CFLAGS)
147AM_V_CC = $(am__v_CC_$(V))155AM_V_CC = $(am__v_CC_@AM_V@)
148am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY))156am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@)
149am__v_CC_0 = @echo " CC " $@;157am__v_CC_0 = @echo " CC " $@;
150AM_V_at = $(am__v_at_$(V))158AM_V_at = $(am__v_at_@AM_V@)
151am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))159am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
152am__v_at_0 = @160am__v_at_0 = @
153CCLD = $(CC)161CCLD = $(CC)
154LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \162LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
155 $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \163 $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
156 $(AM_LDFLAGS) $(LDFLAGS) -o $@164 $(AM_LDFLAGS) $(LDFLAGS) -o $@
157AM_V_CCLD = $(am__v_CCLD_$(V))165AM_V_CCLD = $(am__v_CCLD_@AM_V@)
158am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY))166am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@)
159am__v_CCLD_0 = @echo " CCLD " $@;167am__v_CCLD_0 = @echo " CCLD " $@;
160AM_V_GEN = $(am__v_GEN_$(V))168AM_V_GEN = $(am__v_GEN_@AM_V@)
161am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY))169am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
162am__v_GEN_0 = @echo " GEN " $@;170am__v_GEN_0 = @echo " GEN " $@;
163SOURCES = $(libdbusmenu_gtk_la_SOURCES) $(libdbusmenu_gtk3_la_SOURCES)171SOURCES = $(libdbusmenu_gtk_la_SOURCES) $(libdbusmenu_gtk3_la_SOURCES)
164DIST_SOURCES = $(libdbusmenu_gtk_la_SOURCES) \172DIST_SOURCES = $(libdbusmenu_gtk_la_SOURCES) \
@@ -402,7 +410,7 @@
402 -DG_LOG_DOMAIN="\"LIBDBUSMENU-GTK\""410 -DG_LOG_DOMAIN="\"LIBDBUSMENU-GTK\""
403411
404libdbusmenu_gtk_la_LIBADD = \412libdbusmenu_gtk_la_LIBADD = \
405 ../libdbusmenu-glib/libdbusmenu-glib.la \413 $(top_builddir)/libdbusmenu-glib/libdbusmenu-glib.la \
406 $(DBUSMENUGTK_LIBS)414 $(DBUSMENUGTK_LIBS)
407415
408416
@@ -439,7 +447,9 @@
439@HAVE_INTROSPECTION_TRUE@ Dbusmenu-0.4 447@HAVE_INTROSPECTION_TRUE@ Dbusmenu-0.4
440448
441@HAVE_INTROSPECTION_TRUE@DbusmenuGtk_0_4_gir_CFLAGS = $(DBUSMENUGTK_CFLAGS) -I$(top_srcdir)449@HAVE_INTROSPECTION_TRUE@DbusmenuGtk_0_4_gir_CFLAGS = $(DBUSMENUGTK_CFLAGS) -I$(top_srcdir)
442@HAVE_INTROSPECTION_TRUE@DbusmenuGtk_0_4_gir_LIBS = libdbusmenu-gtk$(VER).la450@HAVE_INTROSPECTION_TRUE@DbusmenuGtk_0_4_gir_LIBS = libdbusmenu-gtk$(VER).la \
451@HAVE_INTROSPECTION_TRUE@ $(top_builddir)/libdbusmenu-glib/libdbusmenu-glib.la
452
443@HAVE_INTROSPECTION_TRUE@DbusmenuGtk_0_4_gir_FILES = $(addprefix $(srcdir)/, $(introspection_sources))453@HAVE_INTROSPECTION_TRUE@DbusmenuGtk_0_4_gir_FILES = $(addprefix $(srcdir)/, $(introspection_sources))
444@HAVE_INTROSPECTION_TRUE@DbusmenuGtk_0_4_gir_NAMESPACE = DbusmenuGtk$(VER)454@HAVE_INTROSPECTION_TRUE@DbusmenuGtk_0_4_gir_NAMESPACE = DbusmenuGtk$(VER)
445@HAVE_INTROSPECTION_TRUE@DbusmenuGtk_0_4_gir_EXPORT_PACKAGES = dbusmenu-gtk$(VER)-0.4455@HAVE_INTROSPECTION_TRUE@DbusmenuGtk_0_4_gir_EXPORT_PACKAGES = dbusmenu-gtk$(VER)-0.4
@@ -487,6 +497,7 @@
487 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \497 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
488 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \498 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
489 esac;499 esac;
500$(top_srcdir)/Makefile.am.enum:
490501
491$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)502$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
492 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh503 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
@@ -531,9 +542,9 @@
531 echo "rm -f \"$${dir}/so_locations\""; \542 echo "rm -f \"$${dir}/so_locations\""; \
532 rm -f "$${dir}/so_locations"; \543 rm -f "$${dir}/so_locations"; \
533 done544 done
534libdbusmenu-gtk.la: $(libdbusmenu_gtk_la_OBJECTS) $(libdbusmenu_gtk_la_DEPENDENCIES) 545libdbusmenu-gtk.la: $(libdbusmenu_gtk_la_OBJECTS) $(libdbusmenu_gtk_la_DEPENDENCIES) $(EXTRA_libdbusmenu_gtk_la_DEPENDENCIES)
535 $(AM_V_CCLD)$(libdbusmenu_gtk_la_LINK) $(am_libdbusmenu_gtk_la_rpath) $(libdbusmenu_gtk_la_OBJECTS) $(libdbusmenu_gtk_la_LIBADD) $(LIBS)546 $(AM_V_CCLD)$(libdbusmenu_gtk_la_LINK) $(am_libdbusmenu_gtk_la_rpath) $(libdbusmenu_gtk_la_OBJECTS) $(libdbusmenu_gtk_la_LIBADD) $(LIBS)
536libdbusmenu-gtk3.la: $(libdbusmenu_gtk3_la_OBJECTS) $(libdbusmenu_gtk3_la_DEPENDENCIES) 547libdbusmenu-gtk3.la: $(libdbusmenu_gtk3_la_OBJECTS) $(libdbusmenu_gtk3_la_DEPENDENCIES) $(EXTRA_libdbusmenu_gtk3_la_DEPENDENCIES)
537 $(AM_V_CCLD)$(libdbusmenu_gtk3_la_LINK) $(am_libdbusmenu_gtk3_la_rpath) $(libdbusmenu_gtk3_la_OBJECTS) $(libdbusmenu_gtk3_la_LIBADD) $(LIBS)548 $(AM_V_CCLD)$(libdbusmenu_gtk3_la_LINK) $(am_libdbusmenu_gtk3_la_rpath) $(libdbusmenu_gtk3_la_OBJECTS) $(libdbusmenu_gtk3_la_LIBADD) $(LIBS)
538549
539mostlyclean-compile:550mostlyclean-compile:
@@ -558,122 +569,107 @@
558.c.o:569.c.o:
559@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<570@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
560@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po571@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
561@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@572@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
562@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
563@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@573@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
564@am__fastdepCC_FALSE@ $(COMPILE) -c $<574@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c $<
565575
566.c.obj:576.c.obj:
567@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`577@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
568@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po578@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
569@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@579@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
570@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
571@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@580@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
572@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'`581@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c `$(CYGPATH_W) '$<'`
573582
574.c.lo:583.c.lo:
575@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<584@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
576@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo585@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
577@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@586@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
578@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
579@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@587@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
580@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $<588@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $<
581589
582libdbusmenu_gtk_la-client.lo: client.c590libdbusmenu_gtk_la-client.lo: client.c
583@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.c591@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
584@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libdbusmenu_gtk_la-client.Tpo $(DEPDIR)/libdbusmenu_gtk_la-client.Plo592@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libdbusmenu_gtk_la-client.Tpo $(DEPDIR)/libdbusmenu_gtk_la-client.Plo
585@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@593@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='client.c' object='libdbusmenu_gtk_la-client.lo' libtool=yes @AMDEPBACKSLASH@
586@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='client.c' object='libdbusmenu_gtk_la-client.lo' libtool=yes @AMDEPBACKSLASH@
587@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@594@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
588@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.c595@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
589596
590libdbusmenu_gtk_la-genericmenuitem.lo: genericmenuitem.c597libdbusmenu_gtk_la-genericmenuitem.lo: genericmenuitem.c
591@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.c598@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
592@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libdbusmenu_gtk_la-genericmenuitem.Tpo $(DEPDIR)/libdbusmenu_gtk_la-genericmenuitem.Plo599@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libdbusmenu_gtk_la-genericmenuitem.Tpo $(DEPDIR)/libdbusmenu_gtk_la-genericmenuitem.Plo
593@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@600@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='genericmenuitem.c' object='libdbusmenu_gtk_la-genericmenuitem.lo' libtool=yes @AMDEPBACKSLASH@
594@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='genericmenuitem.c' object='libdbusmenu_gtk_la-genericmenuitem.lo' libtool=yes @AMDEPBACKSLASH@
595@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@601@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
596@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.c602@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
597603
598libdbusmenu_gtk_la-genericmenuitem-enum-types.lo: genericmenuitem-enum-types.c604libdbusmenu_gtk_la-genericmenuitem-enum-types.lo: genericmenuitem-enum-types.c
599@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.c605@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
600@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libdbusmenu_gtk_la-genericmenuitem-enum-types.Tpo $(DEPDIR)/libdbusmenu_gtk_la-genericmenuitem-enum-types.Plo606@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libdbusmenu_gtk_la-genericmenuitem-enum-types.Tpo $(DEPDIR)/libdbusmenu_gtk_la-genericmenuitem-enum-types.Plo
601@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@607@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='genericmenuitem-enum-types.c' object='libdbusmenu_gtk_la-genericmenuitem-enum-types.lo' libtool=yes @AMDEPBACKSLASH@
602@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='genericmenuitem-enum-types.c' object='libdbusmenu_gtk_la-genericmenuitem-enum-types.lo' libtool=yes @AMDEPBACKSLASH@
603@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@608@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
604@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.c609@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
605610
606libdbusmenu_gtk_la-menu.lo: menu.c611libdbusmenu_gtk_la-menu.lo: menu.c
607@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.c612@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
608@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libdbusmenu_gtk_la-menu.Tpo $(DEPDIR)/libdbusmenu_gtk_la-menu.Plo613@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libdbusmenu_gtk_la-menu.Tpo $(DEPDIR)/libdbusmenu_gtk_la-menu.Plo
609@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@614@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='menu.c' object='libdbusmenu_gtk_la-menu.lo' libtool=yes @AMDEPBACKSLASH@
610@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='menu.c' object='libdbusmenu_gtk_la-menu.lo' libtool=yes @AMDEPBACKSLASH@
611@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@615@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
612@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.c616@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
613617
614libdbusmenu_gtk_la-menuitem.lo: menuitem.c618libdbusmenu_gtk_la-menuitem.lo: menuitem.c
615@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.c619@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
616@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libdbusmenu_gtk_la-menuitem.Tpo $(DEPDIR)/libdbusmenu_gtk_la-menuitem.Plo620@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libdbusmenu_gtk_la-menuitem.Tpo $(DEPDIR)/libdbusmenu_gtk_la-menuitem.Plo
617@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@621@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='menuitem.c' object='libdbusmenu_gtk_la-menuitem.lo' libtool=yes @AMDEPBACKSLASH@
618@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='menuitem.c' object='libdbusmenu_gtk_la-menuitem.lo' libtool=yes @AMDEPBACKSLASH@
619@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@622@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
620@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.c623@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
621624
622libdbusmenu_gtk_la-parser.lo: parser.c625libdbusmenu_gtk_la-parser.lo: parser.c
623@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.c626@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
624@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libdbusmenu_gtk_la-parser.Tpo $(DEPDIR)/libdbusmenu_gtk_la-parser.Plo627@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libdbusmenu_gtk_la-parser.Tpo $(DEPDIR)/libdbusmenu_gtk_la-parser.Plo
625@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@628@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='parser.c' object='libdbusmenu_gtk_la-parser.lo' libtool=yes @AMDEPBACKSLASH@
626@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='parser.c' object='libdbusmenu_gtk_la-parser.lo' libtool=yes @AMDEPBACKSLASH@
627@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@629@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
628@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.c630@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
629631
630libdbusmenu_gtk3_la-client.lo: client.c632libdbusmenu_gtk3_la-client.lo: client.c
631@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.c633@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
632@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libdbusmenu_gtk3_la-client.Tpo $(DEPDIR)/libdbusmenu_gtk3_la-client.Plo634@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libdbusmenu_gtk3_la-client.Tpo $(DEPDIR)/libdbusmenu_gtk3_la-client.Plo
633@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@635@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='client.c' object='libdbusmenu_gtk3_la-client.lo' libtool=yes @AMDEPBACKSLASH@
634@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='client.c' object='libdbusmenu_gtk3_la-client.lo' libtool=yes @AMDEPBACKSLASH@
635@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@636@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
636@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.c637@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
637638
638libdbusmenu_gtk3_la-genericmenuitem.lo: genericmenuitem.c639libdbusmenu_gtk3_la-genericmenuitem.lo: genericmenuitem.c
639@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.c640@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
640@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libdbusmenu_gtk3_la-genericmenuitem.Tpo $(DEPDIR)/libdbusmenu_gtk3_la-genericmenuitem.Plo641@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libdbusmenu_gtk3_la-genericmenuitem.Tpo $(DEPDIR)/libdbusmenu_gtk3_la-genericmenuitem.Plo
641@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@642@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='genericmenuitem.c' object='libdbusmenu_gtk3_la-genericmenuitem.lo' libtool=yes @AMDEPBACKSLASH@
642@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='genericmenuitem.c' object='libdbusmenu_gtk3_la-genericmenuitem.lo' libtool=yes @AMDEPBACKSLASH@
643@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@643@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
644@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.c644@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
645645
646libdbusmenu_gtk3_la-genericmenuitem-enum-types.lo: genericmenuitem-enum-types.c646libdbusmenu_gtk3_la-genericmenuitem-enum-types.lo: genericmenuitem-enum-types.c
647@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.c647@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
648@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libdbusmenu_gtk3_la-genericmenuitem-enum-types.Tpo $(DEPDIR)/libdbusmenu_gtk3_la-genericmenuitem-enum-types.Plo648@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libdbusmenu_gtk3_la-genericmenuitem-enum-types.Tpo $(DEPDIR)/libdbusmenu_gtk3_la-genericmenuitem-enum-types.Plo
649@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@649@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='genericmenuitem-enum-types.c' object='libdbusmenu_gtk3_la-genericmenuitem-enum-types.lo' libtool=yes @AMDEPBACKSLASH@
650@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='genericmenuitem-enum-types.c' object='libdbusmenu_gtk3_la-genericmenuitem-enum-types.lo' libtool=yes @AMDEPBACKSLASH@
651@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@650@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
652@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.c651@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
653652
654libdbusmenu_gtk3_la-menu.lo: menu.c653libdbusmenu_gtk3_la-menu.lo: menu.c
655@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.c654@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
656@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libdbusmenu_gtk3_la-menu.Tpo $(DEPDIR)/libdbusmenu_gtk3_la-menu.Plo655@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libdbusmenu_gtk3_la-menu.Tpo $(DEPDIR)/libdbusmenu_gtk3_la-menu.Plo
657@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@656@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='menu.c' object='libdbusmenu_gtk3_la-menu.lo' libtool=yes @AMDEPBACKSLASH@
658@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='menu.c' object='libdbusmenu_gtk3_la-menu.lo' libtool=yes @AMDEPBACKSLASH@
659@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@657@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
660@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.c658@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
661659
662libdbusmenu_gtk3_la-menuitem.lo: menuitem.c660libdbusmenu_gtk3_la-menuitem.lo: menuitem.c
663@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.c661@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
664@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libdbusmenu_gtk3_la-menuitem.Tpo $(DEPDIR)/libdbusmenu_gtk3_la-menuitem.Plo662@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libdbusmenu_gtk3_la-menuitem.Tpo $(DEPDIR)/libdbusmenu_gtk3_la-menuitem.Plo
665@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@663@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='menuitem.c' object='libdbusmenu_gtk3_la-menuitem.lo' libtool=yes @AMDEPBACKSLASH@
666@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='menuitem.c' object='libdbusmenu_gtk3_la-menuitem.lo' libtool=yes @AMDEPBACKSLASH@
667@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@664@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
668@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.c665@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
669666
670libdbusmenu_gtk3_la-parser.lo: parser.c667libdbusmenu_gtk3_la-parser.lo: parser.c
671@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.c668@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
672@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libdbusmenu_gtk3_la-parser.Tpo $(DEPDIR)/libdbusmenu_gtk3_la-parser.Plo669@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libdbusmenu_gtk3_la-parser.Tpo $(DEPDIR)/libdbusmenu_gtk3_la-parser.Plo
673@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@670@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='parser.c' object='libdbusmenu_gtk3_la-parser.lo' libtool=yes @AMDEPBACKSLASH@
674@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='parser.c' object='libdbusmenu_gtk3_la-parser.lo' libtool=yes @AMDEPBACKSLASH@
675@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@671@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
676@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.c672@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
677673
678mostlyclean-libtool:674mostlyclean-libtool:
679 -rm -f *.lo675 -rm -f *.lo
@@ -697,9 +693,7 @@
697 @$(NORMAL_UNINSTALL)693 @$(NORMAL_UNINSTALL)
698 @list='$(gir_DATA)'; test -n "$(girdir)" || list=; \694 @list='$(gir_DATA)'; test -n "$(girdir)" || list=; \
699 files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \695 files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
700 test -n "$$files" || exit 0; \696 dir='$(DESTDIR)$(girdir)'; $(am__uninstall_files_from_dir)
701 echo " ( cd '$(DESTDIR)$(girdir)' && rm -f" $$files ")"; \
702 cd "$(DESTDIR)$(girdir)" && rm -f $$files
703install-pkgconfigDATA: $(pkgconfig_DATA)697install-pkgconfigDATA: $(pkgconfig_DATA)
704 @$(NORMAL_INSTALL)698 @$(NORMAL_INSTALL)
705 test -z "$(pkgconfigdir)" || $(MKDIR_P) "$(DESTDIR)$(pkgconfigdir)"699 test -z "$(pkgconfigdir)" || $(MKDIR_P) "$(DESTDIR)$(pkgconfigdir)"
@@ -717,9 +711,7 @@
717 @$(NORMAL_UNINSTALL)711 @$(NORMAL_UNINSTALL)
718 @list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \712 @list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \
719 files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \713 files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
720 test -n "$$files" || exit 0; \714 dir='$(DESTDIR)$(pkgconfigdir)'; $(am__uninstall_files_from_dir)
721 echo " ( cd '$(DESTDIR)$(pkgconfigdir)' && rm -f" $$files ")"; \
722 cd "$(DESTDIR)$(pkgconfigdir)" && rm -f $$files
723install-typelibDATA: $(typelib_DATA)715install-typelibDATA: $(typelib_DATA)
724 @$(NORMAL_INSTALL)716 @$(NORMAL_INSTALL)
725 test -z "$(typelibdir)" || $(MKDIR_P) "$(DESTDIR)$(typelibdir)"717 test -z "$(typelibdir)" || $(MKDIR_P) "$(DESTDIR)$(typelibdir)"
@@ -737,9 +729,7 @@
737 @$(NORMAL_UNINSTALL)729 @$(NORMAL_UNINSTALL)
738 @list='$(typelib_DATA)'; test -n "$(typelibdir)" || list=; \730 @list='$(typelib_DATA)'; test -n "$(typelibdir)" || list=; \
739 files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \731 files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
740 test -n "$$files" || exit 0; \732 dir='$(DESTDIR)$(typelibdir)'; $(am__uninstall_files_from_dir)
741 echo " ( cd '$(DESTDIR)$(typelibdir)' && rm -f" $$files ")"; \
742 cd "$(DESTDIR)$(typelibdir)" && rm -f $$files
743install-vapiDATA: $(vapi_DATA)733install-vapiDATA: $(vapi_DATA)
744 @$(NORMAL_INSTALL)734 @$(NORMAL_INSTALL)
745 test -z "$(vapidir)" || $(MKDIR_P) "$(DESTDIR)$(vapidir)"735 test -z "$(vapidir)" || $(MKDIR_P) "$(DESTDIR)$(vapidir)"
@@ -757,9 +747,7 @@
757 @$(NORMAL_UNINSTALL)747 @$(NORMAL_UNINSTALL)
758 @list='$(vapi_DATA)'; test -n "$(vapidir)" || list=; \748 @list='$(vapi_DATA)'; test -n "$(vapidir)" || list=; \
759 files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \749 files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
760 test -n "$$files" || exit 0; \750 dir='$(DESTDIR)$(vapidir)'; $(am__uninstall_files_from_dir)
761 echo " ( cd '$(DESTDIR)$(vapidir)' && rm -f" $$files ")"; \
762 cd "$(DESTDIR)$(vapidir)" && rm -f $$files
763install-libdbusmenu_gtk3includeHEADERS: $(libdbusmenu_gtk3include_HEADERS)751install-libdbusmenu_gtk3includeHEADERS: $(libdbusmenu_gtk3include_HEADERS)
764 @$(NORMAL_INSTALL)752 @$(NORMAL_INSTALL)
765 test -z "$(libdbusmenu_gtk3includedir)" || $(MKDIR_P) "$(DESTDIR)$(libdbusmenu_gtk3includedir)"753 test -z "$(libdbusmenu_gtk3includedir)" || $(MKDIR_P) "$(DESTDIR)$(libdbusmenu_gtk3includedir)"
@@ -777,9 +765,7 @@
777 @$(NORMAL_UNINSTALL)765 @$(NORMAL_UNINSTALL)
778 @list='$(libdbusmenu_gtk3include_HEADERS)'; test -n "$(libdbusmenu_gtk3includedir)" || list=; \766 @list='$(libdbusmenu_gtk3include_HEADERS)'; test -n "$(libdbusmenu_gtk3includedir)" || list=; \
779 files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \767 files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
780 test -n "$$files" || exit 0; \768 dir='$(DESTDIR)$(libdbusmenu_gtk3includedir)'; $(am__uninstall_files_from_dir)
781 echo " ( cd '$(DESTDIR)$(libdbusmenu_gtk3includedir)' && rm -f" $$files ")"; \
782 cd "$(DESTDIR)$(libdbusmenu_gtk3includedir)" && rm -f $$files
783install-libdbusmenu_gtkincludeHEADERS: $(libdbusmenu_gtkinclude_HEADERS)769install-libdbusmenu_gtkincludeHEADERS: $(libdbusmenu_gtkinclude_HEADERS)
784 @$(NORMAL_INSTALL)770 @$(NORMAL_INSTALL)
785 test -z "$(libdbusmenu_gtkincludedir)" || $(MKDIR_P) "$(DESTDIR)$(libdbusmenu_gtkincludedir)"771 test -z "$(libdbusmenu_gtkincludedir)" || $(MKDIR_P) "$(DESTDIR)$(libdbusmenu_gtkincludedir)"
@@ -797,9 +783,7 @@
797 @$(NORMAL_UNINSTALL)783 @$(NORMAL_UNINSTALL)
798 @list='$(libdbusmenu_gtkinclude_HEADERS)'; test -n "$(libdbusmenu_gtkincludedir)" || list=; \784 @list='$(libdbusmenu_gtkinclude_HEADERS)'; test -n "$(libdbusmenu_gtkincludedir)" || list=; \
799 files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \785 files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
800 test -n "$$files" || exit 0; \786 dir='$(DESTDIR)$(libdbusmenu_gtkincludedir)'; $(am__uninstall_files_from_dir)
801 echo " ( cd '$(DESTDIR)$(libdbusmenu_gtkincludedir)' && rm -f" $$files ")"; \
802 cd "$(DESTDIR)$(libdbusmenu_gtkincludedir)" && rm -f $$files
803787
804ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)788ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
805 list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \789 list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
@@ -902,10 +886,15 @@
902886
903installcheck: installcheck-am887installcheck: installcheck-am
904install-strip:888install-strip:
905 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \889 if test -z '$(STRIP)'; then \
906 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \890 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
907 `test -z '$(STRIP)' || \891 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
908 echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install892 install; \
893 else \
894 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
895 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
896 "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
897 fi
909mostlyclean-generic:898mostlyclean-generic:
910899
911clean-generic:900clean-generic:
912901
=== modified file 'libdbusmenu-gtk/client.c'
--- libdbusmenu-gtk/client.c 2012-01-31 05:25:37 +0000
+++ libdbusmenu-gtk/client.c 2012-02-23 06:13:18 +0000
@@ -725,6 +725,30 @@
725 return;725 return;
726}726}
727727
728/* Process the accessible description */
729static void
730process_a11y_desc (DbusmenuMenuitem * mi, GtkMenuItem * gmi, GVariant * variant, DbusmenuGtkClient * gtkclient)
731{
732 AtkObject * aobj = gtk_widget_get_accessible(GTK_WIDGET(gmi));
733
734 if (aobj == NULL) {
735 return;
736 }
737
738 const gchar * setname = NULL;
739
740 if (variant != NULL) {
741 setname = g_variant_get_string(variant, NULL);
742 }
743
744 if (setname == NULL) {
745 setname = "";
746 }
747
748 atk_object_set_name(aobj, setname);
749 return;
750}
751
728/* Whenever we have a property change on a DbusmenuMenuitem752/* Whenever we have a property change on a DbusmenuMenuitem
729 we need to be responsive to that. */753 we need to be responsive to that. */
730static void754static void
@@ -747,8 +771,7 @@
747 } else if (!g_strcmp0(prop, DBUSMENU_MENUITEM_PROP_DISPOSITION)) {771 } else if (!g_strcmp0(prop, DBUSMENU_MENUITEM_PROP_DISPOSITION)) {
748 process_disposition(mi, gmi, variant, gtkclient);772 process_disposition(mi, gmi, variant, gtkclient);
749 } else if (!g_strcmp0(prop, DBUSMENU_MENUITEM_PROP_ACCESSIBLE_DESC)) {773 } else if (!g_strcmp0(prop, DBUSMENU_MENUITEM_PROP_ACCESSIBLE_DESC)) {
750 atk_object_set_name(gtk_widget_get_accessible(GTK_WIDGET(gmi)), variant == NULL ? NULL :774 process_a11y_desc(mi, gmi, variant, gtkclient);
751 g_variant_get_string(variant, NULL));
752 }775 }
753776
754 return;777 return;
@@ -894,6 +917,7 @@
894 process_toggle_state(item, gmi, dbusmenu_menuitem_property_get_variant(item, DBUSMENU_MENUITEM_PROP_TOGGLE_STATE));917 process_toggle_state(item, gmi, dbusmenu_menuitem_property_get_variant(item, DBUSMENU_MENUITEM_PROP_TOGGLE_STATE));
895 process_submenu(item, gmi, dbusmenu_menuitem_property_get_variant(item, DBUSMENU_MENUITEM_PROP_CHILD_DISPLAY), client);918 process_submenu(item, gmi, dbusmenu_menuitem_property_get_variant(item, DBUSMENU_MENUITEM_PROP_CHILD_DISPLAY), client);
896 process_disposition(item, gmi, dbusmenu_menuitem_property_get_variant(item, DBUSMENU_MENUITEM_PROP_DISPOSITION), client);919 process_disposition(item, gmi, dbusmenu_menuitem_property_get_variant(item, DBUSMENU_MENUITEM_PROP_DISPOSITION), client);
920 process_a11y_desc(item, gmi, dbusmenu_menuitem_property_get_variant(item, DBUSMENU_MENUITEM_PROP_ACCESSIBLE_DESC), client);
897 refresh_shortcut(client, item);921 refresh_shortcut(client, item);
898922
899 const gchar * a11y_desc = dbusmenu_menuitem_property_get(item, DBUSMENU_MENUITEM_PROP_ACCESSIBLE_DESC);923 const gchar * a11y_desc = dbusmenu_menuitem_property_get(item, DBUSMENU_MENUITEM_PROP_ACCESSIBLE_DESC);
@@ -1128,12 +1152,7 @@
1128 return;1152 return;
1129 }1153 }
11301154
1131 const gchar * value = NULL;1155 if (variant == NULL) {
1132 if (variant != NULL) {
1133 value = g_variant_get_string(variant, NULL);
1134 }
1135
1136 if (value == NULL || value[0] == '\0') {
1137 /* This means that we're unsetting a value. */1156 /* This means that we're unsetting a value. */
1138 /* Try to use the other one */1157 /* Try to use the other one */
1139 if (g_strcmp0(property, DBUSMENU_MENUITEM_PROP_ICON_NAME)) {1158 if (g_strcmp0(property, DBUSMENU_MENUITEM_PROP_ICON_NAME)) {
11401159
=== modified file 'libdbusmenu-gtk/genericmenuitem.c'
--- libdbusmenu-gtk/genericmenuitem.c 2012-01-31 05:25:37 +0000
+++ libdbusmenu-gtk/genericmenuitem.c 2012-02-23 06:13:18 +0000
@@ -43,6 +43,7 @@
43 GenericmenuitemCheckType check_type;43 GenericmenuitemCheckType check_type;
44 GenericmenuitemState state;44 GenericmenuitemState state;
45 GenericmenuitemDisposition disposition;45 GenericmenuitemDisposition disposition;
46 gchar * label_text;
46};47};
4748
48/* Private macro */49/* Private macro */
@@ -106,6 +107,7 @@
106 self->priv->check_type = GENERICMENUITEM_CHECK_TYPE_NONE;107 self->priv->check_type = GENERICMENUITEM_CHECK_TYPE_NONE;
107 self->priv->state = GENERICMENUITEM_STATE_UNCHECKED;108 self->priv->state = GENERICMENUITEM_STATE_UNCHECKED;
108 self->priv->disposition = GENERICMENUITEM_DISPOSITION_NORMAL;109 self->priv->disposition = GENERICMENUITEM_DISPOSITION_NORMAL;
110 self->priv->label_text = NULL;
109111
110 return;112 return;
111}113}
@@ -123,6 +125,8 @@
123static void125static void
124genericmenuitem_finalize (GObject *object)126genericmenuitem_finalize (GObject *object)
125{127{
128 Genericmenuitem * self = GENERICMENUITEM(object);
129 g_free(self->priv->label_text);
126130
127 G_OBJECT_CLASS (genericmenuitem_parent_class)->finalize (object);131 G_OBJECT_CLASS (genericmenuitem_parent_class)->finalize (object);
128 return;132 return;
@@ -205,6 +209,12 @@
205{209{
206 if (in_label == NULL) return;210 if (in_label == NULL) return;
207211
212 Genericmenuitem * item = GENERICMENUITEM(menu_item);
213 if (in_label != item->priv->label_text) {
214 g_free(item->priv->label_text);
215 item->priv->label_text = g_strdup(in_label);
216 }
217
208 /* Build a label that might include the colors of the disposition218 /* Build a label that might include the colors of the disposition
209 so that it gets rendered in the menuitem. */219 so that it gets rendered in the menuitem. */
210 gchar * local_label = NULL;220 gchar * local_label = NULL;
@@ -308,25 +318,9 @@
308static const gchar *318static const gchar *
309get_label (GtkMenuItem * menu_item)319get_label (GtkMenuItem * menu_item)
310{320{
311 GtkWidget * child = gtk_bin_get_child(GTK_BIN(menu_item));321 Genericmenuitem * item = GENERICMENUITEM(menu_item);
312 GtkLabel * labelw = NULL;322
313323 return item->priv->label_text;
314 /* Try to find if we have a label already */
315 if (child != NULL) {
316 if (GTK_IS_LABEL(child)) {
317 /* We've got a label, let's update it. */
318 labelw = GTK_LABEL(child);
319 } else if (GTK_IS_BOX(child)) {
320 /* Look for the label in the box */
321 gtk_container_foreach(GTK_CONTAINER(child), set_label_helper, &labelw);
322 }
323 }
324
325 if (labelw != NULL) {
326 return gtk_label_get_label(labelw);
327 }
328
329 return NULL;
330}324}
331325
332/* Make sure we don't toggle when there is an326/* Make sure we don't toggle when there is an
333327
=== modified file 'libdbusmenu-gtk/parser.c'
--- libdbusmenu-gtk/parser.c 2012-01-31 05:25:37 +0000
+++ libdbusmenu-gtk/parser.c 2012-02-23 06:13:18 +0000
@@ -26,6 +26,8 @@
26<http://www.gnu.org/licenses/>26<http://www.gnu.org/licenses/>
27*/27*/
2828
29#include <atk/atk.h>
30
29#include "parser.h"31#include "parser.h"
30#include "menuitem.h"32#include "menuitem.h"
31#include "client.h"33#include "client.h"
@@ -41,6 +43,7 @@
41 GtkWidget *widget;43 GtkWidget *widget;
42 GtkWidget *shell;44 GtkWidget *shell;
43 GtkWidget *image;45 GtkWidget *image;
46 AtkObject *accessible;
44} ParserData;47} ParserData;
4548
46typedef struct _RecurseContext49typedef struct _RecurseContext
@@ -67,6 +70,9 @@
67static void action_notify_cb (GtkAction * action,70static void action_notify_cb (GtkAction * action,
68 GParamSpec * pspec,71 GParamSpec * pspec,
69 gpointer data);72 gpointer data);
73static void a11y_name_notify_cb (AtkObject * accessible,
74 GParamSpec * pspec,
75 gpointer data);
70static void item_inserted_cb (GtkContainer * menu,76static void item_inserted_cb (GtkContainer * menu,
71 GtkWidget * widget,77 GtkWidget * widget,
72#ifdef HAVE_GTK378#ifdef HAVE_GTK3
@@ -200,6 +206,12 @@
200 g_object_remove_weak_pointer(G_OBJECT(pdata->image), (gpointer*)&pdata->image);206 g_object_remove_weak_pointer(G_OBJECT(pdata->image), (gpointer*)&pdata->image);
201 }207 }
202208
209 if (pdata != NULL && pdata->accessible != NULL) {
210 g_signal_handlers_disconnect_matched(pdata->accessible, (GSignalMatchType)G_SIGNAL_MATCH_FUNC,
211 0, 0, NULL, G_CALLBACK(a11y_name_notify_cb), NULL);
212 g_object_remove_weak_pointer(G_OBJECT(pdata->accessible), (gpointer*)&pdata->accessible);
213 }
214
203 g_free(pdata);215 g_free(pdata);
204216
205 return;217 return;
@@ -415,8 +427,11 @@
415427
416 /* Oops, let's tell our parents about us */428 /* Oops, let's tell our parents about us */
417 if (peek == NULL) {429 if (peek == NULL) {
418 if (dbusmenu_menuitem_get_parent(thisitem) != NULL) {430 g_object_ref(thisitem);
419 dbusmenu_menuitem_unparent(thisitem);431
432 DbusmenuMenuitem * parent = dbusmenu_menuitem_get_parent(thisitem);
433 if (parent != NULL) {
434 dbusmenu_menuitem_child_delete(parent, thisitem);
420 }435 }
421436
422 gint pos = get_child_position (widget);437 gint pos = get_child_position (widget);
@@ -427,6 +442,8 @@
427 else442 else
428 dbusmenu_menuitem_child_append (recurse->parent,443 dbusmenu_menuitem_child_append (recurse->parent,
429 thisitem);444 thisitem);
445
446 g_object_unref(thisitem);
430 }447 }
431 }448 }
432449
@@ -572,7 +589,7 @@
572 // Sometimes, an app will directly find and modify the label589 // Sometimes, an app will directly find and modify the label
573 // (like empathy), so watch the label especially for that.590 // (like empathy), so watch the label especially for that.
574 gchar * text = sanitize_label (GTK_LABEL (label));591 gchar * text = sanitize_label (GTK_LABEL (label));
575 dbusmenu_menuitem_property_set (mi, "label", text);592 dbusmenu_menuitem_property_set (mi, DBUSMENU_MENUITEM_PROP_LABEL, text);
576 g_free (text);593 g_free (text);
577594
578 pdata->label = label;595 pdata->label = label;
@@ -582,6 +599,27 @@
582 mi);599 mi);
583 g_object_add_weak_pointer(G_OBJECT (label), (gpointer*)&pdata->label);600 g_object_add_weak_pointer(G_OBJECT (label), (gpointer*)&pdata->label);
584601
602 AtkObject *accessible = gtk_widget_get_accessible (widget);
603 if (accessible)
604 {
605 // Getting the accessible name of the Atk object retrieves the text
606 // of the menu item label, unless the application has set an alternate
607 // accessible name.
608 const gchar * label_text = gtk_label_get_text (GTK_LABEL (label));
609 const gchar * a11y_name = atk_object_get_name (accessible);
610 if (g_strcmp0 (a11y_name, label_text))
611 dbusmenu_menuitem_property_set (mi, DBUSMENU_MENUITEM_PROP_ACCESSIBLE_DESC, a11y_name);
612
613 // An application may set an alternate accessible name in the future,
614 // so we had better watch out for it.
615 pdata->accessible = accessible;
616 g_signal_connect (G_OBJECT (accessible),
617 "notify::accessible-name",
618 G_CALLBACK (a11y_name_notify_cb),
619 mi);
620 g_object_add_weak_pointer(G_OBJECT (accessible), (gpointer*)&pdata->accessible);
621 }
622
585 if (GTK_IS_ACTIVATABLE (widget))623 if (GTK_IS_ACTIVATABLE (widget))
586 {624 {
587 GtkActivatable *activatable = GTK_ACTIVATABLE (widget);625 GtkActivatable *activatable = GTK_ACTIVATABLE (widget);
@@ -948,6 +986,31 @@
948}986}
949987
950static void988static void
989a11y_name_notify_cb (AtkObject *accessible,
990 GParamSpec *pspec,
991 gpointer data)
992{
993 DbusmenuMenuitem *item = (DbusmenuMenuitem *)data;
994 GtkWidget *widget = gtk_accessible_get_widget (GTK_ACCESSIBLE (accessible));
995 GtkWidget *label = find_menu_label (widget);
996 const gchar *label_text = gtk_label_get_text (GTK_LABEL (label));
997 const gchar *name = atk_object_get_name (accessible);
998
999 /* If an application sets the accessible name to NULL, then a subsequent
1000 * call to get the accessible name from the Atk object should return the same
1001 * string as the text of the menu item label, in which case, we want to clear
1002 * the accessible description property of the dbusmenu item.
1003 */
1004 if (pspec->name == g_intern_static_string ("accessible-name"))
1005 {
1006 if (!g_strcmp0 (name, label_text))
1007 dbusmenu_menuitem_property_set (item, DBUSMENU_MENUITEM_PROP_ACCESSIBLE_DESC, NULL);
1008 else
1009 dbusmenu_menuitem_property_set (item, DBUSMENU_MENUITEM_PROP_ACCESSIBLE_DESC, name);
1010 }
1011}
1012
1013static void
951item_activated (DbusmenuMenuitem *item, guint timestamp, gpointer user_data)1014item_activated (DbusmenuMenuitem *item, guint timestamp, gpointer user_data)
952{1015{
953 GtkWidget *child;1016 GtkWidget *child;
9541017
=== modified file 'tests/Makefile.am'
--- tests/Makefile.am 2012-01-31 04:42:59 +0000
+++ tests/Makefile.am 2012-02-23 06:13:18 +0000
@@ -25,8 +25,10 @@
25 test-gtk-label \25 test-gtk-label \
26 test-gtk-shortcut \26 test-gtk-shortcut \
27 test-gtk-reorder \27 test-gtk-reorder \
28 test-gtk-submenu \
29 test-gtk-parser-test28 test-gtk-parser-test
29# Not working with GTK3 and a critical grab that is in
30# the GTK3 code.
31# test-gtk-submenu
30endif32endif
3133
32# The Python test only work on the system copy of34# The Python test only work on the system copy of
@@ -135,6 +137,8 @@
135137
136test-glib-layout: test-glib-layout-client test-glib-layout-server Makefile.am138test-glib-layout: test-glib-layout-client test-glib-layout-server Makefile.am
137 @echo "#!/bin/bash" > $@139 @echo "#!/bin/bash" > $@
140 @echo export UBUNTU_MENUPROXY="" >> $@
141 @echo export G_DEBUG=fatal_criticals >> $@
138 @echo $(DBUS_RUNNER) --task ./test-glib-layout-client --task-name Client --task ./test-glib-layout-server --task-name Server --ignore-return >> $@142 @echo $(DBUS_RUNNER) --task ./test-glib-layout-client --task-name Client --task ./test-glib-layout-server --task-name Server --ignore-return >> $@
139 @chmod +x $@143 @chmod +x $@
140144
@@ -168,6 +172,8 @@
168172
169test-glib-events: test-glib-events-client test-glib-events-server Makefile.am173test-glib-events: test-glib-events-client test-glib-events-server Makefile.am
170 @echo "#!/bin/bash" > $@174 @echo "#!/bin/bash" > $@
175 @echo export UBUNTU_MENUPROXY="" >> $@
176 @echo export G_DEBUG=fatal_criticals >> $@
171 @echo $(DBUS_RUNNER) --task ./test-glib-events-client --task-name Client --task ./test-glib-events-server --task-name Server --ignore-return >> $@177 @echo $(DBUS_RUNNER) --task ./test-glib-events-client --task-name Client --task ./test-glib-events-server --task-name Server --ignore-return >> $@
172 @chmod +x $@178 @chmod +x $@
173179
@@ -199,6 +205,8 @@
199205
200test-json: test-json-client test-json-server Makefile.am206test-json: test-json-client test-json-server Makefile.am
201 @echo "#!/bin/bash" > $@207 @echo "#!/bin/bash" > $@
208 @echo export UBUNTU_MENUPROXY="" >> $@
209 @echo export G_DEBUG=fatal_criticals >> $@
202 @echo $(XVFB_RUN) >> $@210 @echo $(XVFB_RUN) >> $@
203 @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 >> $@211 @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 >> $@
204 @echo diff $(srcdir)/test-json-01.json test-json-01.output.json \> /dev/null >> $@212 @echo diff $(srcdir)/test-json-01.json test-json-01.output.json \> /dev/null >> $@
@@ -240,6 +248,11 @@
240248
241test-glib-submenu: test-glib-submenu-client test-glib-submenu-server Makefile.am249test-glib-submenu: test-glib-submenu-client test-glib-submenu-server Makefile.am
242 @echo "#!/bin/bash" > $@250 @echo "#!/bin/bash" > $@
251 @echo export UBUNTU_MENUPROXY="" >> $@
252# Removing the check for criticals here as there's one coming from GTK
253# in the grabbing code on GTK3. Since we can't add events to the stack
254# we can't remove this error from getting thrown :-(
255# @echo export G_DEBUG=fatal_criticals >> $@
243 @echo $(DBUS_RUNNER) --task ./test-glib-submenu-client --task-name Client --task ./test-glib-submenu-server --task-name Server --ignore-return >> $@256 @echo $(DBUS_RUNNER) --task ./test-glib-submenu-client --task-name Client --task ./test-glib-submenu-server --task-name Server --ignore-return >> $@
244 @chmod +x $@257 @chmod +x $@
245258
@@ -275,6 +288,8 @@
275288
276test-glib-objects-test: test-glib-objects Makefile.am289test-glib-objects-test: test-glib-objects Makefile.am
277 @echo "#!/bin/bash" > $@290 @echo "#!/bin/bash" > $@
291 @echo export UBUNTU_MENUPROXY="" >> $@
292 @echo export G_DEBUG=fatal_criticals >> $@
278 @echo $(DBUS_RUNNER) --task gtester --task-name test --parameter --verbose --parameter -k --parameter -o --parameter $(OBJECT_XML_REPORT) --parameter ./test-glib-objects >> $@293 @echo $(DBUS_RUNNER) --task gtester --task-name test --parameter --verbose --parameter -k --parameter -o --parameter $(OBJECT_XML_REPORT) --parameter ./test-glib-objects >> $@
279 @chmod +x $@294 @chmod +x $@
280295
@@ -297,6 +312,8 @@
297312
298test-glib-properties: test-glib-properties-client test-glib-properties-server Makefile.am313test-glib-properties: test-glib-properties-client test-glib-properties-server Makefile.am
299 @echo "#!/bin/bash" > $@314 @echo "#!/bin/bash" > $@
315 @echo export UBUNTU_MENUPROXY="" >> $@
316 @echo export G_DEBUG=fatal_criticals >> $@
300 @echo $(DBUS_RUNNER) --task ./test-glib-properties-client --task-name Client --task ./test-glib-properties-server --task-name Server --ignore-return >> $@317 @echo $(DBUS_RUNNER) --task ./test-glib-properties-client --task-name Client --task ./test-glib-properties-server --task-name Server --ignore-return >> $@
301 @chmod +x $@318 @chmod +x $@
302319
@@ -330,6 +347,8 @@
330347
331test-glib-proxy: test-glib-proxy-client test-glib-proxy-server test-glib-proxy-proxy Makefile.am348test-glib-proxy: test-glib-proxy-client test-glib-proxy-server test-glib-proxy-proxy Makefile.am
332 @echo "#!/bin/bash" > $@349 @echo "#!/bin/bash" > $@
350 @echo export UBUNTU_MENUPROXY="" >> $@
351 @echo export G_DEBUG=fatal_criticals >> $@
333 @echo $(DBUS_RUNNER) --task ./test-glib-proxy-client --task-name Client --task ./test-glib-proxy-server --task-name Server --ignore-return \\ >> $@352 @echo $(DBUS_RUNNER) --task ./test-glib-proxy-client --task-name Client --task ./test-glib-proxy-server --task-name Server --ignore-return \\ >> $@
334 @echo --task ./test-glib-proxy-proxy --parameter test.proxy.first_proxy --parameter test.proxy.second_proxy --task-name Proxy01 --ignore-return \\ >> $@353 @echo --task ./test-glib-proxy-proxy --parameter test.proxy.first_proxy --parameter test.proxy.second_proxy --task-name Proxy01 --ignore-return \\ >> $@
335 @echo --task ./test-glib-proxy-proxy --parameter test.proxy.second_proxy --parameter test.proxy.third_proxy --task-name Proxy02 --ignore-return \\ >> $@354 @echo --task ./test-glib-proxy-proxy --parameter test.proxy.second_proxy --parameter test.proxy.third_proxy --task-name Proxy02 --ignore-return \\ >> $@
@@ -399,6 +418,8 @@
399418
400test-gtk-objects-test: test-gtk-objects Makefile.am419test-gtk-objects-test: test-gtk-objects Makefile.am
401 @echo "#!/bin/bash" > $@420 @echo "#!/bin/bash" > $@
421 @echo export UBUNTU_MENUPROXY="" >> $@
422 @echo export G_DEBUG=fatal_criticals >> $@
402 @echo $(XVFB_RUN) >> $@423 @echo $(XVFB_RUN) >> $@
403 @echo $(DBUS_RUNNER) --task gtester --task-name test --parameter --verbose --parameter -k --parameter -o --parameter $(GTK_OBJECT_XML_REPORT) --parameter ./test-gtk-objects >> $@424 @echo $(DBUS_RUNNER) --task gtester --task-name test --parameter --verbose --parameter -k --parameter -o --parameter $(GTK_OBJECT_XML_REPORT) --parameter ./test-gtk-objects >> $@
404 @chmod +x $@425 @chmod +x $@
@@ -429,6 +450,8 @@
429450
430test-gtk-parser-test: test-gtk-parser Makefile.am451test-gtk-parser-test: test-gtk-parser Makefile.am
431 @echo "#!/bin/bash" > $@452 @echo "#!/bin/bash" > $@
453 @echo export UBUNTU_MENUPROXY="" >> $@
454 @echo export G_DEBUG=fatal_criticals >> $@
432 @echo $(XVFB_RUN) >> $@455 @echo $(XVFB_RUN) >> $@
433 @echo gtester --verbose -k -o $(GTK_PARSER_XML_REPORT) ./test-gtk-parser >> $@456 @echo gtester --verbose -k -o $(GTK_PARSER_XML_REPORT) ./test-gtk-parser >> $@
434 @chmod +x $@457 @chmod +x $@
@@ -457,6 +480,8 @@
457480
458test-gtk-label: test-gtk-label-client test-gtk-label-server test-gtk-label.json Makefile.am481test-gtk-label: test-gtk-label-client test-gtk-label-server test-gtk-label.json Makefile.am
459 @echo "#!/bin/bash" > $@482 @echo "#!/bin/bash" > $@
483 @echo export UBUNTU_MENUPROXY="" >> $@
484 @echo export G_DEBUG=fatal_criticals >> $@
460 @echo $(XVFB_RUN) >> $@485 @echo $(XVFB_RUN) >> $@
461 @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 >> $@486 @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 >> $@
462 @chmod +x $@487 @chmod +x $@
@@ -498,6 +523,8 @@
498523
499test-gtk-shortcut: test-gtk-shortcut-client test-gtk-shortcut-server Makefile.am524test-gtk-shortcut: test-gtk-shortcut-client test-gtk-shortcut-server Makefile.am
500 @echo "#!/bin/bash" > $@525 @echo "#!/bin/bash" > $@
526 @echo export UBUNTU_MENUPROXY="" >> $@
527 @echo export G_DEBUG=fatal_criticals >> $@
501 @echo $(XVFB_RUN) >> $@528 @echo $(XVFB_RUN) >> $@
502 @echo $(DBUS_RUNNER) --task ./test-gtk-shortcut-client --task-name Client --task ./test-gtk-shortcut-server --task-name Server --ignore-return >> $@529 @echo $(DBUS_RUNNER) --task ./test-gtk-shortcut-client --task-name Client --task ./test-gtk-shortcut-server --task-name Server --ignore-return >> $@
503 @chmod +x $@530 @chmod +x $@
@@ -538,6 +565,8 @@
538565
539test-gtk-shortcut-python: test-gtk-shortcut-server test-gtk-shortcut-client.py Makefile.am566test-gtk-shortcut-python: test-gtk-shortcut-server test-gtk-shortcut-client.py Makefile.am
540 @echo "#!/bin/bash" > $@567 @echo "#!/bin/bash" > $@
568 @echo export UBUNTU_MENUPROXY="" >> $@
569 @echo export G_DEBUG=fatal_criticals >> $@
541 @echo $(XVFB_RUN) >> $@570 @echo $(XVFB_RUN) >> $@
542 @echo $(DBUS_RUNNER) --task $(srcdir)/test-gtk-shortcut-client.py --task-name Client --task ./test-gtk-shortcut-server --task-name Server --ignore-return >> $@571 @echo $(DBUS_RUNNER) --task $(srcdir)/test-gtk-shortcut-client.py --task-name Client --task ./test-gtk-shortcut-server --task-name Server --ignore-return >> $@
543 @chmod +x $@572 @chmod +x $@
@@ -551,6 +580,8 @@
551580
552test-gtk-reorder: test-gtk-label-client test-gtk-reorder-server Makefile.am581test-gtk-reorder: test-gtk-label-client test-gtk-reorder-server Makefile.am
553 @echo "#!/bin/bash" > $@582 @echo "#!/bin/bash" > $@
583 @echo export UBUNTU_MENUPROXY="" >> $@
584 @echo export G_DEBUG=fatal_criticals >> $@
554 @echo $(XVFB_RUN) >> $@585 @echo $(XVFB_RUN) >> $@
555 @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 >> $@586 @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 >> $@
556 @chmod +x $@587 @chmod +x $@
@@ -576,6 +607,8 @@
576607
577test-gtk-submenu: test-gtk-submenu-client test-gtk-submenu-server Makefile.am608test-gtk-submenu: test-gtk-submenu-client test-gtk-submenu-server Makefile.am
578 @echo "#!/bin/bash" > $@609 @echo "#!/bin/bash" > $@
610 @echo export UBUNTU_MENUPROXY="" >> $@
611 @echo export G_DEBUG=fatal_criticals >> $@
579 @echo $(XVFB_RUN) >> $@612 @echo $(XVFB_RUN) >> $@
580 @echo $(DBUS_RUNNER) --task ./test-gtk-submenu-client --task-name Client --task ./test-gtk-submenu-server --task-name Server --ignore-return >> $@613 @echo $(DBUS_RUNNER) --task ./test-gtk-submenu-client --task-name Client --task ./test-gtk-submenu-server --task-name Server --ignore-return >> $@
581 @chmod +x $@614 @chmod +x $@
@@ -616,6 +649,8 @@
616649
617test-mago: test-gtk-label-client test-gtk-label-server $(srcdir)/dbusmenu-gtk/mago_tests/dbusmenu.xml Makefile.am650test-mago: test-gtk-label-client test-gtk-label-server $(srcdir)/dbusmenu-gtk/mago_tests/dbusmenu.xml Makefile.am
618 @echo "#!/bin/bash" > $@651 @echo "#!/bin/bash" > $@
652 @echo export UBUNTU_MENUPROXY="" >> $@
653 @echo export G_DEBUG=fatal_criticals >> $@
619 @echo $(XVFB_RUN) >> $@654 @echo $(XVFB_RUN) >> $@
620 @echo cd $(srcdir)/dbusmenu-gtk >> $@655 @echo cd $(srcdir)/dbusmenu-gtk >> $@
621 @echo /usr/lib/at-spi/at-spi-registryd \& >> $@656 @echo /usr/lib/at-spi/at-spi-registryd \& >> $@
622657
=== modified file 'tests/Makefile.in'
--- tests/Makefile.in 2012-01-31 05:25:37 +0000
+++ tests/Makefile.in 2012-02-23 06:13:18 +0000
@@ -1,9 +1,9 @@
1# Makefile.in generated by automake 1.11.1 from Makefile.am.1# Makefile.in generated by automake 1.11.3 from Makefile.am.
2# @configure_input@2# @configure_input@
33
4# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,4# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
5# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation,5# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software
6# Inc.6# Foundation, Inc.
7# This Makefile.in is free software; the Free Software Foundation7# This Makefile.in is free software; the Free Software Foundation
8# gives unlimited permission to copy and/or distribute it,8# gives unlimited permission to copy and/or distribute it,
9# with or without modifications, as long as this notice is preserved.9# with or without modifications, as long as this notice is preserved.
@@ -48,7 +48,6 @@
48@WANT_LIBDBUSMENUGTK_TRUE@ test-gtk-label \48@WANT_LIBDBUSMENUGTK_TRUE@ test-gtk-label \
49@WANT_LIBDBUSMENUGTK_TRUE@ test-gtk-shortcut \49@WANT_LIBDBUSMENUGTK_TRUE@ test-gtk-shortcut \
50@WANT_LIBDBUSMENUGTK_TRUE@ test-gtk-reorder \50@WANT_LIBDBUSMENUGTK_TRUE@ test-gtk-reorder \
51@WANT_LIBDBUSMENUGTK_TRUE@ test-gtk-submenu \
52@WANT_LIBDBUSMENUGTK_TRUE@ test-gtk-parser-test51@WANT_LIBDBUSMENUGTK_TRUE@ test-gtk-parser-test
5352
54check_PROGRAMS = glib-server-nomenu$(EXEEXT) \53check_PROGRAMS = glib-server-nomenu$(EXEEXT) \
@@ -117,6 +116,12 @@
117am__base_list = \116am__base_list = \
118 sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \117 sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
119 sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'118 sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
119am__uninstall_files_from_dir = { \
120 test -z "$$files" \
121 || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
122 || { echo " ( cd '$$dir' && rm -f" $$files ")"; \
123 $(am__cd) "$$dir" && rm -f $$files; }; \
124 }
120am__installdirs = "$(DESTDIR)$(libdir)" "$(DESTDIR)$(examplesdir)" \125am__installdirs = "$(DESTDIR)$(libdir)" "$(DESTDIR)$(examplesdir)" \
121 "$(DESTDIR)$(jsondir)" "$(DESTDIR)$(pkgconfigdir)" \126 "$(DESTDIR)$(jsondir)" "$(DESTDIR)$(pkgconfigdir)" \
122 "$(DESTDIR)$(libdbusmenu_jsonloaderincludedir)"127 "$(DESTDIR)$(libdbusmenu_jsonloaderincludedir)"
@@ -129,8 +134,8 @@
129 libdbusmenu_jsonloader_la-json-loader.lo134 libdbusmenu_jsonloader_la-json-loader.lo
130libdbusmenu_jsonloader_la_OBJECTS = \135libdbusmenu_jsonloader_la_OBJECTS = \
131 $(am_libdbusmenu_jsonloader_la_OBJECTS)136 $(am_libdbusmenu_jsonloader_la_OBJECTS)
132AM_V_lt = $(am__v_lt_$(V))137AM_V_lt = $(am__v_lt_@AM_V@)
133am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY))138am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@)
134am__v_lt_0 = --silent139am__v_lt_0 = --silent
135libdbusmenu_jsonloader_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \140libdbusmenu_jsonloader_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
136 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \141 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
@@ -415,21 +420,21 @@
415 $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \420 $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \
416 $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \421 $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
417 $(AM_CFLAGS) $(CFLAGS)422 $(AM_CFLAGS) $(CFLAGS)
418AM_V_CC = $(am__v_CC_$(V))423AM_V_CC = $(am__v_CC_@AM_V@)
419am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY))424am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@)
420am__v_CC_0 = @echo " CC " $@;425am__v_CC_0 = @echo " CC " $@;
421AM_V_at = $(am__v_at_$(V))426AM_V_at = $(am__v_at_@AM_V@)
422am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))427am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
423am__v_at_0 = @428am__v_at_0 = @
424CCLD = $(CC)429CCLD = $(CC)
425LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \430LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
426 $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \431 $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
427 $(AM_LDFLAGS) $(LDFLAGS) -o $@432 $(AM_LDFLAGS) $(LDFLAGS) -o $@
428AM_V_CCLD = $(am__v_CCLD_$(V))433AM_V_CCLD = $(am__v_CCLD_@AM_V@)
429am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY))434am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@)
430am__v_CCLD_0 = @echo " CCLD " $@;435am__v_CCLD_0 = @echo " CCLD " $@;
431AM_V_GEN = $(am__v_GEN_$(V))436AM_V_GEN = $(am__v_GEN_@AM_V@)
432am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY))437am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
433am__v_GEN_0 = @echo " GEN " $@;438am__v_GEN_0 = @echo " GEN " $@;
434SOURCES = $(libdbusmenu_jsonloader_la_SOURCES) \439SOURCES = $(libdbusmenu_jsonloader_la_SOURCES) \
435 $(glib_server_nomenu_SOURCES) \440 $(glib_server_nomenu_SOURCES) \
@@ -683,6 +688,9 @@
683 dbusmenu-gtk/mago_tests/data/static.json \688 dbusmenu-gtk/mago_tests/data/static.json \
684 dbusmenu-gtk/mago_tests/data/test-gtk-label.json \689 dbusmenu-gtk/mago_tests/data/test-gtk-label.json \
685 test-json-01.json690 test-json-01.json
691# Not working with GTK3 and a critical grab that is in
692# the GTK3 code.
693# test-gtk-submenu
686694
687# The Python test only work on the system copy of695# The Python test only work on the system copy of
688# dbusmenu, so while they can be usefule they're not696# dbusmenu, so while they can be usefule they're not
@@ -1163,7 +1171,7 @@
1163 echo "rm -f \"$${dir}/so_locations\""; \1171 echo "rm -f \"$${dir}/so_locations\""; \
1164 rm -f "$${dir}/so_locations"; \1172 rm -f "$${dir}/so_locations"; \
1165 done1173 done
1166libdbusmenu-jsonloader.la: $(libdbusmenu_jsonloader_la_OBJECTS) $(libdbusmenu_jsonloader_la_DEPENDENCIES) 1174libdbusmenu-jsonloader.la: $(libdbusmenu_jsonloader_la_OBJECTS) $(libdbusmenu_jsonloader_la_DEPENDENCIES) $(EXTRA_libdbusmenu_jsonloader_la_DEPENDENCIES)
1167 $(AM_V_CCLD)$(libdbusmenu_jsonloader_la_LINK) -rpath $(libdir) $(libdbusmenu_jsonloader_la_OBJECTS) $(libdbusmenu_jsonloader_la_LIBADD) $(LIBS)1175 $(AM_V_CCLD)$(libdbusmenu_jsonloader_la_LINK) -rpath $(libdir) $(libdbusmenu_jsonloader_la_OBJECTS) $(libdbusmenu_jsonloader_la_LIBADD) $(LIBS)
11681176
1169clean-checkPROGRAMS:1177clean-checkPROGRAMS:
@@ -1174,79 +1182,79 @@
1174 list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \1182 list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \
1175 echo " rm -f" $$list; \1183 echo " rm -f" $$list; \
1176 rm -f $$list1184 rm -f $$list
1177glib-server-nomenu$(EXEEXT): $(glib_server_nomenu_OBJECTS) $(glib_server_nomenu_DEPENDENCIES) 1185glib-server-nomenu$(EXEEXT): $(glib_server_nomenu_OBJECTS) $(glib_server_nomenu_DEPENDENCIES) $(EXTRA_glib_server_nomenu_DEPENDENCIES)
1178 @rm -f glib-server-nomenu$(EXEEXT)1186 @rm -f glib-server-nomenu$(EXEEXT)
1179 $(AM_V_CCLD)$(glib_server_nomenu_LINK) $(glib_server_nomenu_OBJECTS) $(glib_server_nomenu_LDADD) $(LIBS)1187 $(AM_V_CCLD)$(glib_server_nomenu_LINK) $(glib_server_nomenu_OBJECTS) $(glib_server_nomenu_LDADD) $(LIBS)
1180test-glib-events-client$(EXEEXT): $(test_glib_events_client_OBJECTS) $(test_glib_events_client_DEPENDENCIES) 1188test-glib-events-client$(EXEEXT): $(test_glib_events_client_OBJECTS) $(test_glib_events_client_DEPENDENCIES) $(EXTRA_test_glib_events_client_DEPENDENCIES)
1181 @rm -f test-glib-events-client$(EXEEXT)1189 @rm -f test-glib-events-client$(EXEEXT)
1182 $(AM_V_CCLD)$(test_glib_events_client_LINK) $(test_glib_events_client_OBJECTS) $(test_glib_events_client_LDADD) $(LIBS)1190 $(AM_V_CCLD)$(test_glib_events_client_LINK) $(test_glib_events_client_OBJECTS) $(test_glib_events_client_LDADD) $(LIBS)
1183test-glib-events-server$(EXEEXT): $(test_glib_events_server_OBJECTS) $(test_glib_events_server_DEPENDENCIES) 1191test-glib-events-server$(EXEEXT): $(test_glib_events_server_OBJECTS) $(test_glib_events_server_DEPENDENCIES) $(EXTRA_test_glib_events_server_DEPENDENCIES)
1184 @rm -f test-glib-events-server$(EXEEXT)1192 @rm -f test-glib-events-server$(EXEEXT)
1185 $(AM_V_CCLD)$(test_glib_events_server_LINK) $(test_glib_events_server_OBJECTS) $(test_glib_events_server_LDADD) $(LIBS)1193 $(AM_V_CCLD)$(test_glib_events_server_LINK) $(test_glib_events_server_OBJECTS) $(test_glib_events_server_LDADD) $(LIBS)
1186test-glib-layout-client$(EXEEXT): $(test_glib_layout_client_OBJECTS) $(test_glib_layout_client_DEPENDENCIES) 1194test-glib-layout-client$(EXEEXT): $(test_glib_layout_client_OBJECTS) $(test_glib_layout_client_DEPENDENCIES) $(EXTRA_test_glib_layout_client_DEPENDENCIES)
1187 @rm -f test-glib-layout-client$(EXEEXT)1195 @rm -f test-glib-layout-client$(EXEEXT)
1188 $(AM_V_CCLD)$(test_glib_layout_client_LINK) $(test_glib_layout_client_OBJECTS) $(test_glib_layout_client_LDADD) $(LIBS)1196 $(AM_V_CCLD)$(test_glib_layout_client_LINK) $(test_glib_layout_client_OBJECTS) $(test_glib_layout_client_LDADD) $(LIBS)
1189test-glib-layout-server$(EXEEXT): $(test_glib_layout_server_OBJECTS) $(test_glib_layout_server_DEPENDENCIES) 1197test-glib-layout-server$(EXEEXT): $(test_glib_layout_server_OBJECTS) $(test_glib_layout_server_DEPENDENCIES) $(EXTRA_test_glib_layout_server_DEPENDENCIES)
1190 @rm -f test-glib-layout-server$(EXEEXT)1198 @rm -f test-glib-layout-server$(EXEEXT)
1191 $(AM_V_CCLD)$(test_glib_layout_server_LINK) $(test_glib_layout_server_OBJECTS) $(test_glib_layout_server_LDADD) $(LIBS)1199 $(AM_V_CCLD)$(test_glib_layout_server_LINK) $(test_glib_layout_server_OBJECTS) $(test_glib_layout_server_LDADD) $(LIBS)
1192test-glib-objects$(EXEEXT): $(test_glib_objects_OBJECTS) $(test_glib_objects_DEPENDENCIES) 1200test-glib-objects$(EXEEXT): $(test_glib_objects_OBJECTS) $(test_glib_objects_DEPENDENCIES) $(EXTRA_test_glib_objects_DEPENDENCIES)
1193 @rm -f test-glib-objects$(EXEEXT)1201 @rm -f test-glib-objects$(EXEEXT)
1194 $(AM_V_CCLD)$(test_glib_objects_LINK) $(test_glib_objects_OBJECTS) $(test_glib_objects_LDADD) $(LIBS)1202 $(AM_V_CCLD)$(test_glib_objects_LINK) $(test_glib_objects_OBJECTS) $(test_glib_objects_LDADD) $(LIBS)
1195test-glib-properties-client$(EXEEXT): $(test_glib_properties_client_OBJECTS) $(test_glib_properties_client_DEPENDENCIES) 1203test-glib-properties-client$(EXEEXT): $(test_glib_properties_client_OBJECTS) $(test_glib_properties_client_DEPENDENCIES) $(EXTRA_test_glib_properties_client_DEPENDENCIES)
1196 @rm -f test-glib-properties-client$(EXEEXT)1204 @rm -f test-glib-properties-client$(EXEEXT)
1197 $(AM_V_CCLD)$(test_glib_properties_client_LINK) $(test_glib_properties_client_OBJECTS) $(test_glib_properties_client_LDADD) $(LIBS)1205 $(AM_V_CCLD)$(test_glib_properties_client_LINK) $(test_glib_properties_client_OBJECTS) $(test_glib_properties_client_LDADD) $(LIBS)
1198test-glib-properties-server$(EXEEXT): $(test_glib_properties_server_OBJECTS) $(test_glib_properties_server_DEPENDENCIES) 1206test-glib-properties-server$(EXEEXT): $(test_glib_properties_server_OBJECTS) $(test_glib_properties_server_DEPENDENCIES) $(EXTRA_test_glib_properties_server_DEPENDENCIES)
1199 @rm -f test-glib-properties-server$(EXEEXT)1207 @rm -f test-glib-properties-server$(EXEEXT)
1200 $(AM_V_CCLD)$(test_glib_properties_server_LINK) $(test_glib_properties_server_OBJECTS) $(test_glib_properties_server_LDADD) $(LIBS)1208 $(AM_V_CCLD)$(test_glib_properties_server_LINK) $(test_glib_properties_server_OBJECTS) $(test_glib_properties_server_LDADD) $(LIBS)
1201test-glib-proxy-client$(EXEEXT): $(test_glib_proxy_client_OBJECTS) $(test_glib_proxy_client_DEPENDENCIES) 1209test-glib-proxy-client$(EXEEXT): $(test_glib_proxy_client_OBJECTS) $(test_glib_proxy_client_DEPENDENCIES) $(EXTRA_test_glib_proxy_client_DEPENDENCIES)
1202 @rm -f test-glib-proxy-client$(EXEEXT)1210 @rm -f test-glib-proxy-client$(EXEEXT)
1203 $(AM_V_CCLD)$(test_glib_proxy_client_LINK) $(test_glib_proxy_client_OBJECTS) $(test_glib_proxy_client_LDADD) $(LIBS)1211 $(AM_V_CCLD)$(test_glib_proxy_client_LINK) $(test_glib_proxy_client_OBJECTS) $(test_glib_proxy_client_LDADD) $(LIBS)
1204test-glib-proxy-proxy$(EXEEXT): $(test_glib_proxy_proxy_OBJECTS) $(test_glib_proxy_proxy_DEPENDENCIES) 1212test-glib-proxy-proxy$(EXEEXT): $(test_glib_proxy_proxy_OBJECTS) $(test_glib_proxy_proxy_DEPENDENCIES) $(EXTRA_test_glib_proxy_proxy_DEPENDENCIES)
1205 @rm -f test-glib-proxy-proxy$(EXEEXT)1213 @rm -f test-glib-proxy-proxy$(EXEEXT)
1206 $(AM_V_CCLD)$(test_glib_proxy_proxy_LINK) $(test_glib_proxy_proxy_OBJECTS) $(test_glib_proxy_proxy_LDADD) $(LIBS)1214 $(AM_V_CCLD)$(test_glib_proxy_proxy_LINK) $(test_glib_proxy_proxy_OBJECTS) $(test_glib_proxy_proxy_LDADD) $(LIBS)
1207test-glib-proxy-server$(EXEEXT): $(test_glib_proxy_server_OBJECTS) $(test_glib_proxy_server_DEPENDENCIES) 1215test-glib-proxy-server$(EXEEXT): $(test_glib_proxy_server_OBJECTS) $(test_glib_proxy_server_DEPENDENCIES) $(EXTRA_test_glib_proxy_server_DEPENDENCIES)
1208 @rm -f test-glib-proxy-server$(EXEEXT)1216 @rm -f test-glib-proxy-server$(EXEEXT)
1209 $(AM_V_CCLD)$(test_glib_proxy_server_LINK) $(test_glib_proxy_server_OBJECTS) $(test_glib_proxy_server_LDADD) $(LIBS)1217 $(AM_V_CCLD)$(test_glib_proxy_server_LINK) $(test_glib_proxy_server_OBJECTS) $(test_glib_proxy_server_LDADD) $(LIBS)
1210test-glib-simple-items$(EXEEXT): $(test_glib_simple_items_OBJECTS) $(test_glib_simple_items_DEPENDENCIES) 1218test-glib-simple-items$(EXEEXT): $(test_glib_simple_items_OBJECTS) $(test_glib_simple_items_DEPENDENCIES) $(EXTRA_test_glib_simple_items_DEPENDENCIES)
1211 @rm -f test-glib-simple-items$(EXEEXT)1219 @rm -f test-glib-simple-items$(EXEEXT)
1212 $(AM_V_CCLD)$(test_glib_simple_items_LINK) $(test_glib_simple_items_OBJECTS) $(test_glib_simple_items_LDADD) $(LIBS)1220 $(AM_V_CCLD)$(test_glib_simple_items_LINK) $(test_glib_simple_items_OBJECTS) $(test_glib_simple_items_LDADD) $(LIBS)
1213test-glib-submenu-client$(EXEEXT): $(test_glib_submenu_client_OBJECTS) $(test_glib_submenu_client_DEPENDENCIES) 1221test-glib-submenu-client$(EXEEXT): $(test_glib_submenu_client_OBJECTS) $(test_glib_submenu_client_DEPENDENCIES) $(EXTRA_test_glib_submenu_client_DEPENDENCIES)
1214 @rm -f test-glib-submenu-client$(EXEEXT)1222 @rm -f test-glib-submenu-client$(EXEEXT)
1215 $(AM_V_CCLD)$(test_glib_submenu_client_LINK) $(test_glib_submenu_client_OBJECTS) $(test_glib_submenu_client_LDADD) $(LIBS)1223 $(AM_V_CCLD)$(test_glib_submenu_client_LINK) $(test_glib_submenu_client_OBJECTS) $(test_glib_submenu_client_LDADD) $(LIBS)
1216test-glib-submenu-server$(EXEEXT): $(test_glib_submenu_server_OBJECTS) $(test_glib_submenu_server_DEPENDENCIES) 1224test-glib-submenu-server$(EXEEXT): $(test_glib_submenu_server_OBJECTS) $(test_glib_submenu_server_DEPENDENCIES) $(EXTRA_test_glib_submenu_server_DEPENDENCIES)
1217 @rm -f test-glib-submenu-server$(EXEEXT)1225 @rm -f test-glib-submenu-server$(EXEEXT)
1218 $(AM_V_CCLD)$(test_glib_submenu_server_LINK) $(test_glib_submenu_server_OBJECTS) $(test_glib_submenu_server_LDADD) $(LIBS)1226 $(AM_V_CCLD)$(test_glib_submenu_server_LINK) $(test_glib_submenu_server_OBJECTS) $(test_glib_submenu_server_LDADD) $(LIBS)
1219test-gtk-label-client$(EXEEXT): $(test_gtk_label_client_OBJECTS) $(test_gtk_label_client_DEPENDENCIES) 1227test-gtk-label-client$(EXEEXT): $(test_gtk_label_client_OBJECTS) $(test_gtk_label_client_DEPENDENCIES) $(EXTRA_test_gtk_label_client_DEPENDENCIES)
1220 @rm -f test-gtk-label-client$(EXEEXT)1228 @rm -f test-gtk-label-client$(EXEEXT)
1221 $(AM_V_CCLD)$(test_gtk_label_client_LINK) $(test_gtk_label_client_OBJECTS) $(test_gtk_label_client_LDADD) $(LIBS)1229 $(AM_V_CCLD)$(test_gtk_label_client_LINK) $(test_gtk_label_client_OBJECTS) $(test_gtk_label_client_LDADD) $(LIBS)
1222test-gtk-label-server$(EXEEXT): $(test_gtk_label_server_OBJECTS) $(test_gtk_label_server_DEPENDENCIES) 1230test-gtk-label-server$(EXEEXT): $(test_gtk_label_server_OBJECTS) $(test_gtk_label_server_DEPENDENCIES) $(EXTRA_test_gtk_label_server_DEPENDENCIES)
1223 @rm -f test-gtk-label-server$(EXEEXT)1231 @rm -f test-gtk-label-server$(EXEEXT)
1224 $(AM_V_CCLD)$(test_gtk_label_server_LINK) $(test_gtk_label_server_OBJECTS) $(test_gtk_label_server_LDADD) $(LIBS)1232 $(AM_V_CCLD)$(test_gtk_label_server_LINK) $(test_gtk_label_server_OBJECTS) $(test_gtk_label_server_LDADD) $(LIBS)
1225test-gtk-objects$(EXEEXT): $(test_gtk_objects_OBJECTS) $(test_gtk_objects_DEPENDENCIES) 1233test-gtk-objects$(EXEEXT): $(test_gtk_objects_OBJECTS) $(test_gtk_objects_DEPENDENCIES) $(EXTRA_test_gtk_objects_DEPENDENCIES)
1226 @rm -f test-gtk-objects$(EXEEXT)1234 @rm -f test-gtk-objects$(EXEEXT)
1227 $(AM_V_CCLD)$(test_gtk_objects_LINK) $(test_gtk_objects_OBJECTS) $(test_gtk_objects_LDADD) $(LIBS)1235 $(AM_V_CCLD)$(test_gtk_objects_LINK) $(test_gtk_objects_OBJECTS) $(test_gtk_objects_LDADD) $(LIBS)
1228test-gtk-parser$(EXEEXT): $(test_gtk_parser_OBJECTS) $(test_gtk_parser_DEPENDENCIES) 1236test-gtk-parser$(EXEEXT): $(test_gtk_parser_OBJECTS) $(test_gtk_parser_DEPENDENCIES) $(EXTRA_test_gtk_parser_DEPENDENCIES)
1229 @rm -f test-gtk-parser$(EXEEXT)1237 @rm -f test-gtk-parser$(EXEEXT)
1230 $(AM_V_CCLD)$(test_gtk_parser_LINK) $(test_gtk_parser_OBJECTS) $(test_gtk_parser_LDADD) $(LIBS)1238 $(AM_V_CCLD)$(test_gtk_parser_LINK) $(test_gtk_parser_OBJECTS) $(test_gtk_parser_LDADD) $(LIBS)
1231test-gtk-reorder-server$(EXEEXT): $(test_gtk_reorder_server_OBJECTS) $(test_gtk_reorder_server_DEPENDENCIES) 1239test-gtk-reorder-server$(EXEEXT): $(test_gtk_reorder_server_OBJECTS) $(test_gtk_reorder_server_DEPENDENCIES) $(EXTRA_test_gtk_reorder_server_DEPENDENCIES)
1232 @rm -f test-gtk-reorder-server$(EXEEXT)1240 @rm -f test-gtk-reorder-server$(EXEEXT)
1233 $(AM_V_CCLD)$(test_gtk_reorder_server_LINK) $(test_gtk_reorder_server_OBJECTS) $(test_gtk_reorder_server_LDADD) $(LIBS)1241 $(AM_V_CCLD)$(test_gtk_reorder_server_LINK) $(test_gtk_reorder_server_OBJECTS) $(test_gtk_reorder_server_LDADD) $(LIBS)
1234test-gtk-shortcut-client$(EXEEXT): $(test_gtk_shortcut_client_OBJECTS) $(test_gtk_shortcut_client_DEPENDENCIES) 1242test-gtk-shortcut-client$(EXEEXT): $(test_gtk_shortcut_client_OBJECTS) $(test_gtk_shortcut_client_DEPENDENCIES) $(EXTRA_test_gtk_shortcut_client_DEPENDENCIES)
1235 @rm -f test-gtk-shortcut-client$(EXEEXT)1243 @rm -f test-gtk-shortcut-client$(EXEEXT)
1236 $(AM_V_CCLD)$(test_gtk_shortcut_client_LINK) $(test_gtk_shortcut_client_OBJECTS) $(test_gtk_shortcut_client_LDADD) $(LIBS)1244 $(AM_V_CCLD)$(test_gtk_shortcut_client_LINK) $(test_gtk_shortcut_client_OBJECTS) $(test_gtk_shortcut_client_LDADD) $(LIBS)
1237test-gtk-shortcut-server$(EXEEXT): $(test_gtk_shortcut_server_OBJECTS) $(test_gtk_shortcut_server_DEPENDENCIES) 1245test-gtk-shortcut-server$(EXEEXT): $(test_gtk_shortcut_server_OBJECTS) $(test_gtk_shortcut_server_DEPENDENCIES) $(EXTRA_test_gtk_shortcut_server_DEPENDENCIES)
1238 @rm -f test-gtk-shortcut-server$(EXEEXT)1246 @rm -f test-gtk-shortcut-server$(EXEEXT)
1239 $(AM_V_CCLD)$(test_gtk_shortcut_server_LINK) $(test_gtk_shortcut_server_OBJECTS) $(test_gtk_shortcut_server_LDADD) $(LIBS)1247 $(AM_V_CCLD)$(test_gtk_shortcut_server_LINK) $(test_gtk_shortcut_server_OBJECTS) $(test_gtk_shortcut_server_LDADD) $(LIBS)
1240test-gtk-submenu-client$(EXEEXT): $(test_gtk_submenu_client_OBJECTS) $(test_gtk_submenu_client_DEPENDENCIES) 1248test-gtk-submenu-client$(EXEEXT): $(test_gtk_submenu_client_OBJECTS) $(test_gtk_submenu_client_DEPENDENCIES) $(EXTRA_test_gtk_submenu_client_DEPENDENCIES)
1241 @rm -f test-gtk-submenu-client$(EXEEXT)1249 @rm -f test-gtk-submenu-client$(EXEEXT)
1242 $(AM_V_CCLD)$(test_gtk_submenu_client_LINK) $(test_gtk_submenu_client_OBJECTS) $(test_gtk_submenu_client_LDADD) $(LIBS)1250 $(AM_V_CCLD)$(test_gtk_submenu_client_LINK) $(test_gtk_submenu_client_OBJECTS) $(test_gtk_submenu_client_LDADD) $(LIBS)
1243test-gtk-submenu-server$(EXEEXT): $(test_gtk_submenu_server_OBJECTS) $(test_gtk_submenu_server_DEPENDENCIES) 1251test-gtk-submenu-server$(EXEEXT): $(test_gtk_submenu_server_OBJECTS) $(test_gtk_submenu_server_DEPENDENCIES) $(EXTRA_test_gtk_submenu_server_DEPENDENCIES)
1244 @rm -f test-gtk-submenu-server$(EXEEXT)1252 @rm -f test-gtk-submenu-server$(EXEEXT)
1245 $(AM_V_CCLD)$(test_gtk_submenu_server_LINK) $(test_gtk_submenu_server_OBJECTS) $(test_gtk_submenu_server_LDADD) $(LIBS)1253 $(AM_V_CCLD)$(test_gtk_submenu_server_LINK) $(test_gtk_submenu_server_OBJECTS) $(test_gtk_submenu_server_LDADD) $(LIBS)
1246test-json-client$(EXEEXT): $(test_json_client_OBJECTS) $(test_json_client_DEPENDENCIES) 1254test-json-client$(EXEEXT): $(test_json_client_OBJECTS) $(test_json_client_DEPENDENCIES) $(EXTRA_test_json_client_DEPENDENCIES)
1247 @rm -f test-json-client$(EXEEXT)1255 @rm -f test-json-client$(EXEEXT)
1248 $(AM_V_CCLD)$(test_json_client_LINK) $(test_json_client_OBJECTS) $(test_json_client_LDADD) $(LIBS)1256 $(AM_V_CCLD)$(test_json_client_LINK) $(test_json_client_OBJECTS) $(test_json_client_LDADD) $(LIBS)
1249test-json-server$(EXEEXT): $(test_json_server_OBJECTS) $(test_json_server_DEPENDENCIES) 1257test-json-server$(EXEEXT): $(test_json_server_OBJECTS) $(test_json_server_DEPENDENCIES) $(EXTRA_test_json_server_DEPENDENCIES)
1250 @rm -f test-json-server$(EXEEXT)1258 @rm -f test-json-server$(EXEEXT)
1251 $(AM_V_CCLD)$(test_json_server_LINK) $(test_json_server_OBJECTS) $(test_json_server_LDADD) $(LIBS)1259 $(AM_V_CCLD)$(test_json_server_LINK) $(test_json_server_OBJECTS) $(test_json_server_LDADD) $(LIBS)
12521260
@@ -1286,434 +1294,380 @@
1286.c.o:1294.c.o:
1287@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<1295@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
1288@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po1296@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
1289@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@1297@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
1290@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
1291@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@1298@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1292@am__fastdepCC_FALSE@ $(COMPILE) -c $<1299@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c $<
12931300
1294.c.obj:1301.c.obj:
1295@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`1302@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
1296@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po1303@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
1297@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@1304@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
1298@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
1299@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@1305@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1300@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'`1306@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c `$(CYGPATH_W) '$<'`
13011307
1302.c.lo:1308.c.lo:
1303@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<1309@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
1304@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo1310@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
1305@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@1311@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
1306@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
1307@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@1312@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1308@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $<1313@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $<
13091314
1310libdbusmenu_jsonloader_la-json-loader.lo: json-loader.c1315libdbusmenu_jsonloader_la-json-loader.lo: json-loader.c
1311@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.c1316@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
1312@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libdbusmenu_jsonloader_la-json-loader.Tpo $(DEPDIR)/libdbusmenu_jsonloader_la-json-loader.Plo1317@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libdbusmenu_jsonloader_la-json-loader.Tpo $(DEPDIR)/libdbusmenu_jsonloader_la-json-loader.Plo
1313@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@1318@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='json-loader.c' object='libdbusmenu_jsonloader_la-json-loader.lo' libtool=yes @AMDEPBACKSLASH@
1314@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='json-loader.c' object='libdbusmenu_jsonloader_la-json-loader.lo' libtool=yes @AMDEPBACKSLASH@
1315@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@1319@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1316@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.c1320@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
13171321
1318glib_server_nomenu-glib-server-nomenu.o: glib-server-nomenu.c1322glib_server_nomenu-glib-server-nomenu.o: glib-server-nomenu.c
1319@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.c1323@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
1320@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/glib_server_nomenu-glib-server-nomenu.Tpo $(DEPDIR)/glib_server_nomenu-glib-server-nomenu.Po1324@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/glib_server_nomenu-glib-server-nomenu.Tpo $(DEPDIR)/glib_server_nomenu-glib-server-nomenu.Po
1321@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@1325@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='glib-server-nomenu.c' object='glib_server_nomenu-glib-server-nomenu.o' libtool=no @AMDEPBACKSLASH@
1322@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='glib-server-nomenu.c' object='glib_server_nomenu-glib-server-nomenu.o' libtool=no @AMDEPBACKSLASH@
1323@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@1326@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1324@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.c1327@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
13251328
1326glib_server_nomenu-glib-server-nomenu.obj: glib-server-nomenu.c1329glib_server_nomenu-glib-server-nomenu.obj: glib-server-nomenu.c
1327@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`1330@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`
1328@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/glib_server_nomenu-glib-server-nomenu.Tpo $(DEPDIR)/glib_server_nomenu-glib-server-nomenu.Po1331@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/glib_server_nomenu-glib-server-nomenu.Tpo $(DEPDIR)/glib_server_nomenu-glib-server-nomenu.Po
1329@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@1332@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='glib-server-nomenu.c' object='glib_server_nomenu-glib-server-nomenu.obj' libtool=no @AMDEPBACKSLASH@
1330@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='glib-server-nomenu.c' object='glib_server_nomenu-glib-server-nomenu.obj' libtool=no @AMDEPBACKSLASH@
1331@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@1333@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1332@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`1334@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`
13331335
1334test_glib_events_client-test-glib-events-client.o: test-glib-events-client.c1336test_glib_events_client-test-glib-events-client.o: test-glib-events-client.c
1335@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.c1337@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
1336@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.Po1338@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
1337@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@1339@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@
1338@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-glib-events-client.c' object='test_glib_events_client-test-glib-events-client.o' libtool=no @AMDEPBACKSLASH@
1339@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@1340@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1340@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.c1341@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
13411342
1342test_glib_events_client-test-glib-events-client.obj: test-glib-events-client.c1343test_glib_events_client-test-glib-events-client.obj: test-glib-events-client.c
1343@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`1344@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`
1344@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.Po1345@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
1345@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@1346@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@
1346@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-glib-events-client.c' object='test_glib_events_client-test-glib-events-client.obj' libtool=no @AMDEPBACKSLASH@
1347@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@1347@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1348@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`1348@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`
13491349
1350test_glib_events_server-test-glib-events-server.o: test-glib-events-server.c1350test_glib_events_server-test-glib-events-server.o: test-glib-events-server.c
1351@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.c1351@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
1352@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.Po1352@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
1353@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@1353@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@
1354@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-glib-events-server.c' object='test_glib_events_server-test-glib-events-server.o' libtool=no @AMDEPBACKSLASH@
1355@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@1354@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1356@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.c1355@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
13571356
1358test_glib_events_server-test-glib-events-server.obj: test-glib-events-server.c1357test_glib_events_server-test-glib-events-server.obj: test-glib-events-server.c
1359@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`1358@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`
1360@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.Po1359@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
1361@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@1360@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@
1362@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-glib-events-server.c' object='test_glib_events_server-test-glib-events-server.obj' libtool=no @AMDEPBACKSLASH@
1363@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@1361@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1364@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`1362@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`
13651363
1366test_glib_layout_client-test-glib-layout-client.o: test-glib-layout-client.c1364test_glib_layout_client-test-glib-layout-client.o: test-glib-layout-client.c
1367@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.c1365@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
1368@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.Po1366@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
1369@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@1367@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@
1370@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-glib-layout-client.c' object='test_glib_layout_client-test-glib-layout-client.o' libtool=no @AMDEPBACKSLASH@
1371@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@1368@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1372@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.c1369@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
13731370
1374test_glib_layout_client-test-glib-layout-client.obj: test-glib-layout-client.c1371test_glib_layout_client-test-glib-layout-client.obj: test-glib-layout-client.c
1375@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`1372@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`
1376@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.Po1373@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
1377@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@1374@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@
1378@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-glib-layout-client.c' object='test_glib_layout_client-test-glib-layout-client.obj' libtool=no @AMDEPBACKSLASH@
1379@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@1375@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1380@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`1376@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`
13811377
1382test_glib_layout_server-test-glib-layout-server.o: test-glib-layout-server.c1378test_glib_layout_server-test-glib-layout-server.o: test-glib-layout-server.c
1383@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.c1379@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
1384@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.Po1380@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
1385@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@1381@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@
1386@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-glib-layout-server.c' object='test_glib_layout_server-test-glib-layout-server.o' libtool=no @AMDEPBACKSLASH@
1387@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@1382@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1388@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.c1383@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
13891384
1390test_glib_layout_server-test-glib-layout-server.obj: test-glib-layout-server.c1385test_glib_layout_server-test-glib-layout-server.obj: test-glib-layout-server.c
1391@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`1386@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`
1392@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.Po1387@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
1393@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@1388@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@
1394@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-glib-layout-server.c' object='test_glib_layout_server-test-glib-layout-server.obj' libtool=no @AMDEPBACKSLASH@
1395@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@1389@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1396@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`1390@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`
13971391
1398test_glib_objects-test-glib-objects.o: test-glib-objects.c1392test_glib_objects-test-glib-objects.o: test-glib-objects.c
1399@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.c1393@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
1400@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_glib_objects-test-glib-objects.Tpo $(DEPDIR)/test_glib_objects-test-glib-objects.Po1394@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_glib_objects-test-glib-objects.Tpo $(DEPDIR)/test_glib_objects-test-glib-objects.Po
1401@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@1395@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-glib-objects.c' object='test_glib_objects-test-glib-objects.o' libtool=no @AMDEPBACKSLASH@
1402@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-glib-objects.c' object='test_glib_objects-test-glib-objects.o' libtool=no @AMDEPBACKSLASH@
1403@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@1396@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1404@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.c1397@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
14051398
1406test_glib_objects-test-glib-objects.obj: test-glib-objects.c1399test_glib_objects-test-glib-objects.obj: test-glib-objects.c
1407@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`1400@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`
1408@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_glib_objects-test-glib-objects.Tpo $(DEPDIR)/test_glib_objects-test-glib-objects.Po1401@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_glib_objects-test-glib-objects.Tpo $(DEPDIR)/test_glib_objects-test-glib-objects.Po
1409@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@1402@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-glib-objects.c' object='test_glib_objects-test-glib-objects.obj' libtool=no @AMDEPBACKSLASH@
1410@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-glib-objects.c' object='test_glib_objects-test-glib-objects.obj' libtool=no @AMDEPBACKSLASH@
1411@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@1403@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1412@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`1404@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`
14131405
1414test_glib_properties_client-test-glib-properties-client.o: test-glib-properties-client.c1406test_glib_properties_client-test-glib-properties-client.o: test-glib-properties-client.c
1415@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.c1407@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
1416@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.Po1408@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
1417@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@1409@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@
1418@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-glib-properties-client.c' object='test_glib_properties_client-test-glib-properties-client.o' libtool=no @AMDEPBACKSLASH@
1419@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@1410@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1420@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.c1411@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
14211412
1422test_glib_properties_client-test-glib-properties-client.obj: test-glib-properties-client.c1413test_glib_properties_client-test-glib-properties-client.obj: test-glib-properties-client.c
1423@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`1414@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`
1424@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.Po1415@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
1425@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@1416@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@
1426@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-glib-properties-client.c' object='test_glib_properties_client-test-glib-properties-client.obj' libtool=no @AMDEPBACKSLASH@
1427@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@1417@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1428@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`1418@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`
14291419
1430test_glib_properties_server-test-glib-properties-server.o: test-glib-properties-server.c1420test_glib_properties_server-test-glib-properties-server.o: test-glib-properties-server.c
1431@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.c1421@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
1432@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.Po1422@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
1433@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@1423@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@
1434@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-glib-properties-server.c' object='test_glib_properties_server-test-glib-properties-server.o' libtool=no @AMDEPBACKSLASH@
1435@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@1424@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1436@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.c1425@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
14371426
1438test_glib_properties_server-test-glib-properties-server.obj: test-glib-properties-server.c1427test_glib_properties_server-test-glib-properties-server.obj: test-glib-properties-server.c
1439@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`1428@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`
1440@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.Po1429@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
1441@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@1430@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@
1442@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-glib-properties-server.c' object='test_glib_properties_server-test-glib-properties-server.obj' libtool=no @AMDEPBACKSLASH@
1443@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@1431@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1444@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`1432@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`
14451433
1446test_glib_proxy_client-test-glib-proxy-client.o: test-glib-proxy-client.c1434test_glib_proxy_client-test-glib-proxy-client.o: test-glib-proxy-client.c
1447@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.c1435@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
1448@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.Po1436@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
1449@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@1437@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@
1450@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-glib-proxy-client.c' object='test_glib_proxy_client-test-glib-proxy-client.o' libtool=no @AMDEPBACKSLASH@
1451@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@1438@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1452@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.c1439@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
14531440
1454test_glib_proxy_client-test-glib-proxy-client.obj: test-glib-proxy-client.c1441test_glib_proxy_client-test-glib-proxy-client.obj: test-glib-proxy-client.c
1455@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`1442@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`
1456@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.Po1443@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
1457@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@1444@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@
1458@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-glib-proxy-client.c' object='test_glib_proxy_client-test-glib-proxy-client.obj' libtool=no @AMDEPBACKSLASH@
1459@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@1445@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1460@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`1446@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`
14611447
1462test_glib_proxy_proxy-test-glib-proxy-proxy.o: test-glib-proxy-proxy.c1448test_glib_proxy_proxy-test-glib-proxy-proxy.o: test-glib-proxy-proxy.c
1463@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.c1449@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
1464@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.Po1450@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
1465@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@1451@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@
1466@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-glib-proxy-proxy.c' object='test_glib_proxy_proxy-test-glib-proxy-proxy.o' libtool=no @AMDEPBACKSLASH@
1467@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@1452@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1468@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.c1453@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
14691454
1470test_glib_proxy_proxy-test-glib-proxy-proxy.obj: test-glib-proxy-proxy.c1455test_glib_proxy_proxy-test-glib-proxy-proxy.obj: test-glib-proxy-proxy.c
1471@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`1456@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`
1472@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.Po1457@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
1473@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@1458@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@
1474@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-glib-proxy-proxy.c' object='test_glib_proxy_proxy-test-glib-proxy-proxy.obj' libtool=no @AMDEPBACKSLASH@
1475@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@1459@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1476@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`1460@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`
14771461
1478test_glib_proxy_server-test-glib-proxy-server.o: test-glib-proxy-server.c1462test_glib_proxy_server-test-glib-proxy-server.o: test-glib-proxy-server.c
1479@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.c1463@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
1480@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.Po1464@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
1481@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@1465@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@
1482@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-glib-proxy-server.c' object='test_glib_proxy_server-test-glib-proxy-server.o' libtool=no @AMDEPBACKSLASH@
1483@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@1466@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1484@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.c1467@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
14851468
1486test_glib_proxy_server-test-glib-proxy-server.obj: test-glib-proxy-server.c1469test_glib_proxy_server-test-glib-proxy-server.obj: test-glib-proxy-server.c
1487@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`1470@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`
1488@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.Po1471@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
1489@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@1472@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@
1490@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-glib-proxy-server.c' object='test_glib_proxy_server-test-glib-proxy-server.obj' libtool=no @AMDEPBACKSLASH@
1491@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@1473@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1492@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`1474@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`
14931475
1494test_glib_simple_items-test-glib-simple-items.o: test-glib-simple-items.c1476test_glib_simple_items-test-glib-simple-items.o: test-glib-simple-items.c
1495@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.c1477@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
1496@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.Po1478@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
1497@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@1479@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@
1498@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-glib-simple-items.c' object='test_glib_simple_items-test-glib-simple-items.o' libtool=no @AMDEPBACKSLASH@
1499@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@1480@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1500@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.c1481@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
15011482
1502test_glib_simple_items-test-glib-simple-items.obj: test-glib-simple-items.c1483test_glib_simple_items-test-glib-simple-items.obj: test-glib-simple-items.c
1503@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`1484@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`
1504@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.Po1485@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
1505@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@1486@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@
1506@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-glib-simple-items.c' object='test_glib_simple_items-test-glib-simple-items.obj' libtool=no @AMDEPBACKSLASH@
1507@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@1487@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1508@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`1488@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`
15091489
1510test_glib_submenu_client-test-glib-submenu-client.o: test-glib-submenu-client.c1490test_glib_submenu_client-test-glib-submenu-client.o: test-glib-submenu-client.c
1511@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.c1491@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
1512@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.Po1492@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
1513@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@1493@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@
1514@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-glib-submenu-client.c' object='test_glib_submenu_client-test-glib-submenu-client.o' libtool=no @AMDEPBACKSLASH@
1515@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@1494@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1516@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.c1495@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
15171496
1518test_glib_submenu_client-test-glib-submenu-client.obj: test-glib-submenu-client.c1497test_glib_submenu_client-test-glib-submenu-client.obj: test-glib-submenu-client.c
1519@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`1498@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`
1520@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.Po1499@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
1521@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@1500@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@
1522@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-glib-submenu-client.c' object='test_glib_submenu_client-test-glib-submenu-client.obj' libtool=no @AMDEPBACKSLASH@
1523@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@1501@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1524@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`1502@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`
15251503
1526test_glib_submenu_server-test-glib-submenu-server.o: test-glib-submenu-server.c1504test_glib_submenu_server-test-glib-submenu-server.o: test-glib-submenu-server.c
1527@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.c1505@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
1528@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.Po1506@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
1529@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@1507@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@
1530@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-glib-submenu-server.c' object='test_glib_submenu_server-test-glib-submenu-server.o' libtool=no @AMDEPBACKSLASH@
1531@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@1508@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1532@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.c1509@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
15331510
1534test_glib_submenu_server-test-glib-submenu-server.obj: test-glib-submenu-server.c1511test_glib_submenu_server-test-glib-submenu-server.obj: test-glib-submenu-server.c
1535@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`1512@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`
1536@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.Po1513@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
1537@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@1514@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@
1538@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-glib-submenu-server.c' object='test_glib_submenu_server-test-glib-submenu-server.obj' libtool=no @AMDEPBACKSLASH@
1539@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@1515@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1540@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`1516@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`
15411517
1542test_gtk_label_client-test-gtk-label-client.o: test-gtk-label-client.c1518test_gtk_label_client-test-gtk-label-client.o: test-gtk-label-client.c
1543@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.c1519@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
1544@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.Po1520@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
1545@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@1521@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@
1546@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-gtk-label-client.c' object='test_gtk_label_client-test-gtk-label-client.o' libtool=no @AMDEPBACKSLASH@
1547@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@1522@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1548@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.c1523@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
15491524
1550test_gtk_label_client-test-gtk-label-client.obj: test-gtk-label-client.c1525test_gtk_label_client-test-gtk-label-client.obj: test-gtk-label-client.c
1551@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`1526@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`
1552@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.Po1527@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
1553@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@1528@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@
1554@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-gtk-label-client.c' object='test_gtk_label_client-test-gtk-label-client.obj' libtool=no @AMDEPBACKSLASH@
1555@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@1529@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1556@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`1530@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`
15571531
1558test_gtk_label_server-test-gtk-label-server.o: test-gtk-label-server.c1532test_gtk_label_server-test-gtk-label-server.o: test-gtk-label-server.c
1559@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.c1533@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
1560@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.Po1534@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
1561@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@1535@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@
1562@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-gtk-label-server.c' object='test_gtk_label_server-test-gtk-label-server.o' libtool=no @AMDEPBACKSLASH@
1563@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@1536@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1564@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.c1537@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
15651538
1566test_gtk_label_server-test-gtk-label-server.obj: test-gtk-label-server.c1539test_gtk_label_server-test-gtk-label-server.obj: test-gtk-label-server.c
1567@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`1540@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`
1568@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.Po1541@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
1569@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@1542@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@
1570@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-gtk-label-server.c' object='test_gtk_label_server-test-gtk-label-server.obj' libtool=no @AMDEPBACKSLASH@
1571@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@1543@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1572@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`1544@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`
15731545
1574test_gtk_objects-test-gtk-objects.o: test-gtk-objects.c1546test_gtk_objects-test-gtk-objects.o: test-gtk-objects.c
1575@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.c1547@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
1576@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_gtk_objects-test-gtk-objects.Tpo $(DEPDIR)/test_gtk_objects-test-gtk-objects.Po1548@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_gtk_objects-test-gtk-objects.Tpo $(DEPDIR)/test_gtk_objects-test-gtk-objects.Po
1577@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@1549@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-gtk-objects.c' object='test_gtk_objects-test-gtk-objects.o' libtool=no @AMDEPBACKSLASH@
1578@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-gtk-objects.c' object='test_gtk_objects-test-gtk-objects.o' libtool=no @AMDEPBACKSLASH@
1579@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@1550@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1580@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.c1551@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
15811552
1582test_gtk_objects-test-gtk-objects.obj: test-gtk-objects.c1553test_gtk_objects-test-gtk-objects.obj: test-gtk-objects.c
1583@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`1554@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`
1584@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_gtk_objects-test-gtk-objects.Tpo $(DEPDIR)/test_gtk_objects-test-gtk-objects.Po1555@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_gtk_objects-test-gtk-objects.Tpo $(DEPDIR)/test_gtk_objects-test-gtk-objects.Po
1585@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@1556@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-gtk-objects.c' object='test_gtk_objects-test-gtk-objects.obj' libtool=no @AMDEPBACKSLASH@
1586@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-gtk-objects.c' object='test_gtk_objects-test-gtk-objects.obj' libtool=no @AMDEPBACKSLASH@
1587@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@1557@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1588@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`1558@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`
15891559
1590test_gtk_parser-test-gtk-parser.o: test-gtk-parser.c1560test_gtk_parser-test-gtk-parser.o: test-gtk-parser.c
1591@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.c1561@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
1592@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_gtk_parser-test-gtk-parser.Tpo $(DEPDIR)/test_gtk_parser-test-gtk-parser.Po1562@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_gtk_parser-test-gtk-parser.Tpo $(DEPDIR)/test_gtk_parser-test-gtk-parser.Po
1593@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@1563@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-gtk-parser.c' object='test_gtk_parser-test-gtk-parser.o' libtool=no @AMDEPBACKSLASH@
1594@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-gtk-parser.c' object='test_gtk_parser-test-gtk-parser.o' libtool=no @AMDEPBACKSLASH@
1595@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@1564@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1596@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.c1565@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
15971566
1598test_gtk_parser-test-gtk-parser.obj: test-gtk-parser.c1567test_gtk_parser-test-gtk-parser.obj: test-gtk-parser.c
1599@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`1568@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`
1600@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_gtk_parser-test-gtk-parser.Tpo $(DEPDIR)/test_gtk_parser-test-gtk-parser.Po1569@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_gtk_parser-test-gtk-parser.Tpo $(DEPDIR)/test_gtk_parser-test-gtk-parser.Po
1601@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@1570@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-gtk-parser.c' object='test_gtk_parser-test-gtk-parser.obj' libtool=no @AMDEPBACKSLASH@
1602@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-gtk-parser.c' object='test_gtk_parser-test-gtk-parser.obj' libtool=no @AMDEPBACKSLASH@
1603@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@1571@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1604@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`1572@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`
16051573
1606test_gtk_reorder_server-test-gtk-reorder-server.o: test-gtk-reorder-server.c1574test_gtk_reorder_server-test-gtk-reorder-server.o: test-gtk-reorder-server.c
1607@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.c1575@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
1608@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.Po1576@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
1609@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@1577@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@
1610@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-gtk-reorder-server.c' object='test_gtk_reorder_server-test-gtk-reorder-server.o' libtool=no @AMDEPBACKSLASH@
1611@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@1578@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1612@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.c1579@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
16131580
1614test_gtk_reorder_server-test-gtk-reorder-server.obj: test-gtk-reorder-server.c1581test_gtk_reorder_server-test-gtk-reorder-server.obj: test-gtk-reorder-server.c
1615@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`1582@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`
1616@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.Po1583@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
1617@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@1584@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@
1618@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-gtk-reorder-server.c' object='test_gtk_reorder_server-test-gtk-reorder-server.obj' libtool=no @AMDEPBACKSLASH@
1619@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@1585@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1620@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`1586@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`
16211587
1622test_gtk_shortcut_client-test-gtk-shortcut-client.o: test-gtk-shortcut-client.c1588test_gtk_shortcut_client-test-gtk-shortcut-client.o: test-gtk-shortcut-client.c
1623@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.c1589@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
1624@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.Po1590@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
1625@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@1591@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@
1626@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-gtk-shortcut-client.c' object='test_gtk_shortcut_client-test-gtk-shortcut-client.o' libtool=no @AMDEPBACKSLASH@
1627@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@1592@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1628@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.c1593@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
16291594
1630test_gtk_shortcut_client-test-gtk-shortcut-client.obj: test-gtk-shortcut-client.c1595test_gtk_shortcut_client-test-gtk-shortcut-client.obj: test-gtk-shortcut-client.c
1631@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`1596@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`
1632@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.Po1597@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
1633@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@1598@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@
1634@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-gtk-shortcut-client.c' object='test_gtk_shortcut_client-test-gtk-shortcut-client.obj' libtool=no @AMDEPBACKSLASH@
1635@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@1599@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1636@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`1600@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`
16371601
1638test_gtk_shortcut_server-test-gtk-shortcut-server.o: test-gtk-shortcut-server.c1602test_gtk_shortcut_server-test-gtk-shortcut-server.o: test-gtk-shortcut-server.c
1639@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.c1603@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
1640@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.Po1604@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
1641@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@1605@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@
1642@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-gtk-shortcut-server.c' object='test_gtk_shortcut_server-test-gtk-shortcut-server.o' libtool=no @AMDEPBACKSLASH@
1643@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@1606@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1644@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.c1607@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
16451608
1646test_gtk_shortcut_server-test-gtk-shortcut-server.obj: test-gtk-shortcut-server.c1609test_gtk_shortcut_server-test-gtk-shortcut-server.obj: test-gtk-shortcut-server.c
1647@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`1610@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`
1648@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.Po1611@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
1649@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@1612@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@
1650@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-gtk-shortcut-server.c' object='test_gtk_shortcut_server-test-gtk-shortcut-server.obj' libtool=no @AMDEPBACKSLASH@
1651@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@1613@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1652@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`1614@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`
16531615
1654test_gtk_submenu_client-test-gtk-submenu-client.o: test-gtk-submenu-client.c1616test_gtk_submenu_client-test-gtk-submenu-client.o: test-gtk-submenu-client.c
1655@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.c1617@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
1656@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.Po1618@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
1657@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@1619@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@
1658@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-gtk-submenu-client.c' object='test_gtk_submenu_client-test-gtk-submenu-client.o' libtool=no @AMDEPBACKSLASH@
1659@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@1620@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1660@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.c1621@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
16611622
1662test_gtk_submenu_client-test-gtk-submenu-client.obj: test-gtk-submenu-client.c1623test_gtk_submenu_client-test-gtk-submenu-client.obj: test-gtk-submenu-client.c
1663@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`1624@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`
1664@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.Po1625@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
1665@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@1626@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@
1666@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-gtk-submenu-client.c' object='test_gtk_submenu_client-test-gtk-submenu-client.obj' libtool=no @AMDEPBACKSLASH@
1667@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@1627@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1668@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`1628@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`
16691629
1670test_gtk_submenu_server-test-gtk-submenu-server.o: test-gtk-submenu-server.c1630test_gtk_submenu_server-test-gtk-submenu-server.o: test-gtk-submenu-server.c
1671@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.c1631@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
1672@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.Po1632@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
1673@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@1633@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@
1674@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-gtk-submenu-server.c' object='test_gtk_submenu_server-test-gtk-submenu-server.o' libtool=no @AMDEPBACKSLASH@
1675@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@1634@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1676@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.c1635@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
16771636
1678test_gtk_submenu_server-test-gtk-submenu-server.obj: test-gtk-submenu-server.c1637test_gtk_submenu_server-test-gtk-submenu-server.obj: test-gtk-submenu-server.c
1679@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`1638@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`
1680@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.Po1639@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
1681@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@1640@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@
1682@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-gtk-submenu-server.c' object='test_gtk_submenu_server-test-gtk-submenu-server.obj' libtool=no @AMDEPBACKSLASH@
1683@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@1641@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1684@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`1642@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`
16851643
1686test_json_client-test-json-client.o: test-json-client.c1644test_json_client-test-json-client.o: test-json-client.c
1687@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.c1645@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
1688@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_json_client-test-json-client.Tpo $(DEPDIR)/test_json_client-test-json-client.Po1646@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_json_client-test-json-client.Tpo $(DEPDIR)/test_json_client-test-json-client.Po
1689@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@1647@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-json-client.c' object='test_json_client-test-json-client.o' libtool=no @AMDEPBACKSLASH@
1690@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-json-client.c' object='test_json_client-test-json-client.o' libtool=no @AMDEPBACKSLASH@
1691@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@1648@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1692@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.c1649@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
16931650
1694test_json_client-test-json-client.obj: test-json-client.c1651test_json_client-test-json-client.obj: test-json-client.c
1695@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`1652@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`
1696@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_json_client-test-json-client.Tpo $(DEPDIR)/test_json_client-test-json-client.Po1653@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_json_client-test-json-client.Tpo $(DEPDIR)/test_json_client-test-json-client.Po
1697@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@1654@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-json-client.c' object='test_json_client-test-json-client.obj' libtool=no @AMDEPBACKSLASH@
1698@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-json-client.c' object='test_json_client-test-json-client.obj' libtool=no @AMDEPBACKSLASH@
1699@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@1655@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1700@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`1656@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`
17011657
1702test_json_server-test-json-server.o: test-json-server.c1658test_json_server-test-json-server.o: test-json-server.c
1703@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.c1659@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
1704@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_json_server-test-json-server.Tpo $(DEPDIR)/test_json_server-test-json-server.Po1660@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_json_server-test-json-server.Tpo $(DEPDIR)/test_json_server-test-json-server.Po
1705@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@1661@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-json-server.c' object='test_json_server-test-json-server.o' libtool=no @AMDEPBACKSLASH@
1706@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-json-server.c' object='test_json_server-test-json-server.o' libtool=no @AMDEPBACKSLASH@
1707@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@1662@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1708@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.c1663@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
17091664
1710test_json_server-test-json-server.obj: test-json-server.c1665test_json_server-test-json-server.obj: test-json-server.c
1711@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`1666@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`
1712@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_json_server-test-json-server.Tpo $(DEPDIR)/test_json_server-test-json-server.Po1667@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_json_server-test-json-server.Tpo $(DEPDIR)/test_json_server-test-json-server.Po
1713@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@1668@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-json-server.c' object='test_json_server-test-json-server.obj' libtool=no @AMDEPBACKSLASH@
1714@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-json-server.c' object='test_json_server-test-json-server.obj' libtool=no @AMDEPBACKSLASH@
1715@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@1669@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1716@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`1670@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`
17171671
1718mostlyclean-libtool:1672mostlyclean-libtool:
1719 -rm -f *.lo1673 -rm -f *.lo
@@ -1737,9 +1691,7 @@
1737 @$(NORMAL_UNINSTALL)1691 @$(NORMAL_UNINSTALL)
1738 @list='$(examples_DATA)'; test -n "$(examplesdir)" || list=; \1692 @list='$(examples_DATA)'; test -n "$(examplesdir)" || list=; \
1739 files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \1693 files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
1740 test -n "$$files" || exit 0; \1694 dir='$(DESTDIR)$(examplesdir)'; $(am__uninstall_files_from_dir)
1741 echo " ( cd '$(DESTDIR)$(examplesdir)' && rm -f" $$files ")"; \
1742 cd "$(DESTDIR)$(examplesdir)" && rm -f $$files
1743install-jsonDATA: $(json_DATA)1695install-jsonDATA: $(json_DATA)
1744 @$(NORMAL_INSTALL)1696 @$(NORMAL_INSTALL)
1745 test -z "$(jsondir)" || $(MKDIR_P) "$(DESTDIR)$(jsondir)"1697 test -z "$(jsondir)" || $(MKDIR_P) "$(DESTDIR)$(jsondir)"
@@ -1757,9 +1709,7 @@
1757 @$(NORMAL_UNINSTALL)1709 @$(NORMAL_UNINSTALL)
1758 @list='$(json_DATA)'; test -n "$(jsondir)" || list=; \1710 @list='$(json_DATA)'; test -n "$(jsondir)" || list=; \
1759 files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \1711 files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
1760 test -n "$$files" || exit 0; \1712 dir='$(DESTDIR)$(jsondir)'; $(am__uninstall_files_from_dir)
1761 echo " ( cd '$(DESTDIR)$(jsondir)' && rm -f" $$files ")"; \
1762 cd "$(DESTDIR)$(jsondir)" && rm -f $$files
1763install-pkgconfigDATA: $(pkgconfig_DATA)1713install-pkgconfigDATA: $(pkgconfig_DATA)
1764 @$(NORMAL_INSTALL)1714 @$(NORMAL_INSTALL)
1765 test -z "$(pkgconfigdir)" || $(MKDIR_P) "$(DESTDIR)$(pkgconfigdir)"1715 test -z "$(pkgconfigdir)" || $(MKDIR_P) "$(DESTDIR)$(pkgconfigdir)"
@@ -1777,9 +1727,7 @@
1777 @$(NORMAL_UNINSTALL)1727 @$(NORMAL_UNINSTALL)
1778 @list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \1728 @list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \
1779 files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \1729 files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
1780 test -n "$$files" || exit 0; \1730 dir='$(DESTDIR)$(pkgconfigdir)'; $(am__uninstall_files_from_dir)
1781 echo " ( cd '$(DESTDIR)$(pkgconfigdir)' && rm -f" $$files ")"; \
1782 cd "$(DESTDIR)$(pkgconfigdir)" && rm -f $$files
1783install-libdbusmenu_jsonloaderincludeHEADERS: $(libdbusmenu_jsonloaderinclude_HEADERS)1731install-libdbusmenu_jsonloaderincludeHEADERS: $(libdbusmenu_jsonloaderinclude_HEADERS)
1784 @$(NORMAL_INSTALL)1732 @$(NORMAL_INSTALL)
1785 test -z "$(libdbusmenu_jsonloaderincludedir)" || $(MKDIR_P) "$(DESTDIR)$(libdbusmenu_jsonloaderincludedir)"1733 test -z "$(libdbusmenu_jsonloaderincludedir)" || $(MKDIR_P) "$(DESTDIR)$(libdbusmenu_jsonloaderincludedir)"
@@ -1797,9 +1745,7 @@
1797 @$(NORMAL_UNINSTALL)1745 @$(NORMAL_UNINSTALL)
1798 @list='$(libdbusmenu_jsonloaderinclude_HEADERS)'; test -n "$(libdbusmenu_jsonloaderincludedir)" || list=; \1746 @list='$(libdbusmenu_jsonloaderinclude_HEADERS)'; test -n "$(libdbusmenu_jsonloaderincludedir)" || list=; \
1799 files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \1747 files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
1800 test -n "$$files" || exit 0; \1748 dir='$(DESTDIR)$(libdbusmenu_jsonloaderincludedir)'; $(am__uninstall_files_from_dir)
1801 echo " ( cd '$(DESTDIR)$(libdbusmenu_jsonloaderincludedir)' && rm -f" $$files ")"; \
1802 cd "$(DESTDIR)$(libdbusmenu_jsonloaderincludedir)" && rm -f $$files
18031749
1804ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)1750ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
1805 list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \1751 list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
@@ -1934,14 +1880,15 @@
1934 fi; \1880 fi; \
1935 dashes=`echo "$$dashes" | sed s/./=/g`; \1881 dashes=`echo "$$dashes" | sed s/./=/g`; \
1936 if test "$$failed" -eq 0; then \1882 if test "$$failed" -eq 0; then \
1937 echo "$$grn$$dashes"; \1883 col="$$grn"; \
1938 else \1884 else \
1939 echo "$$red$$dashes"; \1885 col="$$red"; \
1940 fi; \1886 fi; \
1941 echo "$$banner"; \1887 echo "$${col}$$dashes$${std}"; \
1942 test -z "$$skipped" || echo "$$skipped"; \1888 echo "$${col}$$banner$${std}"; \
1943 test -z "$$report" || echo "$$report"; \1889 test -z "$$skipped" || echo "$${col}$$skipped$${std}"; \
1944 echo "$$dashes$$std"; \1890 test -z "$$report" || echo "$${col}$$report$${std}"; \
1891 echo "$${col}$$dashes$${std}"; \
1945 test "$$failed" -eq 0; \1892 test "$$failed" -eq 0; \
1946 else :; fi1893 else :; fi
19471894
@@ -1994,10 +1941,15 @@
19941941
1995installcheck: installcheck-am1942installcheck: installcheck-am
1996install-strip:1943install-strip:
1997 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \1944 if test -z '$(STRIP)'; then \
1998 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \1945 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
1999 `test -z '$(STRIP)' || \1946 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
2000 echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install1947 install; \
1948 else \
1949 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
1950 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
1951 "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
1952 fi
2001mostlyclean-generic:1953mostlyclean-generic:
20021954
2003clean-generic:1955clean-generic:
@@ -2116,6 +2068,8 @@
21162068
2117test-glib-layout: test-glib-layout-client test-glib-layout-server Makefile.am2069test-glib-layout: test-glib-layout-client test-glib-layout-server Makefile.am
2118 @echo "#!/bin/bash" > $@2070 @echo "#!/bin/bash" > $@
2071 @echo export UBUNTU_MENUPROXY="" >> $@
2072 @echo export G_DEBUG=fatal_criticals >> $@
2119 @echo $(DBUS_RUNNER) --task ./test-glib-layout-client --task-name Client --task ./test-glib-layout-server --task-name Server --ignore-return >> $@2073 @echo $(DBUS_RUNNER) --task ./test-glib-layout-client --task-name Client --task ./test-glib-layout-server --task-name Server --ignore-return >> $@
2120 @chmod +x $@2074 @chmod +x $@
21212075
@@ -2125,6 +2079,8 @@
21252079
2126test-glib-events: test-glib-events-client test-glib-events-server Makefile.am2080test-glib-events: test-glib-events-client test-glib-events-server Makefile.am
2127 @echo "#!/bin/bash" > $@2081 @echo "#!/bin/bash" > $@
2082 @echo export UBUNTU_MENUPROXY="" >> $@
2083 @echo export G_DEBUG=fatal_criticals >> $@
2128 @echo $(DBUS_RUNNER) --task ./test-glib-events-client --task-name Client --task ./test-glib-events-server --task-name Server --ignore-return >> $@2084 @echo $(DBUS_RUNNER) --task ./test-glib-events-client --task-name Client --task ./test-glib-events-server --task-name Server --ignore-return >> $@
2129 @chmod +x $@2085 @chmod +x $@
21302086
@@ -2134,6 +2090,8 @@
21342090
2135test-json: test-json-client test-json-server Makefile.am2091test-json: test-json-client test-json-server Makefile.am
2136 @echo "#!/bin/bash" > $@2092 @echo "#!/bin/bash" > $@
2093 @echo export UBUNTU_MENUPROXY="" >> $@
2094 @echo export G_DEBUG=fatal_criticals >> $@
2137 @echo $(XVFB_RUN) >> $@2095 @echo $(XVFB_RUN) >> $@
2138 @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 >> $@2096 @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 >> $@
2139 @echo diff $(srcdir)/test-json-01.json test-json-01.output.json \> /dev/null >> $@2097 @echo diff $(srcdir)/test-json-01.json test-json-01.output.json \> /dev/null >> $@
@@ -2145,11 +2103,18 @@
21452103
2146test-glib-submenu: test-glib-submenu-client test-glib-submenu-server Makefile.am2104test-glib-submenu: test-glib-submenu-client test-glib-submenu-server Makefile.am
2147 @echo "#!/bin/bash" > $@2105 @echo "#!/bin/bash" > $@
2106 @echo export UBUNTU_MENUPROXY="" >> $@
2107# Removing the check for criticals here as there's one coming from GTK
2108# in the grabbing code on GTK3. Since we can't add events to the stack
2109# we can't remove this error from getting thrown :-(
2110# @echo export G_DEBUG=fatal_criticals >> $@
2148 @echo $(DBUS_RUNNER) --task ./test-glib-submenu-client --task-name Client --task ./test-glib-submenu-server --task-name Server --ignore-return >> $@2111 @echo $(DBUS_RUNNER) --task ./test-glib-submenu-client --task-name Client --task ./test-glib-submenu-server --task-name Server --ignore-return >> $@
2149 @chmod +x $@2112 @chmod +x $@
21502113
2151test-glib-objects-test: test-glib-objects Makefile.am2114test-glib-objects-test: test-glib-objects Makefile.am
2152 @echo "#!/bin/bash" > $@2115 @echo "#!/bin/bash" > $@
2116 @echo export UBUNTU_MENUPROXY="" >> $@
2117 @echo export G_DEBUG=fatal_criticals >> $@
2153 @echo $(DBUS_RUNNER) --task gtester --task-name test --parameter --verbose --parameter -k --parameter -o --parameter $(OBJECT_XML_REPORT) --parameter ./test-glib-objects >> $@2118 @echo $(DBUS_RUNNER) --task gtester --task-name test --parameter --verbose --parameter -k --parameter -o --parameter $(OBJECT_XML_REPORT) --parameter ./test-glib-objects >> $@
2154 @chmod +x $@2119 @chmod +x $@
21552120
@@ -2159,6 +2124,8 @@
21592124
2160test-glib-properties: test-glib-properties-client test-glib-properties-server Makefile.am2125test-glib-properties: test-glib-properties-client test-glib-properties-server Makefile.am
2161 @echo "#!/bin/bash" > $@2126 @echo "#!/bin/bash" > $@
2127 @echo export UBUNTU_MENUPROXY="" >> $@
2128 @echo export G_DEBUG=fatal_criticals >> $@
2162 @echo $(DBUS_RUNNER) --task ./test-glib-properties-client --task-name Client --task ./test-glib-properties-server --task-name Server --ignore-return >> $@2129 @echo $(DBUS_RUNNER) --task ./test-glib-properties-client --task-name Client --task ./test-glib-properties-server --task-name Server --ignore-return >> $@
2163 @chmod +x $@2130 @chmod +x $@
21642131
@@ -2168,6 +2135,8 @@
21682135
2169test-glib-proxy: test-glib-proxy-client test-glib-proxy-server test-glib-proxy-proxy Makefile.am2136test-glib-proxy: test-glib-proxy-client test-glib-proxy-server test-glib-proxy-proxy Makefile.am
2170 @echo "#!/bin/bash" > $@2137 @echo "#!/bin/bash" > $@
2138 @echo export UBUNTU_MENUPROXY="" >> $@
2139 @echo export G_DEBUG=fatal_criticals >> $@
2171 @echo $(DBUS_RUNNER) --task ./test-glib-proxy-client --task-name Client --task ./test-glib-proxy-server --task-name Server --ignore-return \\ >> $@2140 @echo $(DBUS_RUNNER) --task ./test-glib-proxy-client --task-name Client --task ./test-glib-proxy-server --task-name Server --ignore-return \\ >> $@
2172 @echo --task ./test-glib-proxy-proxy --parameter test.proxy.first_proxy --parameter test.proxy.second_proxy --task-name Proxy01 --ignore-return \\ >> $@2141 @echo --task ./test-glib-proxy-proxy --parameter test.proxy.first_proxy --parameter test.proxy.second_proxy --task-name Proxy01 --ignore-return \\ >> $@
2173 @echo --task ./test-glib-proxy-proxy --parameter test.proxy.second_proxy --parameter test.proxy.third_proxy --task-name Proxy02 --ignore-return \\ >> $@2142 @echo --task ./test-glib-proxy-proxy --parameter test.proxy.second_proxy --parameter test.proxy.third_proxy --task-name Proxy02 --ignore-return \\ >> $@
@@ -2178,12 +2147,16 @@
21782147
2179test-gtk-objects-test: test-gtk-objects Makefile.am2148test-gtk-objects-test: test-gtk-objects Makefile.am
2180 @echo "#!/bin/bash" > $@2149 @echo "#!/bin/bash" > $@
2150 @echo export UBUNTU_MENUPROXY="" >> $@
2151 @echo export G_DEBUG=fatal_criticals >> $@
2181 @echo $(XVFB_RUN) >> $@2152 @echo $(XVFB_RUN) >> $@
2182 @echo $(DBUS_RUNNER) --task gtester --task-name test --parameter --verbose --parameter -k --parameter -o --parameter $(GTK_OBJECT_XML_REPORT) --parameter ./test-gtk-objects >> $@2153 @echo $(DBUS_RUNNER) --task gtester --task-name test --parameter --verbose --parameter -k --parameter -o --parameter $(GTK_OBJECT_XML_REPORT) --parameter ./test-gtk-objects >> $@
2183 @chmod +x $@2154 @chmod +x $@
21842155
2185test-gtk-parser-test: test-gtk-parser Makefile.am2156test-gtk-parser-test: test-gtk-parser Makefile.am
2186 @echo "#!/bin/bash" > $@2157 @echo "#!/bin/bash" > $@
2158 @echo export UBUNTU_MENUPROXY="" >> $@
2159 @echo export G_DEBUG=fatal_criticals >> $@
2187 @echo $(XVFB_RUN) >> $@2160 @echo $(XVFB_RUN) >> $@
2188 @echo gtester --verbose -k -o $(GTK_PARSER_XML_REPORT) ./test-gtk-parser >> $@2161 @echo gtester --verbose -k -o $(GTK_PARSER_XML_REPORT) ./test-gtk-parser >> $@
2189 @chmod +x $@2162 @chmod +x $@
@@ -2194,6 +2167,8 @@
21942167
2195test-gtk-label: test-gtk-label-client test-gtk-label-server test-gtk-label.json Makefile.am2168test-gtk-label: test-gtk-label-client test-gtk-label-server test-gtk-label.json Makefile.am
2196 @echo "#!/bin/bash" > $@2169 @echo "#!/bin/bash" > $@
2170 @echo export UBUNTU_MENUPROXY="" >> $@
2171 @echo export G_DEBUG=fatal_criticals >> $@
2197 @echo $(XVFB_RUN) >> $@2172 @echo $(XVFB_RUN) >> $@
2198 @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 >> $@2173 @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 >> $@
2199 @chmod +x $@2174 @chmod +x $@
@@ -2204,6 +2179,8 @@
22042179
2205test-gtk-shortcut: test-gtk-shortcut-client test-gtk-shortcut-server Makefile.am2180test-gtk-shortcut: test-gtk-shortcut-client test-gtk-shortcut-server Makefile.am
2206 @echo "#!/bin/bash" > $@2181 @echo "#!/bin/bash" > $@
2182 @echo export UBUNTU_MENUPROXY="" >> $@
2183 @echo export G_DEBUG=fatal_criticals >> $@
2207 @echo $(XVFB_RUN) >> $@2184 @echo $(XVFB_RUN) >> $@
2208 @echo $(DBUS_RUNNER) --task ./test-gtk-shortcut-client --task-name Client --task ./test-gtk-shortcut-server --task-name Server --ignore-return >> $@2185 @echo $(DBUS_RUNNER) --task ./test-gtk-shortcut-client --task-name Client --task ./test-gtk-shortcut-server --task-name Server --ignore-return >> $@
2209 @chmod +x $@2186 @chmod +x $@
@@ -2214,6 +2191,8 @@
22142191
2215test-gtk-shortcut-python: test-gtk-shortcut-server test-gtk-shortcut-client.py Makefile.am2192test-gtk-shortcut-python: test-gtk-shortcut-server test-gtk-shortcut-client.py Makefile.am
2216 @echo "#!/bin/bash" > $@2193 @echo "#!/bin/bash" > $@
2194 @echo export UBUNTU_MENUPROXY="" >> $@
2195 @echo export G_DEBUG=fatal_criticals >> $@
2217 @echo $(XVFB_RUN) >> $@2196 @echo $(XVFB_RUN) >> $@
2218 @echo $(DBUS_RUNNER) --task $(srcdir)/test-gtk-shortcut-client.py --task-name Client --task ./test-gtk-shortcut-server --task-name Server --ignore-return >> $@2197 @echo $(DBUS_RUNNER) --task $(srcdir)/test-gtk-shortcut-client.py --task-name Client --task ./test-gtk-shortcut-server --task-name Server --ignore-return >> $@
2219 @chmod +x $@2198 @chmod +x $@
@@ -2224,6 +2203,8 @@
22242203
2225test-gtk-reorder: test-gtk-label-client test-gtk-reorder-server Makefile.am2204test-gtk-reorder: test-gtk-label-client test-gtk-reorder-server Makefile.am
2226 @echo "#!/bin/bash" > $@2205 @echo "#!/bin/bash" > $@
2206 @echo export UBUNTU_MENUPROXY="" >> $@
2207 @echo export G_DEBUG=fatal_criticals >> $@
2227 @echo $(XVFB_RUN) >> $@2208 @echo $(XVFB_RUN) >> $@
2228 @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 >> $@2209 @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 >> $@
2229 @chmod +x $@2210 @chmod +x $@
@@ -2234,6 +2215,8 @@
22342215
2235test-gtk-submenu: test-gtk-submenu-client test-gtk-submenu-server Makefile.am2216test-gtk-submenu: test-gtk-submenu-client test-gtk-submenu-server Makefile.am
2236 @echo "#!/bin/bash" > $@2217 @echo "#!/bin/bash" > $@
2218 @echo export UBUNTU_MENUPROXY="" >> $@
2219 @echo export G_DEBUG=fatal_criticals >> $@
2237 @echo $(XVFB_RUN) >> $@2220 @echo $(XVFB_RUN) >> $@
2238 @echo $(DBUS_RUNNER) --task ./test-gtk-submenu-client --task-name Client --task ./test-gtk-submenu-server --task-name Server --ignore-return >> $@2221 @echo $(DBUS_RUNNER) --task ./test-gtk-submenu-client --task-name Client --task ./test-gtk-submenu-server --task-name Server --ignore-return >> $@
2239 @chmod +x $@2222 @chmod +x $@
@@ -2244,6 +2227,8 @@
22442227
2245test-mago: test-gtk-label-client test-gtk-label-server $(srcdir)/dbusmenu-gtk/mago_tests/dbusmenu.xml Makefile.am2228test-mago: test-gtk-label-client test-gtk-label-server $(srcdir)/dbusmenu-gtk/mago_tests/dbusmenu.xml Makefile.am
2246 @echo "#!/bin/bash" > $@2229 @echo "#!/bin/bash" > $@
2230 @echo export UBUNTU_MENUPROXY="" >> $@
2231 @echo export G_DEBUG=fatal_criticals >> $@
2247 @echo $(XVFB_RUN) >> $@2232 @echo $(XVFB_RUN) >> $@
2248 @echo cd $(srcdir)/dbusmenu-gtk >> $@2233 @echo cd $(srcdir)/dbusmenu-gtk >> $@
2249 @echo /usr/lib/at-spi/at-spi-registryd \& >> $@2234 @echo /usr/lib/at-spi/at-spi-registryd \& >> $@
22502235
=== modified file 'tests/test-gtk-submenu-server.c'
--- tests/test-gtk-submenu-server.c 2010-11-17 04:04:47 +0000
+++ tests/test-gtk-submenu-server.c 2012-02-23 06:13:18 +0000
@@ -64,6 +64,7 @@
6464
65 DbusmenuMenuitem * item;65 DbusmenuMenuitem * item;
66 item = add_item(root, "Folder 1");66 item = add_item(root, "Folder 1");
67 dbusmenu_menuitem_property_set(item, "disposition", "alert");
67 add_item(item, "1.1");68 add_item(item, "1.1");
68 add_item(item, "1.2");69 add_item(item, "1.2");
69 add_item(item, "1.3");70 add_item(item, "1.3");
7071
=== modified file 'tools/Makefile.in'
--- tools/Makefile.in 2011-09-20 05:03:25 +0000
+++ tools/Makefile.in 2012-02-23 06:13:18 +0000
@@ -1,9 +1,9 @@
1# Makefile.in generated by automake 1.11.1 from Makefile.am.1# Makefile.in generated by automake 1.11.3 from Makefile.am.
2# @configure_input@2# @configure_input@
33
4# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,4# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
5# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation,5# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software
6# Inc.6# Foundation, Inc.
7# This Makefile.in is free software; the Free Software Foundation7# This Makefile.in is free software; the Free Software Foundation
8# gives unlimited permission to copy and/or distribute it,8# gives unlimited permission to copy and/or distribute it,
9# with or without modifications, as long as this notice is preserved.9# with or without modifications, as long as this notice is preserved.
@@ -64,8 +64,8 @@
64dbusmenu_dumper_DEPENDENCIES = \64dbusmenu_dumper_DEPENDENCIES = \
65 ../libdbusmenu-glib/libdbusmenu-glib.la $(am__DEPENDENCIES_1) \65 ../libdbusmenu-glib/libdbusmenu-glib.la $(am__DEPENDENCIES_1) \
66 $(am__DEPENDENCIES_1)66 $(am__DEPENDENCIES_1)
67AM_V_lt = $(am__v_lt_$(V))67AM_V_lt = $(am__v_lt_@AM_V@)
68am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY))68am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@)
69am__v_lt_0 = --silent69am__v_lt_0 = --silent
70dbusmenu_dumper_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \70dbusmenu_dumper_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
71 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \71 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
@@ -92,6 +92,12 @@
92am__base_list = \92am__base_list = \
93 sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \93 sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
94 sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'94 sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
95am__uninstall_files_from_dir = { \
96 test -z "$$files" \
97 || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
98 || { echo " ( cd '$$dir' && rm -f" $$files ")"; \
99 $(am__cd) "$$dir" && rm -f $$files; }; \
100 }
95SCRIPTS = $(libexec_SCRIPTS)101SCRIPTS = $(libexec_SCRIPTS)
96DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)102DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)
97depcomp = $(SHELL) $(top_srcdir)/depcomp103depcomp = $(SHELL) $(top_srcdir)/depcomp
@@ -103,21 +109,21 @@
103 $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \109 $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \
104 $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \110 $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
105 $(AM_CFLAGS) $(CFLAGS)111 $(AM_CFLAGS) $(CFLAGS)
106AM_V_CC = $(am__v_CC_$(V))112AM_V_CC = $(am__v_CC_@AM_V@)
107am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY))113am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@)
108am__v_CC_0 = @echo " CC " $@;114am__v_CC_0 = @echo " CC " $@;
109AM_V_at = $(am__v_at_$(V))115AM_V_at = $(am__v_at_@AM_V@)
110am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))116am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
111am__v_at_0 = @117am__v_at_0 = @
112CCLD = $(CC)118CCLD = $(CC)
113LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \119LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
114 $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \120 $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
115 $(AM_LDFLAGS) $(LDFLAGS) -o $@121 $(AM_LDFLAGS) $(LDFLAGS) -o $@
116AM_V_CCLD = $(am__v_CCLD_$(V))122AM_V_CCLD = $(am__v_CCLD_@AM_V@)
117am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY))123am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@)
118am__v_CCLD_0 = @echo " CCLD " $@;124am__v_CCLD_0 = @echo " CCLD " $@;
119AM_V_GEN = $(am__v_GEN_$(V))125AM_V_GEN = $(am__v_GEN_@AM_V@)
120am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY))126am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
121am__v_GEN_0 = @echo " GEN " $@;127am__v_GEN_0 = @echo " GEN " $@;
122SOURCES = $(dbusmenu_dumper_SOURCES)128SOURCES = $(dbusmenu_dumper_SOURCES)
123DIST_SOURCES = $(dbusmenu_dumper_SOURCES)129DIST_SOURCES = $(dbusmenu_dumper_SOURCES)
@@ -434,7 +440,7 @@
434 list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \440 list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \
435 echo " rm -f" $$list; \441 echo " rm -f" $$list; \
436 rm -f $$list442 rm -f $$list
437dbusmenu-dumper$(EXEEXT): $(dbusmenu_dumper_OBJECTS) $(dbusmenu_dumper_DEPENDENCIES) 443dbusmenu-dumper$(EXEEXT): $(dbusmenu_dumper_OBJECTS) $(dbusmenu_dumper_DEPENDENCIES) $(EXTRA_dbusmenu_dumper_DEPENDENCIES)
438 @rm -f dbusmenu-dumper$(EXEEXT)444 @rm -f dbusmenu-dumper$(EXEEXT)
439 $(AM_V_CCLD)$(dbusmenu_dumper_LINK) $(dbusmenu_dumper_OBJECTS) $(dbusmenu_dumper_LDADD) $(LIBS)445 $(AM_V_CCLD)$(dbusmenu_dumper_LINK) $(dbusmenu_dumper_OBJECTS) $(dbusmenu_dumper_LDADD) $(LIBS)
440install-libexecSCRIPTS: $(libexec_SCRIPTS)446install-libexecSCRIPTS: $(libexec_SCRIPTS)
@@ -468,9 +474,7 @@
468 @list='$(libexec_SCRIPTS)'; test -n "$(libexecdir)" || exit 0; \474 @list='$(libexec_SCRIPTS)'; test -n "$(libexecdir)" || exit 0; \
469 files=`for p in $$list; do echo "$$p"; done | \475 files=`for p in $$list; do echo "$$p"; done | \
470 sed -e 's,.*/,,;$(transform)'`; \476 sed -e 's,.*/,,;$(transform)'`; \
471 test -n "$$list" || exit 0; \477 dir='$(DESTDIR)$(libexecdir)'; $(am__uninstall_files_from_dir)
472 echo " ( cd '$(DESTDIR)$(libexecdir)' && rm -f" $$files ")"; \
473 cd "$(DESTDIR)$(libexecdir)" && rm -f $$files
474478
475mostlyclean-compile:479mostlyclean-compile:
476 -rm -f *.$(OBJEXT)480 -rm -f *.$(OBJEXT)
@@ -483,42 +487,37 @@
483.c.o:487.c.o:
484@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<488@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
485@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po489@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
486@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@490@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
487@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
488@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@491@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
489@am__fastdepCC_FALSE@ $(COMPILE) -c $<492@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c $<
490493
491.c.obj:494.c.obj:
492@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`495@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
493@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po496@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
494@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@497@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
495@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
496@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@498@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
497@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'`499@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c `$(CYGPATH_W) '$<'`
498500
499.c.lo:501.c.lo:
500@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<502@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
501@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo503@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
502@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@504@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
503@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
504@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@505@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
505@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $<506@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $<
506507
507dbusmenu_dumper-dbusmenu-dumper.o: dbusmenu-dumper.c508dbusmenu_dumper-dbusmenu-dumper.o: dbusmenu-dumper.c
508@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.c509@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
509@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/dbusmenu_dumper-dbusmenu-dumper.Tpo $(DEPDIR)/dbusmenu_dumper-dbusmenu-dumper.Po510@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/dbusmenu_dumper-dbusmenu-dumper.Tpo $(DEPDIR)/dbusmenu_dumper-dbusmenu-dumper.Po
510@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@511@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='dbusmenu-dumper.c' object='dbusmenu_dumper-dbusmenu-dumper.o' libtool=no @AMDEPBACKSLASH@
511@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='dbusmenu-dumper.c' object='dbusmenu_dumper-dbusmenu-dumper.o' libtool=no @AMDEPBACKSLASH@
512@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@512@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
513@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.c513@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
514514
515dbusmenu_dumper-dbusmenu-dumper.obj: dbusmenu-dumper.c515dbusmenu_dumper-dbusmenu-dumper.obj: dbusmenu-dumper.c
516@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`516@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`
517@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/dbusmenu_dumper-dbusmenu-dumper.Tpo $(DEPDIR)/dbusmenu_dumper-dbusmenu-dumper.Po517@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/dbusmenu_dumper-dbusmenu-dumper.Tpo $(DEPDIR)/dbusmenu_dumper-dbusmenu-dumper.Po
518@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@518@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='dbusmenu-dumper.c' object='dbusmenu_dumper-dbusmenu-dumper.obj' libtool=no @AMDEPBACKSLASH@
519@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='dbusmenu-dumper.c' object='dbusmenu_dumper-dbusmenu-dumper.obj' libtool=no @AMDEPBACKSLASH@
520@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@519@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
521@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`520@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`
522521
523mostlyclean-libtool:522mostlyclean-libtool:
524 -rm -f *.lo523 -rm -f *.lo
@@ -542,9 +541,7 @@
542 @$(NORMAL_UNINSTALL)541 @$(NORMAL_UNINSTALL)
543 @list='$(doc_DATA)'; test -n "$(docdir)" || list=; \542 @list='$(doc_DATA)'; test -n "$(docdir)" || list=; \
544 files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \543 files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
545 test -n "$$files" || exit 0; \544 dir='$(DESTDIR)$(docdir)'; $(am__uninstall_files_from_dir)
546 echo " ( cd '$(DESTDIR)$(docdir)' && rm -f" $$files ")"; \
547 cd "$(DESTDIR)$(docdir)" && rm -f $$files
548545
549# This directory's subdirectories are mostly independent; you can cd546# This directory's subdirectories are mostly independent; you can cd
550# into them and run `make' without going through this Makefile.547# into them and run `make' without going through this Makefile.
@@ -757,10 +754,15 @@
757754
758installcheck: installcheck-recursive755installcheck: installcheck-recursive
759install-strip:756install-strip:
760 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \757 if test -z '$(STRIP)'; then \
761 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \758 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
762 `test -z '$(STRIP)' || \759 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
763 echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install760 install; \
761 else \
762 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
763 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
764 "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
765 fi
764mostlyclean-generic:766mostlyclean-generic:
765767
766clean-generic:768clean-generic:
767769
=== modified file 'tools/testapp/Makefile.in'
--- tools/testapp/Makefile.in 2011-09-20 05:03:25 +0000
+++ tools/testapp/Makefile.in 2012-02-23 06:13:18 +0000
@@ -1,9 +1,9 @@
1# Makefile.in generated by automake 1.11.1 from Makefile.am.1# Makefile.in generated by automake 1.11.3 from Makefile.am.
2# @configure_input@2# @configure_input@
33
4# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,4# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
5# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation,5# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software
6# Inc.6# Foundation, Inc.
7# This Makefile.in is free software; the Free Software Foundation7# This Makefile.in is free software; the Free Software Foundation
8# gives unlimited permission to copy and/or distribute it,8# gives unlimited permission to copy and/or distribute it,
9# with or without modifications, as long as this notice is preserved.9# with or without modifications, as long as this notice is preserved.
@@ -60,8 +60,8 @@
60dbusmenu_testapp_DEPENDENCIES = \60dbusmenu_testapp_DEPENDENCIES = \
61 $(builddir)/../../libdbusmenu-glib/libdbusmenu-glib.la \61 $(builddir)/../../libdbusmenu-glib/libdbusmenu-glib.la \
62 $(am__DEPENDENCIES_1)62 $(am__DEPENDENCIES_1)
63AM_V_lt = $(am__v_lt_$(V))63AM_V_lt = $(am__v_lt_@AM_V@)
64am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY))64am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@)
65am__v_lt_0 = --silent65am__v_lt_0 = --silent
66dbusmenu_testapp_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \66dbusmenu_testapp_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
67 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \67 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
@@ -77,21 +77,21 @@
77 $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \77 $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \
78 $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \78 $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
79 $(AM_CFLAGS) $(CFLAGS)79 $(AM_CFLAGS) $(CFLAGS)
80AM_V_CC = $(am__v_CC_$(V))80AM_V_CC = $(am__v_CC_@AM_V@)
81am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY))81am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@)
82am__v_CC_0 = @echo " CC " $@;82am__v_CC_0 = @echo " CC " $@;
83AM_V_at = $(am__v_at_$(V))83AM_V_at = $(am__v_at_@AM_V@)
84am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))84am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
85am__v_at_0 = @85am__v_at_0 = @
86CCLD = $(CC)86CCLD = $(CC)
87LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \87LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
88 $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \88 $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
89 $(AM_LDFLAGS) $(LDFLAGS) -o $@89 $(AM_LDFLAGS) $(LDFLAGS) -o $@
90AM_V_CCLD = $(am__v_CCLD_$(V))90AM_V_CCLD = $(am__v_CCLD_@AM_V@)
91am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY))91am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@)
92am__v_CCLD_0 = @echo " CCLD " $@;92am__v_CCLD_0 = @echo " CCLD " $@;
93AM_V_GEN = $(am__v_GEN_$(V))93AM_V_GEN = $(am__v_GEN_@AM_V@)
94am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY))94am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
95am__v_GEN_0 = @echo " GEN " $@;95am__v_GEN_0 = @echo " GEN " $@;
96SOURCES = $(dbusmenu_testapp_SOURCES)96SOURCES = $(dbusmenu_testapp_SOURCES)
97DIST_SOURCES = $(dbusmenu_testapp_SOURCES)97DIST_SOURCES = $(dbusmenu_testapp_SOURCES)
@@ -361,7 +361,7 @@
361 list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \361 list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \
362 echo " rm -f" $$list; \362 echo " rm -f" $$list; \
363 rm -f $$list363 rm -f $$list
364dbusmenu-testapp$(EXEEXT): $(dbusmenu_testapp_OBJECTS) $(dbusmenu_testapp_DEPENDENCIES) 364dbusmenu-testapp$(EXEEXT): $(dbusmenu_testapp_OBJECTS) $(dbusmenu_testapp_DEPENDENCIES) $(EXTRA_dbusmenu_testapp_DEPENDENCIES)
365 @rm -f dbusmenu-testapp$(EXEEXT)365 @rm -f dbusmenu-testapp$(EXEEXT)
366 $(AM_V_CCLD)$(dbusmenu_testapp_LINK) $(dbusmenu_testapp_OBJECTS) $(dbusmenu_testapp_LDADD) $(LIBS)366 $(AM_V_CCLD)$(dbusmenu_testapp_LINK) $(dbusmenu_testapp_OBJECTS) $(dbusmenu_testapp_LDADD) $(LIBS)
367367
@@ -376,42 +376,37 @@
376.c.o:376.c.o:
377@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<377@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
378@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po378@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
379@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@379@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
380@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
381@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@380@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
382@am__fastdepCC_FALSE@ $(COMPILE) -c $<381@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c $<
383382
384.c.obj:383.c.obj:
385@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`384@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
386@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po385@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
387@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@386@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
388@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
389@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@387@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
390@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'`388@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c `$(CYGPATH_W) '$<'`
391389
392.c.lo:390.c.lo:
393@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<391@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
394@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo392@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
395@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@393@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
396@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
397@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@394@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
398@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $<395@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $<
399396
400dbusmenu_testapp-main.o: main.c397dbusmenu_testapp-main.o: main.c
401@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.c398@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
402@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/dbusmenu_testapp-main.Tpo $(DEPDIR)/dbusmenu_testapp-main.Po399@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/dbusmenu_testapp-main.Tpo $(DEPDIR)/dbusmenu_testapp-main.Po
403@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@400@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='main.c' object='dbusmenu_testapp-main.o' libtool=no @AMDEPBACKSLASH@
404@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='main.c' object='dbusmenu_testapp-main.o' libtool=no @AMDEPBACKSLASH@
405@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@401@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
406@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.c402@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
407403
408dbusmenu_testapp-main.obj: main.c404dbusmenu_testapp-main.obj: main.c
409@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`405@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`
410@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/dbusmenu_testapp-main.Tpo $(DEPDIR)/dbusmenu_testapp-main.Po406@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/dbusmenu_testapp-main.Tpo $(DEPDIR)/dbusmenu_testapp-main.Po
411@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@407@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='main.c' object='dbusmenu_testapp-main.obj' libtool=no @AMDEPBACKSLASH@
412@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='main.c' object='dbusmenu_testapp-main.obj' libtool=no @AMDEPBACKSLASH@
413@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@408@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
414@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`409@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`
415410
416mostlyclean-libtool:411mostlyclean-libtool:
417 -rm -f *.lo412 -rm -f *.lo
@@ -518,10 +513,15 @@
518513
519installcheck: installcheck-am514installcheck: installcheck-am
520install-strip:515install-strip:
521 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \516 if test -z '$(STRIP)'; then \
522 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \517 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
523 `test -z '$(STRIP)' || \518 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
524 echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install519 install; \
520 else \
521 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
522 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
523 "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
524 fi
525mostlyclean-generic:525mostlyclean-generic:
526526
527clean-generic:527clean-generic:

Subscribers

People subscribed via source and target branches

to all changes: