Mercurial > pidgin
comparison libpurple/Makefile.am @ 23797:e1c8ec1259de
Updates voice and video to use Farsight 2, gets XMPP voice conferences
closer to XEP-0167, and fixes a lot of bugs.
author | Mike Ruprecht <maiku@soc.pidgin.im> |
---|---|
date | Fri, 23 May 2008 02:42:32 +0000 |
parents | 92e71f6e10d4 |
children | f47be691e588 |
comparison
equal
deleted
inserted
replaced
23796:69d54f84350a | 23797:e1c8ec1259de |
---|---|
1 EXTRA_DIST = \ | 1 EXTRA_DIST = \ |
2 dbus-analyze-functions.py \ | 2 dbus-analyze-functions.py \ |
3 dbus-analyze-types.py \ | 3 dbus-analyze-types.py \ |
4 marshallers.list \ | |
4 purple-notifications-example \ | 5 purple-notifications-example \ |
5 purple-remote \ | 6 purple-remote \ |
6 purple-send \ | 7 purple-send \ |
7 purple-send-async \ | 8 purple-send-async \ |
8 purple-url-handler \ | 9 purple-url-handler \ |
49 eventloop.c \ | 50 eventloop.c \ |
50 ft.c \ | 51 ft.c \ |
51 idle.c \ | 52 idle.c \ |
52 imgstore.c \ | 53 imgstore.c \ |
53 log.c \ | 54 log.c \ |
55 marshallers.c \ | |
54 media.c \ | 56 media.c \ |
55 mediamanager.c \ | 57 mediamanager.c \ |
56 mime.c \ | 58 mime.c \ |
57 nat-pmp.c \ | 59 nat-pmp.c \ |
58 network.c \ | 60 network.c \ |
103 ft.h \ | 105 ft.h \ |
104 gaim-compat.h \ | 106 gaim-compat.h \ |
105 idle.h \ | 107 idle.h \ |
106 imgstore.h \ | 108 imgstore.h \ |
107 log.h \ | 109 log.h \ |
110 marshallers.h \ | |
108 media.h \ | 111 media.h \ |
109 mediamanager.h \ | 112 mediamanager.h \ |
110 mime.h \ | 113 mime.h \ |
111 nat-pmp.h \ | 114 nat-pmp.h \ |
112 network.h \ | 115 network.h \ |
137 xmlnode.h \ | 140 xmlnode.h \ |
138 whiteboard.h | 141 whiteboard.h |
139 | 142 |
140 purple_builtheaders = purple.h version.h | 143 purple_builtheaders = purple.h version.h |
141 | 144 |
145 marshallers.h: marshallers.list | |
146 @echo "Generating marshallers.h" | |
147 $(GLIB_GENMARSHAL) --prefix=purple_smarshal $(srcdir)/marshallers.list --header > marshallers.h | |
148 | |
149 marshallers.c: marshallers.list | |
150 @echo "Generating marshallers.c" | |
151 $(GLIB_GENMARSHAL) --prefix=purple_smarshal $(srcdir)/marshallers.list --body > marshallers.c | |
152 | |
142 if ENABLE_DBUS | 153 if ENABLE_DBUS |
143 | 154 |
144 CLEANFILES = \ | 155 CLEANFILES = \ |
145 dbus-bindings.c \ | 156 dbus-bindings.c \ |
146 dbus-client-binding.c \ | 157 dbus-client-binding.c \ |
147 dbus-client-binding.h \ | 158 dbus-client-binding.h \ |
148 dbus-types.c \ | 159 dbus-types.c \ |
149 dbus-types.h \ | 160 dbus-types.h \ |
161 marshallers.c \ | |
162 marshallers.h \ | |
150 purple-client-bindings.c \ | 163 purple-client-bindings.c \ |
151 purple-client-bindings.h \ | 164 purple-client-bindings.h \ |
152 purple.service | 165 purple.service |
153 | 166 |
154 # purple dbus server | 167 # purple dbus server |
215 | 228 |
216 BUILT_SOURCES = $(purple_builtheaders) \ | 229 BUILT_SOURCES = $(purple_builtheaders) \ |
217 dbus-types.c \ | 230 dbus-types.c \ |
218 dbus-types.h \ | 231 dbus-types.h \ |
219 dbus-bindings.c \ | 232 dbus-bindings.c \ |
233 marshallers.c \ | |
234 marshallers.h \ | |
220 purple-client-bindings.c \ | 235 purple-client-bindings.c \ |
221 purple-client-bindings.h | 236 purple-client-bindings.h |
222 | 237 |
223 else | 238 else |
224 | 239 |