| 46 #include <stdarg.h> |
46 #include <stdarg.h> |
| 47 #include <stdlib.h> |
47 #include <stdlib.h> |
| 48 #include <ctype.h> |
48 #include <ctype.h> |
| 49 #include "prpl.h" |
49 #include "prpl.h" |
| 50 #include "gaim.h" |
50 #include "gaim.h" |
| |
51 #include "gaim-socket.h" |
| 51 #if HAVE_SIGNAL_H |
52 #if HAVE_SIGNAL_H |
| 52 #include <signal.h> |
53 #include <signal.h> |
| 53 #endif |
54 #endif |
| 54 #include "locale.h" |
55 #include "locale.h" |
| 55 #include <getopt.h> |
56 #include <getopt.h> |
| 56 |
57 |
| 57 #ifdef _WIN32 |
58 #ifdef _WIN32 |
| 58 #include "win32dep.h" |
59 #include "win32dep.h" |
| 59 #endif |
|
| 60 |
|
| 61 #ifndef _WIN32 |
|
| 62 static gchar *aspell_cmd[] = { "aspell", "--sug-mode=fast","-a", NULL }; |
|
| 63 static gchar *ispell_cmd[] = { "ispell", "-a", NULL }; |
|
| 64 #endif |
60 #endif |
| 65 |
61 |
| 66 static GtkWidget *name; |
62 static GtkWidget *name; |
| 67 static GtkWidget *pass; |
63 static GtkWidget *pass; |
| 68 |
64 |