diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2009-10-05 00:28:11 +0100 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2009-10-05 00:28:11 +0100 |
commit | 796da03f9f54f8fb193529288592571b371bf0cd (patch) | |
tree | b54c97a088dea67c271bfa4f070f207e8aa02f64 /protocols/nogaim.c | |
parent | e59b4f65183a7bee638312a0c96e3d0607cb181f (diff) |
Something that compiles and runs, but otherwise utterly useless. Added a
protocols/purple/ module and included it in the build system. Already picks
up all the supported protocols and adds them individually.
Diffstat (limited to 'protocols/nogaim.c')
-rw-r--r-- | protocols/nogaim.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/protocols/nogaim.c b/protocols/nogaim.c index fd445324..8eae178d 100644 --- a/protocols/nogaim.c +++ b/protocols/nogaim.c @@ -117,6 +117,7 @@ void nogaim_init() extern void oscar_initmodule(); extern void byahoo_initmodule(); extern void jabber_initmodule(); + extern void purple_initmodule(); #ifdef WITH_MSN msn_initmodule(); @@ -133,6 +134,10 @@ void nogaim_init() #ifdef WITH_JABBER jabber_initmodule(); #endif + +#ifdef WITH_PURPLE + purple_initmodule(); +#endif #ifdef WITH_PLUGINS load_plugins(); |