aboutsummaryrefslogtreecommitdiff
path: root/comms
diff options
context:
space:
mode:
authorPatrick S. Gardella <patrick@FreeBSD.org>2004-02-04 16:16:51 +0000
committerPatrick S. Gardella <patrick@FreeBSD.org>2004-02-04 16:16:51 +0000
commitabbbf730a259f6f842154b0d6b65aa4c2ef20ffd (patch)
treeb1714c11bd4a008ebfabf3655a72bd085dabb657 /comms
parent0bdeb82558543108f71727bb2d92d98e01a64bd2 (diff)
downloadports-abbbf730a259f6f842154b0d6b65aa4c2ef20ffd.tar.gz
ports-abbbf730a259f6f842154b0d6b65aa4c2ef20ffd.zip
Notes
Diffstat (limited to 'comms')
-rw-r--r--comms/xlog/files/patch-ab13
-rw-r--r--comms/xlog/files/patch-ac20
-rw-r--r--comms/xlog/files/patch-ad11
3 files changed, 0 insertions, 44 deletions
diff --git a/comms/xlog/files/patch-ab b/comms/xlog/files/patch-ab
deleted file mode 100644
index fa51ce551bcb..000000000000
--- a/comms/xlog/files/patch-ab
+++ /dev/null
@@ -1,13 +0,0 @@
---- src/callbacks_qsoframe.c.orig Tue Nov 5 11:02:05 2002
-+++ src/callbacks_qsoframe.c Tue Nov 5 11:16:32 2002
-@@ -25,6 +25,10 @@
- #include <time.h>
- #include <math.h>
- #include <ctype.h>
-+#ifdef __FreeBSD__
-+#include <machine/param.h>
-+#include <sys/types.h>
-+#endif
- #include <sys/ipc.h>
- #include <sys/shm.h>
- #include <errno.h>
diff --git a/comms/xlog/files/patch-ac b/comms/xlog/files/patch-ac
deleted file mode 100644
index e85d597356db..000000000000
--- a/comms/xlog/files/patch-ac
+++ /dev/null
@@ -1,20 +0,0 @@
---- src/utils.c.orig Tue Nov 5 11:22:20 2002
-+++ src/utils.c Tue Nov 5 11:23:06 2002
-@@ -284,7 +284,7 @@
-
- str = g_new0(gchar, 100);
-
-- fr = atoll(arg);
-+ fr = strtoll(arg, (char **)NULL, 10);
-
- if (fr > 1325) /* no dot */
- {
-@@ -295,7 +295,7 @@
- str[strlen(str) - 6] = '\0';
- else if (strlen(str) > 3)
- str[strlen(str) - 3] = '\0';
-- fr = atoll(str);
-+ fr = strtoll(str, (char **)NULL, 10);
- }
-
- switch (fr)
diff --git a/comms/xlog/files/patch-ad b/comms/xlog/files/patch-ad
deleted file mode 100644
index 67a5ab7e85bc..000000000000
--- a/comms/xlog/files/patch-ad
+++ /dev/null
@@ -1,11 +0,0 @@
---- intl/dcigettext.c.orig Tue Nov 5 11:32:40 2002
-+++ intl/dcigettext.c Tue Nov 5 11:33:55 2002
-@@ -58,7 +58,7 @@
- #include <stdlib.h>
-
- #include <string.h>
--#if !HAVE_STRCHR && !defined _LIBC
-+#if !HAVE_STRCHR && !defined _LIBC && !defined __FreeBSD__
- # ifndef strchr
- # define strchr index
- # endif