Mercurial > pidgin.yaz
view pixmaps/Makefile.mingw @ 8444:f6483c880eaf
[gaim-migrate @ 9174]
I still don't think this is the best way to fix this, but it works.
Daniel Larsson caught a nice crash in CVS:
"When joining a chat, Gaim crashes if the first
connection's account (first in the list returned by
gaim_connections_get_all()) is from a plugin not
supporting chat. When building the GUI,
rebuild_joinchat_entries is called with the first
account."
A better fix would be to have gaim_gtk_account_option_menu_new() call
rebuild_joinchat_entires(the first gc that supports chats) automatically
(by way of join_chat_select_account_cb).
Also, someone buy Luke a nice 19" LCD that'll do 1600x1200
committer: Tailor Script <tailor@pidgin.im>
author | Mark Doliner <mark@kingant.net> |
---|---|
date | Sun, 14 Mar 2004 05:54:29 +0000 |
parents | bc494c4a3991 |
children |
line wrap: on
line source
# # Makefile.mingw # # Description: Makefile for win32 (mingw) version of Gaim pixmaps # datadir = ../win32-install-dir include ./Makefile.am install: if test '$(SUBDIRS)'; then \ list='$(SUBDIRS)'; for subdir in $$list; do \ $(MAKE) -C $$subdir -f Makefile.mingw install; \ done; \ fi; if test '$(gaimbuttonpix_DATA)'; then \ mkdir -p $(gaimbuttonpixdir); \ cp $(gaimbuttonpix_DATA) $(gaimbuttonpixdir); \ fi; if test '$(gaimdialogpix_DATA)'; then \ mkdir -p $(gaimdialogpixdir); \ cp $(gaimdialogpix_DATA) $(gaimdialogpixdir); \ fi; if test '$(gaimiconpix_DATA)'; then \ mkdir -p $(gaimiconpixdir); \ cp $(gaimiconpix_DATA) $(gaimiconpixdir); \ fi; if test '$(gaimdistpix_DATA)'; then \ mkdir -p $(gaimdistpixdir); \ cp $(gaimdistpix_DATA) $(gaimdistpixdir); \ fi; if test '$(distpixmap_DATA)'; then \ mkdir -p $(distpixmapdir); \ cp $(distpixmap_DATA) $(distpixmapdir); \ fi;