Mercurial > pidgin.yaz
annotate pidgin/pixmaps/emotes/small/16/Makefile.mingw @ 26999:6b0e150f2276
Stop trying to be clever with XMPP keepalive pings.
djabberd is responding like this (note no 'from' on the reply. No, I haven't yet filed a bug with them):
C: <iq type='get' id='purplefc9e10a4' to='livejournal.com'><ping xmlns='urn:xmpp:ping'/></iq>
S: <iq to='Adium user' type='error' id='purplefc9e10a4'><ping xmlns='urn:xmpp:ping'/><error type='cancel'><feature-not-implemented xmlns='urn:ietf:params:xml:ns:xmpp-stanzas'/><text xmlns='urn:ietf:params:xml:ns:xmpp-stanzas' xml:lang='en'>This feature is not implemented yet in DJabberd.</text></error></iq>
This fixes Adium#12124.
author | Paul Aurich <paul@darkrain42.org> |
---|---|
date | Wed, 20 May 2009 00:34:59 +0000 |
parents | 42fe79ca351d |
children |
rev | line source |
---|---|
24404
42fe79ca351d
Make the small smiley theme actually work.
Richard Laager <rlaager@wiktel.com>
parents:
diff
changeset
|
1 # |
42fe79ca351d
Make the small smiley theme actually work.
Richard Laager <rlaager@wiktel.com>
parents:
diff
changeset
|
2 # Makefile.mingw |
42fe79ca351d
Make the small smiley theme actually work.
Richard Laager <rlaager@wiktel.com>
parents:
diff
changeset
|
3 # |
42fe79ca351d
Make the small smiley theme actually work.
Richard Laager <rlaager@wiktel.com>
parents:
diff
changeset
|
4 # Description: Makefile for win32 (mingw) version of Pidgin pixmaps |
42fe79ca351d
Make the small smiley theme actually work.
Richard Laager <rlaager@wiktel.com>
parents:
diff
changeset
|
5 # |
42fe79ca351d
Make the small smiley theme actually work.
Richard Laager <rlaager@wiktel.com>
parents:
diff
changeset
|
6 |
42fe79ca351d
Make the small smiley theme actually work.
Richard Laager <rlaager@wiktel.com>
parents:
diff
changeset
|
7 PIDGIN_TREE_TOP := ../../../../.. |
42fe79ca351d
Make the small smiley theme actually work.
Richard Laager <rlaager@wiktel.com>
parents:
diff
changeset
|
8 include $(PIDGIN_TREE_TOP)/libpurple/win32/global.mak |
42fe79ca351d
Make the small smiley theme actually work.
Richard Laager <rlaager@wiktel.com>
parents:
diff
changeset
|
9 |
42fe79ca351d
Make the small smiley theme actually work.
Richard Laager <rlaager@wiktel.com>
parents:
diff
changeset
|
10 datadir = $(PIDGIN_INSTALL_DIR) |
42fe79ca351d
Make the small smiley theme actually work.
Richard Laager <rlaager@wiktel.com>
parents:
diff
changeset
|
11 -include ./Makefile.am.mingw |
42fe79ca351d
Make the small smiley theme actually work.
Richard Laager <rlaager@wiktel.com>
parents:
diff
changeset
|
12 |
42fe79ca351d
Make the small smiley theme actually work.
Richard Laager <rlaager@wiktel.com>
parents:
diff
changeset
|
13 .PHONY: install clean |
42fe79ca351d
Make the small smiley theme actually work.
Richard Laager <rlaager@wiktel.com>
parents:
diff
changeset
|
14 |
42fe79ca351d
Make the small smiley theme actually work.
Richard Laager <rlaager@wiktel.com>
parents:
diff
changeset
|
15 install: ./Makefile.am.mingw theme |
42fe79ca351d
Make the small smiley theme actually work.
Richard Laager <rlaager@wiktel.com>
parents:
diff
changeset
|
16 if test '$(pidginsmileypix_DATA)'; then \ |
42fe79ca351d
Make the small smiley theme actually work.
Richard Laager <rlaager@wiktel.com>
parents:
diff
changeset
|
17 mkdir -p $(pidginsmileypixdir); \ |
42fe79ca351d
Make the small smiley theme actually work.
Richard Laager <rlaager@wiktel.com>
parents:
diff
changeset
|
18 cp $(pidginsmileypix_DATA) $(pidginsmileypixdir); \ |
42fe79ca351d
Make the small smiley theme actually work.
Richard Laager <rlaager@wiktel.com>
parents:
diff
changeset
|
19 fi; |
42fe79ca351d
Make the small smiley theme actually work.
Richard Laager <rlaager@wiktel.com>
parents:
diff
changeset
|
20 |
42fe79ca351d
Make the small smiley theme actually work.
Richard Laager <rlaager@wiktel.com>
parents:
diff
changeset
|
21 clean: |
42fe79ca351d
Make the small smiley theme actually work.
Richard Laager <rlaager@wiktel.com>
parents:
diff
changeset
|
22 rm -f theme ./Makefile.am.mingw |
42fe79ca351d
Make the small smiley theme actually work.
Richard Laager <rlaager@wiktel.com>
parents:
diff
changeset
|
23 |
42fe79ca351d
Make the small smiley theme actually work.
Richard Laager <rlaager@wiktel.com>
parents:
diff
changeset
|
24 ./Makefile.am.mingw: ./Makefile.am |
42fe79ca351d
Make the small smiley theme actually work.
Richard Laager <rlaager@wiktel.com>
parents:
diff
changeset
|
25 sed -e 's/^if\ INSTALL_PIXMAPS/ifeq (\$$(INSTALL_PIXMAPS), 1)/' ./Makefile.am > $@ |
42fe79ca351d
Make the small smiley theme actually work.
Richard Laager <rlaager@wiktel.com>
parents:
diff
changeset
|
26 include $@ |
42fe79ca351d
Make the small smiley theme actually work.
Richard Laager <rlaager@wiktel.com>
parents:
diff
changeset
|
27 |