First, maybe it'll help somebody if I say I had to install the Debian libgpgme-dev package to compile gaim 0.57 with gaim-e. I'm using Woody.
Second, that's what I get when I try to compile:
gaim-e.c: In function `toggle_button_clicked':
gaim-e.c:324: too few arguments to function `serv_send_im'
gaim-e.c:329: too few arguments to function `serv_send_im'
gaim-e.c: In function `do_decrypt':
gaim-e.c:429: too few arguments to function `serv_send_im'
gaim-e.c:443: too few arguments to function `serv_send_im'
make[2]: *** [gaim-e.so] Error 1
make[2]: Leaving directory `/home/nicolas/download/gaim-0.57/plugins'
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Yeah, that's because the gaim people went and changed the serv_send_im function. When it is called, there are three things being passed. there needs to be four. But it needs to be passed as the third arguement. so it should read serv_send_im(something, something, -1, something);
try that.. if it no worky, just send a message to the mailing list
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
First, maybe it'll help somebody if I say I had to install the Debian libgpgme-dev package to compile gaim 0.57 with gaim-e. I'm using Woody.
Second, that's what I get when I try to compile:
gaim-e.c: In function `toggle_button_clicked':
gaim-e.c:324: too few arguments to function `serv_send_im'
gaim-e.c:329: too few arguments to function `serv_send_im'
gaim-e.c: In function `do_decrypt':
gaim-e.c:429: too few arguments to function `serv_send_im'
gaim-e.c:443: too few arguments to function `serv_send_im'
make[2]: *** [gaim-e.so] Error 1
make[2]: Leaving directory `/home/nicolas/download/gaim-0.57/plugins'
Yeah, that's because the gaim people went and changed the serv_send_im function. When it is called, there are three things being passed. there needs to be four. But it needs to be passed as the third arguement. so it should read serv_send_im(something, something, -1, something);
try that.. if it no worky, just send a message to the mailing list