diff options
author | jim <jim@FreeBSD.org> | 2001-11-28 07:50:03 +0000 |
---|---|---|
committer | jim <jim@FreeBSD.org> | 2001-11-28 07:50:03 +0000 |
commit | 6b8f20bc6b39f6a877b002ef4a61e537a994a088 (patch) | |
tree | 07f6b3bf3b82d6f398e144b630620682249f0c52 /irc/xchat1/files | |
parent | d93656286db851cdd1ee7511b72d77c38d9b2271 (diff) | |
download | FreeBSD-ports-6b8f20bc6b39f6a877b002ef4a61e537a994a088.zip FreeBSD-ports-6b8f20bc6b39f6a877b002ef4a61e537a994a088.tar.gz |
Update to version 1.8.6. While I'm here, add a WITH_TRANSPARENCY knob
so that non-GNOME users can get transparent windows if so desired.
Diffstat (limited to 'irc/xchat1/files')
-rw-r--r-- | irc/xchat1/files/patch-autoresume | 17 | ||||
-rw-r--r-- | irc/xchat1/files/patch-bnc | 46 |
2 files changed, 0 insertions, 63 deletions
diff --git a/irc/xchat1/files/patch-autoresume b/irc/xchat1/files/patch-autoresume deleted file mode 100644 index fa01aad..0000000 --- a/irc/xchat1/files/patch-autoresume +++ /dev/null @@ -1,17 +0,0 @@ ---- src/common/dcc.c.orig Fri Oct 12 08:13:04 2001 -+++ src/common/dcc.c Sat Nov 24 16:47:39 2001 -@@ -1292,8 +1292,12 @@ - while (list) - { - d = list->data; -- if (d != dcc && strcmp (d->destfile, dcc->destfile) == 0) -- goto dontresume; -+ if (d->type == TYPE_RECV && d->dccstat != STAT_ABORTED && -+ d->dccstat != STAT_DONE && d->dccstat != STAT_FAILED) -+ { -+ if (d != dcc && strcmp (d->destfile, dcc->destfile) == 0) -+ goto dontresume; -+ } - list = list->next; - } - dcc_resume (dcc); diff --git a/irc/xchat1/files/patch-bnc b/irc/xchat1/files/patch-bnc deleted file mode 100644 index 17bff4c..0000000 --- a/irc/xchat1/files/patch-bnc +++ /dev/null @@ -1,46 +0,0 @@ ---- src/common/xchat.c.orig Sun Oct 14 07:46:36 2001 -+++ src/common/xchat.c Sat Nov 24 16:48:41 2001 -@@ -69,6 +69,7 @@ - GSList *urlhandler_list = 0; - static GSList *away_list = 0; - -+static int in_xchat_exit = FALSE; - int xchat_is_quitting = FALSE; - int auto_connect = TRUE; - -@@ -730,7 +731,7 @@ - free (killsess->current_modes); - free (killsess); - -- if (!sess_list && !xchat_is_quitting) -+ if (!sess_list && !in_xchat_exit) - xchat_exit (); /* sess_list is empty, quit! */ - - list = sess_list; -@@ -1051,6 +1052,7 @@ - xchat_exit (void) - { - xchat_is_quitting = TRUE; -+ in_xchat_exit = TRUE; - #ifdef USE_PERL - perl_end (); - #endif - ---- src/fe-gtk/maingui.c.orig Thu Oct 25 00:19:29 2001 -+++ src/fe-gtk/maingui.c Sat Nov 24 16:48:41 2001 -@@ -923,7 +923,6 @@ - static void - gui_main_window_kill (gpointer userdata) - { --#if 0 - GSList *list; - session *sess; - -@@ -941,7 +940,6 @@ - } - list = list->next; - } --#endif - - main_window = 0; - current_tab = 0; |