summaryrefslogtreecommitdiffstats
path: root/irc/xchat/files
diff options
context:
space:
mode:
authorahze <ahze@df743ca5-7f9a-e211-a948-0013205c9059>2006-07-18 21:25:39 +0800
committerahze <ahze@df743ca5-7f9a-e211-a948-0013205c9059>2006-07-18 21:25:39 +0800
commite40e396b44527780bbacb7805eb57b52611d2c00 (patch)
tree27b9d2cb1a5c3be50214537f8034797a8aa03c0d /irc/xchat/files
parentcedfed76c068b27dfac664784e38303b83e8a0ec (diff)
downloadmarcuscom-ports-e40e396b44527780bbacb7805eb57b52611d2c00.tar
marcuscom-ports-e40e396b44527780bbacb7805eb57b52611d2c00.tar.gz
marcuscom-ports-e40e396b44527780bbacb7805eb57b52611d2c00.tar.bz2
marcuscom-ports-e40e396b44527780bbacb7805eb57b52611d2c00.tar.lz
marcuscom-ports-e40e396b44527780bbacb7805eb57b52611d2c00.tar.xz
marcuscom-ports-e40e396b44527780bbacb7805eb57b52611d2c00.tar.zst
marcuscom-ports-e40e396b44527780bbacb7805eb57b52611d2c00.zip
- Move to LOCALBASE
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@6627 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'irc/xchat/files')
-rw-r--r--irc/xchat/files/patch-configure17
-rw-r--r--irc/xchat/files/patch-fixtabcomp24
-rw-r--r--irc/xchat/files/patch-src_fe-gtk_fe-gtk.c14
3 files changed, 55 insertions, 0 deletions
diff --git a/irc/xchat/files/patch-configure b/irc/xchat/files/patch-configure
new file mode 100644
index 000000000..a48d5cbc8
--- /dev/null
+++ b/irc/xchat/files/patch-configure
@@ -0,0 +1,17 @@
+--- configure.orig Sun Apr 2 19:17:32 2006
++++ configure Sun Apr 2 19:18:07 2006
+@@ -24741,12 +24741,12 @@ cat >>conftest.$ac_ext <<_ACEOF
+ /* end confdefs.h. */
+ #include <libintl.h>
+ extern int _nl_msg_cat_cntr;
+-extern int *_nl_domain_bindings;
++extern int *libintl_nl_domain_bindings;
+ int
+ main ()
+ {
+ bindtextdomain ("", "");
+-return * gettext ("") + _nl_msg_cat_cntr + *_nl_domain_bindings
++return * gettext ("") + _nl_msg_cat_cntr + *libintl_nl_domain_bindings
+ ;
+ return 0;
+ }
diff --git a/irc/xchat/files/patch-fixtabcomp b/irc/xchat/files/patch-fixtabcomp
new file mode 100644
index 000000000..9498dd636
--- /dev/null
+++ b/irc/xchat/files/patch-fixtabcomp
@@ -0,0 +1,24 @@
+# Fixes two tab-nick-completion bugs:
+# 1. Crash when you type space-tab
+# 2. Critical glib warning when completion in a dialog-tab.
+--- src/fe-gtk/fkeys.c.orig Thu Aug 5 07:49:06 2004
++++ src/fe-gtk/fkeys.c Mon Aug 16 22:54:58 2004
+@@ -1427,7 +1427,7 @@
+ skip_len++;
+ }
+ else
+- cursor_pos = g_utf8_pointer_to_offset(text, g_utf8_offset_to_pointer(ch, 1));
++ return 2;
+ }
+
+ comp = skip_len;
+@@ -1608,7 +1608,8 @@
+ list = list->next;
+ }
+ PrintText (sess, buf);
+- g_completion_free(gcomp);
++ if (gcomp)
++ g_completion_free(gcomp);
+ return 2;
+ }
+ /* Only one matching entry */
diff --git a/irc/xchat/files/patch-src_fe-gtk_fe-gtk.c b/irc/xchat/files/patch-src_fe-gtk_fe-gtk.c
new file mode 100644
index 000000000..9f81ae7a1
--- /dev/null
+++ b/irc/xchat/files/patch-src_fe-gtk_fe-gtk.c
@@ -0,0 +1,14 @@
+--- src/fe-gtk/fe-gtk.c 2006/06/07 06:16:51 1.66
++++ src/fe-gtk/fe-gtk.c 2006/06/12 03:23:23 1.67
+@@ -225,7 +225,11 @@
+ const char cursor_color_rc[] =
+ "style \"xc-ib-st\""
+ "{"
++#ifdef USE_GTKSPELL
++ "GtkTextView::cursor-color=\"#%02x%02x%02x\""
++#else
+ "GtkEntry::cursor-color=\"#%02x%02x%02x\""
++#endif
+ "}"
+ "widget \"*.xchat-inputbox\" style : application \"xc-ib-st\"";
+