summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'net-irc/xchat/files/xchat-2.8.4-interix.patch')
-rw-r--r--net-irc/xchat/files/xchat-2.8.4-interix.patch18
1 files changed, 0 insertions, 18 deletions
diff --git a/net-irc/xchat/files/xchat-2.8.4-interix.patch b/net-irc/xchat/files/xchat-2.8.4-interix.patch
deleted file mode 100644
index ce4b76b1d52e..000000000000
--- a/net-irc/xchat/files/xchat-2.8.4-interix.patch
+++ /dev/null
@@ -1,18 +0,0 @@
-diff -ru xchat-2.8.4.orig/src/common/text.c xchat-2.8.4/src/common/text.c
---- xchat-2.8.4.orig/src/common/text.c 2008-03-12 14:45:26 +0100
-+++ xchat-2.8.4/src/common/text.c 2008-03-12 15:04:35 +0100
-@@ -271,10 +271,14 @@
- {
- if (buf[0] == 'T')
- {
-+#ifdef HAVE_STRTOULL
- if (sizeof (time_t) == 4)
- stamp = strtoul (buf + 2, NULL, 10);
- else
- stamp = strtoull (buf + 2, NULL, 10); /* just incase time_t is 64 bits */
-+#else
-+ stamp = strtoul (buf + 2, NULL, 10);
-+#endif
- text = strchr (buf + 3, ' ');
- if (text)
- {