Mercurial > pidgin
annotate pixmaps/status/Makefile.mingw @ 5427:04e1e40b99b0
[gaim-migrate @ 5806]
Fixed a tiny memleak in msn.c. Chip: the other leak memprof is complaining
about is from line 134 of src/protocols/msn/servconn.c I tried freeing the
hash table in msn_servocnn_destroy, but that resulted in a crash after
signing on then off then on again. I don't know what's up with that, maybe
it's not really a memleak.
Also, I guess item factories aren't freed automatically? It seems like they
should be, but gtkconv.c calls g_object_unref on the item factory explicitly,
and not calling it on the item factory for the blist shows up as a memleak.
So that should be fixed now.
Oh, I also removed a function declaration for a static function...
committer: Tailor Script <tailor@pidgin.im>
author | Mark Doliner <mark@kingant.net> |
---|---|
date | Sun, 18 May 2003 07:54:54 +0000 |
parents | f750aa51926d |
children | eb6feb00e6f3 |
rev | line source |
---|---|
4707
f750aa51926d
[gaim-migrate @ 5018]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff
changeset
|
1 # |
f750aa51926d
[gaim-migrate @ 5018]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff
changeset
|
2 # Makefile.mingw |
f750aa51926d
[gaim-migrate @ 5018]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff
changeset
|
3 # |
f750aa51926d
[gaim-migrate @ 5018]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff
changeset
|
4 # Description: Makefile for win32 (mingw) version of Gaim pixmaps |
f750aa51926d
[gaim-migrate @ 5018]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff
changeset
|
5 # |
f750aa51926d
[gaim-migrate @ 5018]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff
changeset
|
6 |
f750aa51926d
[gaim-migrate @ 5018]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff
changeset
|
7 INSTALL_DIR = ../../win32-install-dir/pixmaps/gaim/status |
f750aa51926d
[gaim-migrate @ 5018]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff
changeset
|
8 |
f750aa51926d
[gaim-migrate @ 5018]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff
changeset
|
9 include ./Makefile.am |
f750aa51926d
[gaim-migrate @ 5018]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff
changeset
|
10 |
f750aa51926d
[gaim-migrate @ 5018]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff
changeset
|
11 install: |
f750aa51926d
[gaim-migrate @ 5018]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff
changeset
|
12 if test '$(SUBDIRS)'; then \ |
f750aa51926d
[gaim-migrate @ 5018]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff
changeset
|
13 list='$(SUBDIRS)'; for subdir in $$list; do \ |
f750aa51926d
[gaim-migrate @ 5018]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff
changeset
|
14 $(MAKE) -C $$subdir -f Makefile.mingw install; \ |
f750aa51926d
[gaim-migrate @ 5018]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff
changeset
|
15 done; \ |
f750aa51926d
[gaim-migrate @ 5018]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff
changeset
|
16 fi; |
f750aa51926d
[gaim-migrate @ 5018]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff
changeset
|
17 if test '$(EXTRA_DIST)'; then \ |
f750aa51926d
[gaim-migrate @ 5018]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff
changeset
|
18 mkdir -p $(INSTALL_DIR); \ |
f750aa51926d
[gaim-migrate @ 5018]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff
changeset
|
19 cp $(EXTRA_DIST) $(INSTALL_DIR); \ |
f750aa51926d
[gaim-migrate @ 5018]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff
changeset
|
20 fi; |
f750aa51926d
[gaim-migrate @ 5018]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff
changeset
|
21 |