comparison libpurple/example/nullclient.c @ 22151:68f8adb67470

'make -f Makefile.oot' will successfully compile the nullclient out-of-tree.
author Sadrul Habib Chowdhury <imadil@gmail.com>
date Fri, 18 Jan 2008 15:13:20 +0000
parents 3684c9d16f6f
children aaaff38e144f 3015b7c2bec3
comparison
equal deleted inserted replaced
22145:6edcab92fb1d 22151:68f8adb67470
19 * along with this program; if not, write to the Free Software 19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA 20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA
21 * 21 *
22 */ 22 */
23 23
24 /* XXX: we probably shouldn't include internal.h in examples */ 24 #include "purple.h"
25 #include "internal.h"
26
27 #include "account.h"
28 #include "conversation.h"
29 #include "core.h"
30 #include "debug.h"
31 #include "eventloop.h"
32 #include "ft.h"
33 #include "log.h"
34 #include "notify.h"
35 #include "prefs.h"
36 #include "prpl.h"
37 #include "pounce.h"
38 #include "savedstatuses.h"
39 #include "sound.h"
40 #include "status.h"
41 #include "util.h"
42 #include "whiteboard.h"
43 25
44 #include <glib.h> 26 #include <glib.h>
45 27
28 #include <signal.h>
46 #include <string.h> 29 #include <string.h>
47 #include <unistd.h> 30 #include <unistd.h>
48 31
49 #include "defines.h" 32 #include "defines.h"
50 33