Mercurial > pidgin.yaz
view pixmaps/Makefile.mingw @ 6729:7b878ee8f064
[gaim-migrate @ 7256]
Tim Ringenbach (marv_sf) writes:
" This adds Chat and Conference support to the Yahoo! prpl.
I think I got all the major bugs out, and it works
pretty good.
You can invite others, and accept inventations for both
chats and conferences, you can join a chat from the
Buddies menu in the buddy list, like you would for irc,
and you can initiate a conference by right clicking on
a buddy, like you would for msn. You can also attempt
to join user in chat, which will fail if they're not
actually in a chat. (Apparently the offical version
can't tell before hand either.)
Oh, and you can chat."
committer: Tailor Script <tailor@pidgin.im>
author | Luke Schierer <lschiere@pidgin.im> |
---|---|
date | Wed, 03 Sep 2003 12:45:17 +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;