i18n: update bug tracker URL in script
[siplcs.git] / src / purple / tests-load.c
blob48aac7ec5c8b541f7eb720ae6163c50e10698db0
1 /**
2 * @file tests-load.c
4 * pidgin-sipe
6 * Copyright (C) 2010 SIPE Project <http://sipe.sourceforge.net/>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 #include <stdlib.h>
24 #include <stdio.h>
26 #include <gmodule.h>
28 /* test that libsipe.so loads succesfully */
29 int main(int argc, char *argv[])
31 int rc = 1;
33 (void) argc;
34 (void) argv;
36 /* well if this doesn't work, what's the use of a plugin? */
37 if (g_module_supported()) {
38 gchar *name = g_module_build_path(".libs", "sipe");
39 GModule *module = g_module_open(name, G_MODULE_BIND_LOCAL);
40 if (module) {
41 g_module_close(module);
42 /* all OK */
43 printf("plugin loaded OK\n");
44 rc = 0;
45 } else {
46 fprintf(stderr, "plugin loaded error: %s\n",
47 g_module_error());
49 g_free(name);
51 return(rc);
55 Local Variables:
56 mode: c
57 c-file-style: "bsd"
58 indent-tabs-mode: t
59 tab-width: 8
60 End: