View | Details | Raw Unified | Return to bug 8880
Collapse All | Expand All

(-)xchat-2.0.9/src/fe-gtk/Makefile.in.orig (-1 / +1 lines)
Lines 271-277 Link Here
271
xchatlibdir = @xchatlibdir@
271
xchatlibdir = @xchatlibdir@
272
xchatsharedir = @xchatsharedir@
272
xchatsharedir = @xchatsharedir@
273
localedir = $(datadir)/locale
273
localedir = $(datadir)/locale
274
INCLUDES = $(GUI_CFLAGS) -DG_DISABLE_CAST_CHECKS -DLOCALEDIR=\"$(localedir)\"
274
INCLUDES = $(GUI_CFLAGS) -DG_DISABLE_CAST_CHECKS -DNOHUP -DLOCALEDIR=\"$(localedir)\"
275
xchat_LDADD = ../common/libxchatcommon.a $(GUI_LIBS)
275
xchat_LDADD = ../common/libxchatcommon.a $(GUI_LIBS)
276
EXTRA_DIST = makefile.msc \
276
EXTRA_DIST = makefile.msc \
277
	about.h ascii.h banlist.h chanlist.h editlist.h fe-gtk.h fkeys.h \
277
	about.h ascii.h banlist.h chanlist.h editlist.h fe-gtk.h fkeys.h \
(-)xchat-2.0.9/src/fe-gtk/fe-gtk.c.orig (+11 lines)
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));

Return to bug 8880