diff options
author | 2004-11-27 19:17:04 +0000 | |
---|---|---|
committer | 2004-11-27 19:17:04 +0000 | |
commit | ac9d5aa0ecbd9da7c72e2bd7daee8934b7dec678 (patch) | |
tree | bb1868eff0a1a1e336a919c4fc12340afe481a73 /net-irc/xchat/files | |
parent | Conflicts with calendar, bug #62677 (Manifest recommit) (diff) | |
download | gentoo-2-ac9d5aa0ecbd9da7c72e2bd7daee8934b7dec678.tar.gz gentoo-2-ac9d5aa0ecbd9da7c72e2bd7daee8934b7dec678.tar.bz2 gentoo-2-ac9d5aa0ecbd9da7c72e2bd7daee8934b7dec678.zip |
Added backported fix from upstream that fixes compilation of the text frontend. Thanks to Matteo Settenvini <msettenvini@tin.it> in bug #72534.
Diffstat (limited to 'net-irc/xchat/files')
-rw-r--r-- | net-irc/xchat/files/2.4.1-fe-text.patch | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/net-irc/xchat/files/2.4.1-fe-text.patch b/net-irc/xchat/files/2.4.1-fe-text.patch new file mode 100644 index 000000000000..9c45dbfe294b --- /dev/null +++ b/net-irc/xchat/files/2.4.1-fe-text.patch @@ -0,0 +1,22 @@ +Index: src/fe-text/fe-text.c +=================================================================== +RCS file: /cvsroot/xchat/xchat2/src/fe-text/fe-text.c,v +retrieving revision 1.19 +retrieving revision 1.20 +diff -u -b -B -r1.19 -r1.20 +--- src/fe-text/fe-text.c 8 Jul 2004 05:03:25 -0000 1.19 ++++ src/fe-text/fe-text.c 23 Nov 2004 02:58:34 -0000 1.20 +@@ -815,3 +815,13 @@ + void fe_confirm (const char *message, void (*yesproc)(void *), void (*noproc)(void *), void *ud) + { + } ++char *fe_get_inputbox_contents (struct session *sess) ++{ ++ return NULL; ++} ++void fe_set_inputbox_contents (struct session *sess, char *text) ++{ ++} ++void fe_set_inputbox_cursor (struct session *sess, int delta, int pos) ++{ ++} |