pkgsrc/chat/xchat-systray-integration/patches/patch-ad
minskim acb94c0b93 Do not define variables in headers; define them in .c files instead.
Otherwise, they cause link errors on Darwin.
2006-07-06 22:04:03 +00:00

36 lines
842 B
Text

$NetBSD: patch-ad,v 1.1 2006/07/06 22:04:03 minskim Exp $
--- src/away_system.c.orig 2004-04-30 05:38:10.000000000 -0700
+++ src/away_system.c
@@ -3,6 +3,31 @@
#include "away_system.h"
//AWAY SYSTEM
+gboolean go_change;
+gboolean go_identify;
+#ifdef _WIN32_
+ HICON pix_xchat_away;
+ HICON pix_xchat;
+#else
+ GdkPixbuf *pix_xchat_away;
+ GdkPixbuf *pix_xchat;
+#endif
+gboolean global_away;
+gboolean global_away_temp;
+char away_msg1[150];
+char away_msg2[150];
+char away_msg3[150];
+char away_nick[150];
+char away_pass[150];
+const char* awaynick;
+const char* amsg1;
+const char* amsg2;
+const char* amsg3;
+const char* awaypass;
+gboolean edit;
+const char* message;
+GtkWidget *checkbutton3;
+GtkWidget *away_text,*away_nick_box,*away_nick_pass_box;
//get the select away msg
void get_label(GtkWidget *button, void *data) {