annotate pixmaps/Makefile.mingw @ 13664:4132d997ccec

[gaim-migrate @ 16066] Fix Coverity CID 45: Check to make sure a channel 2 ICBM actually contains an IP address TLV before attempting to use it. This avoids a crash when the server sends us an abnormal channel 2 ICBM. I'm not sure if that ever happens. Fix Coverity CID 204: Don't attempt to send data over a FLAP BOS connection that doesn't exist. This should never happen because the account should get disconnected first. Fix Coverity CID 205: Don't check that a variable 'od' which we know is valid is not equal to NULL in aim_search_address() in family_userlookup.c Fix Coverity CID 206: Don't check that the variable 'od' which we know is valid is not equal to NULL in aim_chat_join() in family_oservice.c Fix Coverity CID 207: I neglected to remove a "return;" line from aim_admin_setnick() in family_admin.c which caused setting your AIM screen name formatting to not work. Fix Coverity CID 208: Remove a duplicate call to gaim_connection_get_account() in peer_connection_propose() in peer.c. Fix Coverity CID 209: Remove the unused variable "username" from incomingim_chan2() in oscar.c. Fix Coverity CID 210: Remove the unused variable "account" from peer_connection_listen_cb() in peer.c. committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Thu, 20 Apr 2006 04:45:06 +0000
parents bc494c4a3991
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
4318
5f0385678315 [gaim-migrate @ 4573]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff changeset
1 #
5f0385678315 [gaim-migrate @ 4573]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff changeset
2 # Makefile.mingw
5f0385678315 [gaim-migrate @ 4573]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff changeset
3 #
5f0385678315 [gaim-migrate @ 4573]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff changeset
4 # Description: Makefile for win32 (mingw) version of Gaim pixmaps
5f0385678315 [gaim-migrate @ 4573]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff changeset
5 #
5f0385678315 [gaim-migrate @ 4573]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff changeset
6
5f0385678315 [gaim-migrate @ 4573]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff changeset
7 datadir = ../win32-install-dir
5f0385678315 [gaim-migrate @ 4573]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff changeset
8
5f0385678315 [gaim-migrate @ 4573]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff changeset
9 include ./Makefile.am
5f0385678315 [gaim-migrate @ 4573]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff changeset
10
5f0385678315 [gaim-migrate @ 4573]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff changeset
11 install:
5f0385678315 [gaim-migrate @ 4573]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff changeset
12 if test '$(SUBDIRS)'; then \
5f0385678315 [gaim-migrate @ 4573]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff changeset
13 list='$(SUBDIRS)'; for subdir in $$list; do \
5f0385678315 [gaim-migrate @ 4573]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff changeset
14 $(MAKE) -C $$subdir -f Makefile.mingw install; \
5f0385678315 [gaim-migrate @ 4573]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff changeset
15 done; \
5f0385678315 [gaim-migrate @ 4573]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff changeset
16 fi;
5f0385678315 [gaim-migrate @ 4573]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff changeset
17 if test '$(gaimbuttonpix_DATA)'; then \
5f0385678315 [gaim-migrate @ 4573]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff changeset
18 mkdir -p $(gaimbuttonpixdir); \
5f0385678315 [gaim-migrate @ 4573]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff changeset
19 cp $(gaimbuttonpix_DATA) $(gaimbuttonpixdir); \
5f0385678315 [gaim-migrate @ 4573]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff changeset
20 fi;
5f0385678315 [gaim-migrate @ 4573]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff changeset
21 if test '$(gaimdialogpix_DATA)'; then \
5f0385678315 [gaim-migrate @ 4573]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff changeset
22 mkdir -p $(gaimdialogpixdir); \
5f0385678315 [gaim-migrate @ 4573]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff changeset
23 cp $(gaimdialogpix_DATA) $(gaimdialogpixdir); \
5f0385678315 [gaim-migrate @ 4573]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff changeset
24 fi;
5031
bc494c4a3991 [gaim-migrate @ 5368]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 4318
diff changeset
25 if test '$(gaimiconpix_DATA)'; then \
bc494c4a3991 [gaim-migrate @ 5368]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 4318
diff changeset
26 mkdir -p $(gaimiconpixdir); \
bc494c4a3991 [gaim-migrate @ 5368]
Herman Bloggs <hermanator12002@yahoo.com>
parents: 4318
diff changeset
27 cp $(gaimiconpix_DATA) $(gaimiconpixdir); \
4318
5f0385678315 [gaim-migrate @ 4573]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff changeset
28 fi;
5f0385678315 [gaim-migrate @ 4573]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff changeset
29 if test '$(gaimdistpix_DATA)'; then \
5f0385678315 [gaim-migrate @ 4573]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff changeset
30 mkdir -p $(gaimdistpixdir); \
5f0385678315 [gaim-migrate @ 4573]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff changeset
31 cp $(gaimdistpix_DATA) $(gaimdistpixdir); \
5f0385678315 [gaim-migrate @ 4573]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff changeset
32 fi;
5f0385678315 [gaim-migrate @ 4573]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff changeset
33 if test '$(distpixmap_DATA)'; then \
5f0385678315 [gaim-migrate @ 4573]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff changeset
34 mkdir -p $(distpixmapdir); \
5f0385678315 [gaim-migrate @ 4573]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff changeset
35 cp $(distpixmap_DATA) $(distpixmapdir); \
5f0385678315 [gaim-migrate @ 4573]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff changeset
36 fi;
5f0385678315 [gaim-migrate @ 4573]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff changeset
37