Wed, 13 May 2009 20:29:03 +0000
Support custom smileys in MUCs (when all participants support BoB and a maximum
of 10 participants are in the chat).
Always announce support for BoB, since disable custom smileys will still turn
off fetching them, and BoB can be used for other purposes further on.
| 14294 | 1 | # Makefile.mingw |
| 2 | # | |
| 3 | # Author: hermanator12002@yahoo.com | |
| 4 | # Date 9/11/02 | |
|
25875
a98b16817658
Lots of minor whitespace and comment changes:
Mark Doliner <markdoliner@pidgin.im>
parents:
23869
diff
changeset
|
5 | # Description: Protocols Makefile for win32 (mingw) port of libpurple |
| 14294 | 6 | # |
| 7 | ||
|
16100
a0ab70986c10
This should get all the Win32 Makefiles in line with
Kevin Stange <kstange@pidgin.im>
parents:
15438
diff
changeset
|
8 | PIDGIN_TREE_TOP := ../.. |
|
a0ab70986c10
This should get all the Win32 Makefiles in line with
Kevin Stange <kstange@pidgin.im>
parents:
15438
diff
changeset
|
9 | include $(PIDGIN_TREE_TOP)/libpurple/win32/global.mak |
| 14294 | 10 | |
|
23869
e650ca347f69
Fix a double free when connecting to the sender of a bonjour file fails. Also plug a small leak. Fixes #5971.
Daniel Atallah <datallah@pidgin.im>
parents:
21620
diff
changeset
|
11 | SUBDIRS = gg irc jabber msn novell null oscar qq sametime silc simple yahoo bonjour myspace |
| 14294 | 12 | |
|
14638
b0fa76dac93f
[gaim-migrate @ 17300]
Daniel Atallah <datallah@pidgin.im>
parents:
14377
diff
changeset
|
13 | .PHONY: all install clean |
|
b0fa76dac93f
[gaim-migrate @ 17300]
Daniel Atallah <datallah@pidgin.im>
parents:
14377
diff
changeset
|
14 | |
| 14294 | 15 | all: |
|
14887
067f351ad90a
[gaim-migrate @ 17592]
Daniel Atallah <datallah@pidgin.im>
parents:
14638
diff
changeset
|
16 | for subdir in $(SUBDIRS); do \ |
|
16100
a0ab70986c10
This should get all the Win32 Makefiles in line with
Kevin Stange <kstange@pidgin.im>
parents:
15438
diff
changeset
|
17 | $(MAKE) -C $$subdir -f $(MINGW_MAKEFILE) || exit 1; \ |
|
14887
067f351ad90a
[gaim-migrate @ 17592]
Daniel Atallah <datallah@pidgin.im>
parents:
14638
diff
changeset
|
18 | done; |
| 14294 | 19 | |
| 20 | install: all | |
|
14887
067f351ad90a
[gaim-migrate @ 17592]
Daniel Atallah <datallah@pidgin.im>
parents:
14638
diff
changeset
|
21 | for subdir in $(SUBDIRS); do \ |
|
16100
a0ab70986c10
This should get all the Win32 Makefiles in line with
Kevin Stange <kstange@pidgin.im>
parents:
15438
diff
changeset
|
22 | $(MAKE) -C $$subdir -f $(MINGW_MAKEFILE) install || exit 1; \ |
|
14887
067f351ad90a
[gaim-migrate @ 17592]
Daniel Atallah <datallah@pidgin.im>
parents:
14638
diff
changeset
|
23 | done; |
| 14294 | 24 | |
| 25 | clean: | |
|
14887
067f351ad90a
[gaim-migrate @ 17592]
Daniel Atallah <datallah@pidgin.im>
parents:
14638
diff
changeset
|
26 | for subdir in $(SUBDIRS); do \ |
|
16100
a0ab70986c10
This should get all the Win32 Makefiles in line with
Kevin Stange <kstange@pidgin.im>
parents:
15438
diff
changeset
|
27 | $(MAKE) -C $$subdir -f $(MINGW_MAKEFILE) clean || exit 1; \ |
|
14887
067f351ad90a
[gaim-migrate @ 17592]
Daniel Atallah <datallah@pidgin.im>
parents:
14638
diff
changeset
|
28 | done; |
|
067f351ad90a
[gaim-migrate @ 17592]
Daniel Atallah <datallah@pidgin.im>
parents:
14638
diff
changeset
|
29 |