Mercurial > pidgin
view doc/connection-signals.dox @ 21033:9347a942b7cd
This is the first step toward rationalizing our Makefiles to reduce
the number of directories we have to traverse. This commit removes
all Makefiles under pidgin/pixmaps which don't actually do anything --
if it contained nothing but SUBDIRS and/or EXTRA_DIST, it's gone now.
This almost certainly breaks Windows builds. I believe they can be
(mostly?) fixed by simply removing intermediate Makefile.mingws
(corresponding to removed Makefile.ams; both from their locations and
from pidgin/pixmaps/Makefile.am), but as I can't test it, I didn't
mess with them.
Note that even this simple reduction cut out 31 directories from the
build process. Similar changes can probably be made in other places
in the tree, above pidgin/pixmaps/.
Next step: directories which install files, but have no rules.
author | Ethan Blanton <elb@pidgin.im> |
---|---|
date | Sun, 28 Oct 2007 04:46:01 +0000 |
parents | e0613cf8c493 |
children | 3a269007711e |
line wrap: on
line source
/** @page connection-signals Connection Signals @signals @signal signing-on @signal signed-on @signal signing-off @signal signed-off @endsignals @see connection.h <hr> @signaldef signing-on @signalproto void (*signing_on)(PurpleConnection *gc); @endsignalproto @signaldesc Emitted when a connection is about to sign on. @param gc The connection that is about to sign on. @endsignaldef @signaldef signed-on @signalproto void (*signed_on)(PurpleConnection *gc); @endsignalproto @signaldesc Emitted when a connection has signed on. @param gc The connection that has signed on. @endsignaldef @signaldef signing-off @signalproto void (*signing_off)(PurpleConnection *gc); @endsignalproto @signaldesc Emitted when a connection is about to sign off. @param gc The connection that is about to sign off. @endsignaldef @signaldef signed-off @signalproto void (*signed_off)(PurpleConnection *gc); @endsignalproto @signaldesc Emitted when a connection has signed off. @param gc The connection that has signed off. @endsignaldef */ // vim: syntax=c.doxygen tw=75 et