Mercurial > pidgin
view console/Makefile @ 13998:4fa4f2909b0d
[gaim-migrate @ 16583]
Fix a crash when gadu-gadu signs off while a search is still open. It destroys its search HashTable in its close() function, and that table is accessed when gaim_notify_close_with_handle() is called. An alternative fix would be for the close_with_handle() functions to be called before prpl_info->close() in connection.c, but I'm not positive that this wouldn't cause problems with other prpls, so I went for a smaller-impact change. I'll merge this back to the 2.0.0 branch if there are no objections.
committer: Tailor Script <tailor@pidgin.im>
| author | Evan Schoenberg <evan.s@dreskin.net> |
|---|---|
| date | Thu, 27 Jul 2006 17:37:42 +0000 |
| parents | b7a99d54a5a9 |
| children | 7573bd40a190 |
line wrap: on
line source
VERSION=gntgaim-0.0.0dev CC=gcc CFLAGS=`pkg-config --cflags gaim gobject-2.0 gnt` -g -Wall -DVERSION=\"$(VERSION)\" -DSTANDALONE LDFLAGS=`pkg-config --libs gaim gobject-2.0 libxml-2.0 gnt` -pg GG_SOURCES = \ gntaccount.c \ gntblist.c \ gntconn.c \ gntconv.c \ gntdebug.c \ gntnotify.c \ gntprefs.c \ gntrequest.c \ gntui.c GG_HEADERS = \ gntaccount.h \ gntblist.h \ gntconn.h \ gntconv.h \ gntdebug.h \ gntnotify.h \ gntprefs.h \ gntrequest.h \ gntui.h GG_OBJECTS = \ gntaccount.o \ gntblist.o \ gntconn.o \ gntconv.o \ gntdebug.o \ gntnotify.o \ gntprefs.o \ gntrequest.o \ gntui.o all: gntgaim gntgaim: gntgaim.o $(GG_OBJECTS) $(CC) -o gntgaim gntgaim.o $(GG_OBJECTS) $(LDFLAGS) gntaccount.o: gntaccount.c $(GG_HEADERS) gntblist.o: gntblist.c $(GG_HEADERS) gntconv.o: gntconv.c $(GG_HEADERS) gntgaim.o: gntgaim.c gntgaim.h $(GG_HEADERS) gntnotify.o: gntnotify.c $(GG_HEADERS) gntui.o: gntui.c $(GG_HEADERS) clean: rm -f *.o rm -f gntgaim
