pidgin/pidgin

5397330041d6
Replace PurpleIdleUiOps with the PurpleIdleUi Interface

This continues our path down replacing the UiOps with Interfaces so that
developers can write user interfaces in other languages using gobject
introspection.

Testing Done:
Ran pidgin3 and set it to auto idle after 1 minute of system idle time. This attempted to query xscreen saver, but something didn't work there, but that's been happening before this change. Not sure if it's my system or the code just needs fixing.

Ran finch3 set idle time to 1 minute and verified that it set me to away after that minute.

I also used the libpurple idle time for both pidgin3 and finch3 and verified they continued to work as well.

Reviewed at https://reviews.imfreedom.org/r/1091/
/* This file is part of the Project Athena Zephyr Notification System.
* It contains source for the ZGetWGPort function.
*
* Created by: Robert French
*
* Copyright (c) 1987 by the Massachusetts Institute of Technology.
* For copying and distribution information, see the file
* "mit-copyright.h".
*/
#include "internal.h"
int
ZGetWGPort(void)
{
char *envptr, name[128];
FILE *fp;
int wgport;
#ifdef WIN32
long int buffsize= 128;
char tempdir[buffsize];
#endif
envptr = getenv("WGFILE");
if (!envptr) {
#ifdef WIN32
GetTempPath(buffsize,tempdir);
GetTempFileName(tempdir,"wg.",0,name);
#else
(void) sprintf(name, "/tmp/wg.%d", getuid());
#endif
envptr = name;
}
if (!(fp = fopen(envptr, "r")))
return (-1);
/* if fscanf fails, return -1 via wgport */
if (fscanf(fp, "%d", &wgport) != 1)
wgport = -1;
(void) fclose(fp);
return (wgport);
}