Lines 56-61
Link Here
|
56 |
#include <gtk/gtkinvisible.h> |
56 |
#include <gtk/gtkinvisible.h> |
57 |
#endif |
57 |
#endif |
58 |
|
58 |
|
|
|
59 |
#ifdef NOHUP |
60 |
#include <signal.h> |
61 |
void sighup_ignorer(int i) { |
62 |
printf("SIGHUP ignored %i\n",i); |
63 |
} |
64 |
#endif |
65 |
|
59 |
|
66 |
|
60 |
GdkPixmap *channelwin_pix; |
67 |
GdkPixmap *channelwin_pix; |
61 |
|
68 |
|
Lines 123-128
Link Here
|
123 |
textdomain (PACKAGE); |
130 |
textdomain (PACKAGE); |
124 |
#endif |
131 |
#endif |
125 |
|
132 |
|
|
|
133 |
#ifdef NOHUP |
134 |
signal(SIGHUP, sighup_ignorer); |
135 |
#endif |
136 |
|
126 |
context = g_option_context_new (NULL); |
137 |
context = g_option_context_new (NULL); |
127 |
g_option_context_add_main_entries (context, gopt_entries, PACKAGE); |
138 |
g_option_context_add_main_entries (context, gopt_entries, PACKAGE); |
128 |
g_option_context_add_group (context, gtk_get_option_group (TRUE)); |
139 |
g_option_context_add_group (context, gtk_get_option_group (TRUE)); |