Mercurial > pidgin
comparison libpurple/plugins/autoaccept.c @ 29365:2debb45f1df8
propagate from branch 'im.pidgin.pidgin' (head 2a58bda0b6d8c5519ef9e41e5f017343ef2cbac0)
to branch 'im.pidgin.pidgin.next.minor' (head ef75f5b709bfa7dff26b3d1186cc436f33e78b81)
| author | Paul Aurich <paul@darkrain42.org> |
|---|---|
| date | Mon, 15 Feb 2010 22:24:26 +0000 |
| parents | 39716f7d2c93 |
| children | 5f4329c3eafe |
comparison
equal
deleted
inserted
replaced
| 29049:0b6cfe040cd0 | 29365:2debb45f1df8 |
|---|---|
| 26 #define PLUGIN_DESCRIPTION N_("Auto-accept file transfer requests from selected users.") | 26 #define PLUGIN_DESCRIPTION N_("Auto-accept file transfer requests from selected users.") |
| 27 #define PLUGIN_AUTHOR "Sadrul H Chowdhury <sadrul@users.sourceforge.net>" | 27 #define PLUGIN_AUTHOR "Sadrul H Chowdhury <sadrul@users.sourceforge.net>" |
| 28 | 28 |
| 29 /* System headers */ | 29 /* System headers */ |
| 30 #include <glib.h> | 30 #include <glib.h> |
| 31 #if GLIB_CHECK_VERSION(2,6,0) | 31 #include <glib/gstdio.h> |
| 32 # include <glib/gstdio.h> | |
| 33 #else | |
| 34 # include <sys/types.h> | |
| 35 # include <sys/stat.h> | |
| 36 # define g_mkdir mkdir | |
| 37 #endif | |
| 38 | 32 |
| 39 /* Purple headers */ | 33 /* Purple headers */ |
| 40 #include <plugin.h> | 34 #include <plugin.h> |
| 41 #include <version.h> | 35 #include <version.h> |
| 42 | 36 |
